When plants green up and die back, North America (30 m)
What it measures. Yearly maps showing when plants green up, reach full growth, fade, and go dormant across North America at a detailed 30-meter scale, with greenness measures for up to two growth cycles per year.
How it's made. Derived by combining Landsat 8 and Sentinel-2 satellite imagery (the Harmonized Landsat Sentinel-2 dataset), with cloudy gaps filled from neighboring years.
How & where you'd use it. Useful for ecosystem and crop modeling, tracking how vegetation responds to climate and extreme events, distinguishing crop types, and mapping land-cover change.
What's measured
Coverage & cadence
- Time span2016-01-01 → 2019-12-31
- Measured byLANDSAT-8 (OLI) · Sentinel-2A (Sentinel-2 MSI) · Sentinel-2B (Sentinel-2 MSI)
- Processing levelLevel 3
- Spatial extent-180, 0, 0, 90
- FormatsnetCDF-4
- StatusCOMPLETE
What you can do with it
- Map vegetation, forests and biomass
- Monitor ecosystem productivity and carbon
- Support habitat and biodiversity studies
Official description
The Multi-Source Land Surface Phenology (LSP) Yearly North America 30 meter (m) Version 1.1 product (MSLSP) provides a Land Surface Phenology product for North America derived from Harmonized Landsat Sentinel-2 (HLS) data. Data from the combined Landsat 8 Operational Land Imager (OLI) and Sentinel-2A and 2B Multispectral Instrument (MSI) provides the user community with dates of phenophase transitions, including the timing of greenup, maturity, senescence, and dormancy at 30m spatial resolution. These data sets are useful for a wide range of applications, including ecosystem and agro-ecosystem modeling, monitoring the response of terrestrial ecosystems to climate variability and extreme events, crop-type discrimination, and land cover, land use, and land cover change mapping. Provided in the MSLSP product are layers for percent greenness, onset greenness dates, Enhanced Vegetative Index (EVI2) amplitude, and maximum EVI2, and data quality information for up to two phenological cycles per year. For areas where the data values are missing due to cloud cover or other reasons, the data gaps are filled with good quality values from the year directly preceding or following the product year. A low resolution browse image representing maximum EVI is also available for each MSLSP30NA granule. Known Issues * Data are sparse in 2016 and early 2017, as Sentinel-2B was not yet launched, and Sentinel-2A was not fully operational, leading to poorer quality retrievals of phenology in 2016 and 2017. However, poor quality pixels can be masked with Quality Assurance (QA) flags. * Disturbance has not been explicitly accounted for or mapped, which can lead to premature detections of senescence and dormancy when sharp spectral changes occur. * Pixels with more than two growth cycles per year (e.g., alfalfa fields) may not be accurately characterized, especially if they occur in rapid succession.
Get the data
import earthaccess
earthaccess.login(strategy="netrc") # free Earthdata Login
results = earthaccess.search_data(
short_name="MSLSP30NA",
version="011",
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.