2025/09/16 by Arthur D. Adams, Yifan Zhou, Adams, Arthur D. +29
Physics and Astronomy · #Astronomy and Astrophysical Research #Cosmology and Gravitation Theories #Earth and Planetary Astrophysics (astro-ph.EP) #FOS: Physical sciences #Solar and Stellar Astrophysics (astro-ph.SR) #Stellar, planetary, and galactic studies
paper · pdf · doi:10.48550/arxiv.2509.13544
openalex publication_date 2025/09/16 · openalex created_date 2025/10/10 · openalex updated_date 2026/07/28
The reduced spectral time series used for the core analysis of the publication "Characterizing the Time Variability of 2M1207 A+b with JWST NIRSpec/PRISM" (arXiv: 2509.13544). The data format is a netcdf file containing an xarray datatree.Here is an example script in Python to open the file and obtain each object's dataset: from pathlib import Path import xarray as xr if xr._version__ < "2024.10.0": raise Exception("This example requires xarray >= 2024.10.0 for datatree support.") currentdirectory: Path = Path(_file__).parent datatreefilepath: Path = currentdirectory / "2M1207spectradatatree.nc" spectraldatafor2M1207: xr.DataTree = xr.opendatatree(datatreefilepath) primarydataset: xr.Dataset = spectraldatafor2M1207["science"]["2M1207A"].todataset() secondarydataset: xr.Dataset = spectraldatafor2M1207["science"]["2M1207b"].todataset() backgroundregion1dataset: xr.Dataset = spectraldatafor2M1207["background"]["backgroundregion1"].todataset()