Mission Overview

Rocky Worlds DDT ("ROCKY-WORLDS")

 

Primary Investigator: Nestor Espinoza, Hannah Diamond-Lowe

HLSP AuthorsTaylor Bell, Leonardo A. Dos Santos

Released: 2025-09-17

Updated: 2026-06-26

Primary Reference(s): rockyworlds.stsci.edu

DOI: 10.17909/qsyr-ny68

Read Me

Source Data:

 

Slideshow Container

Now showing slide 1 of 3

GJ 3929 b JWST Raw Measurements

Figure 1. Raw flux and PSF-metric measurements from a Rocky Worlds DDT eclipse observation of GJ 3929b taken with JWST/MIRI’s F1500W filter.

GJ 3929 b JWST Light Curve Fit

Figure 2. An example fit to a JWST/MIRI F1500W eclipse observation of GJ 3929b collected by the Rocky Worlds DDT Program.

GJ 3929 HST Spectrum

Figure 3. Co-added Lyman-alpha spectrum of GJ 3929 as observed in Visit 8 (black). The blue curves represent a family of random models of the intrinsic Lyman-alpha emission of GJ 3929 that fit the data. The red curves represent the same models, but with models of the interstellar medium absorption included.

 

Overview

The Rocky Worlds Director's Discretionary Time (DDT) Program is a joint James Webb Space Telescope (JWST) and Hubble Space Telescope (HST) Program. It implements the top recommendations from the Working Group on Strategic Exoplanet Initiatives with HST and JWST, which compiled the views of the community in regards to many topics including specific concepts for a 500-hour DDT JWST exoplanet program (Redfield et al. 2024). The program's main objectives are to search for evidence for atmospheres on rocky exoplanets orbiting M-dwarfs via secondary eclipse measurements at 15 um using the MIRI instrument, as well as to characterize the stellar UV properties with HST. 

logos_footer_02.png

Update History:

  • 2025-09-17: First release of Rocky Worlds HLSP Products! JWST eclipse 1 + HST visit 8 spectra for GJ 3929b.
  • 2025-10-22: GJ 3929 b JWST eclipse 2 data now available.
  • 2026-01-14: HST light curve and reprocessed spectra now available for GJ 3929.
  • 2026-03-20: GJ 3929 b JWST eclipse 3 data now available.
  • 2026-04-02: GJ 3929 b JWST eclipse 4 data now available.
  • 2026-04-22: Produced light curves for all TIME-TAG observations of GJ 3929 and produced an updated spectrum of star that co-adds all HST observations.
  • 2026-06-08: New version (v1.0.1) of JWST files now available for GJ 3929 eclipses 1-4. These fix estimated stellar absolute fluxes by about 10%, and add extra scaling factors to errors in light curves. No changes made to eclipse depth estimations. See NOTES attributes/headers in those files for details.
  • 2026-06-25: GJ 3929 b JWST checkpoint 2 files are now available. These files re-use the reductions from the individual eclipses and contain the results from a simultaneous fit to all four eclipses.
  • 2026-06-26: TOI-771 b JWST eclipse 1 data now available.

Data Products

JWST Data Products

The JWST data products follow the naming convention:

hlsp_rocky-worlds_jwst_miri_<target>-<eclipse>_<filter>_v1.0.1_<product>.<ext>

where:

  • <target> is the name of the target, for example, "gj3929b"
  • <eclipse> is the identifier for the observation, for example, "ecl001" for individual eclipses or "checkpoint02" for combined files
  • <filter> is the name of the filter used for the observation
  • <product> is the type of data product, either "eclipse-cat" or "lc"
  • <ext> is the file extension, either "fits" or "h5"

Data file types:

_eclipse-cat.fits Eclipse catalog fits file. Science-ready, high-level data products for individual observations that can be used to investigate planetary and stellar properties.
_eclipse-cat.h5 Eclipse catalog netCDF4/HDF5 file. Science-ready, high-level data products for individual observations that can be used to investigate planetary and stellar properties. Content is identical to the _eclipse-cat.fits files, but in netCDF4/HDF5 format.
_lc.h5 Light curve netCDF4/HDF5 file. Intermediate-level data products that can be used to reproduce and/or improve upon the analyses that led to the high-level data products.

 

