Fine-detail surface weather conditions (ECOSTRESS, 70 m)
What it measures. Provides snapshots of near-surface air temperature and relative humidity at very fine 70-meter detail, so you can see how conditions vary across a small landscape.
How it's made. Derived from ECOSTRESS thermal measurements aboard the International Space Station, sharpened from coarse weather-model data using surface temperature, vegetation greenness, and reflectivity.
How & where you'd use it. Supports studying plant water stress, local microclimates, and how heat and humidity differ field-to-field across farms, forests, and cities.
What's measured
Coverage & cadence
- Time span2018-07-10 → ongoing
- Measured byISS (ECOSTRESS)
- Processing levelLevel 3
- Spatial extent-180, -54, 180, 54
- FormatsCOG
- StatusACTIVE
What you can do with it
- Map air pollutants — NO₂, aerosols, ozone
- Track greenhouse gases and Earth's energy budget
- Feed weather and air-quality analysis
Official description
The ECOsystem Spaceborne Thermal Radiometer Experiment on Space Station (ECOSTRESS) mission measures the temperature of plants to better understand how much water plants need and how they respond to stress. ECOSTRESS is attached to the International Space Station (ISS) and collects data globally between 52° N and 52° S latitudes. The ECOSTRESS Tiled Downscaled Meteorology Instantaneous L3 Global 70 m (ECO_L3T_MET) Version 2 data product provides instantaneous near-surface air temperature (Ta) and relative humidity (RH) estimates downscaled using linear regression. The linear regression uses up-sampled surface temperature (ST), normalized difference vegetation index (NDVI), and albedo as predictor variables and Ta or RH from Goddard Earth Observing System Version 5 (GEOS-5) Forward Processing (FP) as response variables for their relative outputs. Once the regression coefficients have been determined, they are applied to the 70 meter (m) ST, NDVI, and albedo as a first pass, which is then bias corrected using a GEOS-5 FP image. The downscaled meteorology estimates are recorded into the ECO_L3T_MET data product and tiled using a modified version of the Military Grid Reference System ([MGRS](https://hls.gsfc.nasa.gov/products-description/tiling-system/)) which divides Universal Transverse Mercator (UTM) zones into square tiles that are 109.8 km by 109.8 km with a 70 m spatial resolution. The ECO_L3T_MET Version 2 data product is provided in Cloud Optimized GeoTIFF (COG) format with each data layer distributed as a separate COG. This product contains four layers including Ta, RH, cloud mask, and water mask. Known Issues * Data acquisition gap: ECOSTRESS was launched on June 29, 2018, and moved to autonomous science operations on August 20, 2018, following a successful in-orbit checkout period. On September 29, 2018, ECOSTRESS experienced an anomaly with its primary mass storage unit (MSU). ECOSTRESS has a primary and secondary MSU (A and B). On December 5, 2018, the instrument was switched to the secondary MSU and science operations resumed. On March 14, 2019, the secondary MSU experienced a similar anomaly, temporarily halting science acquisitions. On May 15, 2019, a new data acquisition approach was implemented, and science acquisitions resumed. To optimize the new acquisition approach TIR bands 2, 4, and 5 are being downloaded. The data products are as previously, except the bands not downloaded contain fill values (L1 radiance and L2 emissivity). This approach was implemented from May 15, 2019, through April 28, 2023. * Data acquisition gap: From February 8 to February 16, 2020, an ECOSTRESS instrument issue resulted in a data anomaly that created striping in band 4 (10.5 micron). These data products have been reprocessed and are available for download. No ECOSTRESS data were acquired on February 17, 2020, due to the instrument being in SAFEHOLD. Data acquired following the anomaly have not been affected. * Data acquisition: ECOSTRESS has now successfully returned to 5-band mode after being in 3-band mode since 2019. This feature was successfully enabled following a Data Processing Unit firmware update (version 4.1) to the payload on April 28, 2023. To better balance contiguous science data scene variables, 3-band collection is currently being interleaved with 5-band acquisitions over the orbital day/night periods. * Solar Array Obstruction: Some ECOSTRESS scenes may be affected by solar array obstructions from the International Space Station (ISS), potentially impacting data quality of obstructed pixels. The 'FieldOfViewObstruction' metadata field is included in all Version 2 products to indicate possible obstructions: * Before October 24, 2024 (orbits prior to 35724): The field is present but was not populated and does not reliably identify affected scenes. * On or after October 24, 2024 (starting with orbit 35724): The field is populated and generally accurate, except for late December 2024, when a temporary processing error may have caused false positives. * A [list of scenes](https://lpdaac.usgs.gov/documents/2249/obst_all_sort.txt) confirmed to be affected by obstructions is available and is recommended for verifying historical data (before October 24, 2024) and scenes from late December 2024. * The ISS native pointing information is coarse relative to ECOSTRESS pixels, so ECOSTRESS geolocation is improved through image matching with a basemap. Metadata in the L1B_GEO file shows the success of this geolocation improvement, using categorizations "best", "good", "suspect", and "poor". We recommend that users use only "best" and "good" scenes for evaluations where geolocation is important (e.g., comparison to field sites). For some scenes, this metadata is not reflected in the higher-level products (e.g., land surface temperature, evapotranspiration, etc.). While this metadata is always available in the geolocation product, to save users additional download, we have produced a [summary text file](https://lpdaac.usgs.gov/documents/2253/qa_20250423-present.txt) that includes the geolocation quality flags for all scenes from launch to present. At a later date, all higher-level products will reflect the geolocation quality flag correctly (the field name is GeolocationAccuracyQA). * During the time period of May 15th, 2025, through July 1st, 2025, ECOSTRESS data was noisier than expected. Cycling the payload resolved the issue, but researchers should use all levels of ECOSTRESS data acquired during this time period with caution. * Coarse Resolution Artifacts: Users may sometimes observe coarse resolution (~500m - 1km) artifacts in the L3 and L4 gridded and tiled products. These artifacts are caused by corresponding artifacts within the ECOSTRESS Tiled Ancillary NDVI and Albedo L2 Global 70 m ([ECO_L2T_STARS](http://doi.org/10.5067/ECOSTRESS/ECO_L2T_STARS.002)) Version 2 data product. The ECO_L2T_STARS product is produced through a data fusion of Suomi NPP VIIRS (~500 m - 1 km resolution) and Harmonized Landsat Sentinel-2 (HLS, 30 m) products. When there is significant temporal lag between HLS acquisitions, the VIIRS data dominates, which can produce coarse resolution artifacts in the ECO_L2T_STARS product. This typically corresponds to relatively large uncertainty values.
Get the data
import earthaccess
earthaccess.login(strategy="netrc") # free Earthdata Login
results = earthaccess.search_data(
short_name="ECO_L3T_MET",
version="002",
bounding_box=(-122.5, 37.2, -121.8, 37.9), # your area (W,S,E,N)
temporal=("2024-01-01", "2024-12-31"), # your dates
)
files = earthaccess.open(results) # stream straight from LPCLOUD Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package. Official links
- Earthdata Search allows users to search, discover, visualize, refine, and access NASA Earth Observation data. GET DATA
- The technical information in the User's Guide enables users to interpret and use the data products. VIEW RELATED INFORMATION
- The ATBD provides physical theory and mathematical procedures for the calculations used to produce the data products. VIEW RELATED INFORMATION
- The Application for Extracting and Exploring Analysis Ready Samples (AppEEARS) offers a simple and efficient way to perform data access and transformation processes. GET DATA
- The ECOSTRESS Data Resources GitHub repository provides guides, short how-tos, and tutorials to help users access and work with ECOSTRESS data. VIEW RELATED INFORMATION
- List of scenes confirmed to affected by obstructions. VIEW RELATED INFORMATION
- Summary text file that includes the geolocation quality flags for all scenes from launch to present. VIEW RELATED INFORMATION