A full description of the columns and units in each file is available in the Read Me file.

HST Data Products

The HST data products follow the naming convention:

hlsp_rocky-worlds_hst_stis_<target>_<filter>_v1.0_<product>.fits

where:

  • <target> is the name of the target, for example, "gj3929b"
  • <filter> is the name of the filter used for the observation
  • <product> is the type of data product, either "spec" (spectrum) or "lc" (light curve)

Data file types:

_spec.fits

Co-added UV spectrum of the host star. Multiple intermediate-level

files will be produced for each grating. A high-level product that stitches all the

different modes is created when all observations are obtained. It includes one

science extension with the observed data and another extension with a model for

the intrinsic stellar Lyman-𝛼 emission line. This product is updated every time a

new relevant observation is obtained.

_lc.fits

 

Light curve FITS file. Intermediate- to high-level data product that can be

used to reproduce and/or improve upon analyses of flares and stellar variability.

It includes one science extension with the observed data and another extension

that includes a flare model fit to the data if one is detected. One HLSP is created

per HST visit

_x1d.fits

The _x1d files are intermediate-level data products. They correspond to the _x1d fits files (extracted 1-d spectra) that automatically come out of the CALSTIS pipeline, with the difference that its background spectra and source spectra are extracted at custom locations. These custom locations can be inferred from the metadata available in the headers. The customization is sometimes necessary, since CALSTIS may not be able to automatically infer the trace position of faint sources in the FUV, such as M dwarfs.

 

A full description of the columns and units in each file is available in the Read Me file.

Data Access

MAST Portal and Astroquery

The ROCKY-WORLDS data products are available in the MAST Search Portal (web-based, cross-mission search interface) and Astroquery (Python package to search for and download files from Python scripts you write).

  • In the MAST Search Portal, set the Provenance Name filter to "ROCKY-WORLDS" in an Advanced Search to find these data. The user guide for how to search and download products using the MAST Portal is available here.
  • For Astroquery, the following example code demonstrates how to search for and download these products. This code assumes that you want to download all products from this HLSP, so you may want to consider narrowing down your search for large HLSPs (> 10 GB) or those with many individual files (> 10k). You can find more astroquery.mast tutorials here.
from astroquery.mast import Observations
# Search for all ROCKY-WORLDS products
all_obs = Observations.query_criteria(provenance_name="rocky-worlds")
data_products = Observations.get_product_list(all_obs)
# Print the number of data products that would be downloaded
print(len(data_products))
# Download data
Observations.download_products(data_products)
  • A web-based interface for cross-mission searches of data at MAST or the Virtual Observatory.
  • Search for and download data products for this HLSP programmatically in Python.

Direct Download

The data products for this HLSP are also available for direct download using the links in the table below. For the most up-to-date status regarding each observation and future targets, please refer to the Rocky Worlds DDT Website for the full Observing Schedule

GJ 3929 b
Artist's Image JWST Products HST Products

GJ 3929 b

exoplanet_ltt1445ab.png

JWST Program ID:  9235

HST Program ID: 1790

TOI-771 b
Artist's Image JWST Products HST Products

TOI-771 b

scroll_exoplanet_07.png

JWST Program ID:  12656

HST Program ID: 18249

 
  • Coming Soon!

Code Examples

The authors of this HLSP have provided a few code examples for working with the data in Python, shown below. For more code on how to work with and analyze data from Rocky Worlds DDT, see the rocky-worlds-utils Github repository.

code-tutorials

  • This example shows how to open the JWST eclipse catalog file in Python and how to read metadata from netCDF4/HDF5 files.

    import xarray as xr
    
    # Open Eclipse Catalog
    filename = "hlsp_rocky-worlds_jwst_miri_gj3929b-ecl001_f1500w_v1.0.1_eclipse-cat.h5"
    ds = xr.load_dataset(filename)
    
    # Prints out summary information about the dataset
    print(ds)
    
    # An example of how to get access to the metadata stored in the file
    print(ds.attrs['HLSPTARG'])

Citations

Please remember to cite the appropriate paper(s) below and the DOI 10.17909/qsyr-ny68 if you use these data in a published work. 

Note: These HLSP data products are licensed for use under CC BY 4.0.

References