AI-generated Key Takeaways
-
MOD09Q1 provides surface spectral reflectance for bands 1 and 2 at 250m resolution, corrected for atmospheric conditions.
-
This product includes a quality layer and selects the best pixel from an 8-day composite based on observation coverage, view angle, and cloud presence.
-
Data is available from February 18, 2000, to November 24, 2024, and is provided by NASA LP DAAC at the USGS EROS Center.
-
Reflectance values are provided for bands 1 (620-670nm) and 2 (841-876nm) along with quality assessment flags for data reliability.
-
The data is freely available for use, sale, and redistribution with proper citation to the LP DAAC.

- Dataset Availability
- 2000-02-18T00:00:00Z–2025-09-22T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MOD09Q1 product provides an estimate of the surface spectral reflectance of bands 1 and 2 at 250m resolution and corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Along with the two reflectance bands, a quality layer is also included. For each pixel, a value is selected from all the acquisitions within the 8-day composite on the basis of high observation coverage, low view angle, the absence of clouds or cloud shadow, and aerosol loading.
Documentation:
Bands
Pixel Size
250 meters
Bands
Name | Min | Max | Scale | Pixel Size | Wavelength | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sur_refl_b01 |
-100 | 16000 | 0.0001 | meters | 620-670nm | Surface reflectance band 1 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b02 |
-100 | 16000 | 0.0001 | meters | 841-876nm | Surface reflectance for band 2 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
State |
meters | None | Surface reflectance 250m state flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QA |
meters | None | Surface reflectance 250m band quality control flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terms of Use
Terms of Use
MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.
Citations
Please visit LP DAAC 'Citing Our Data' page for information on citing LP DAAC datasets.
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('MODIS/061/MOD09Q1') .filter(ee.Filter.date('2018-01-01', '2018-05-01')); var falseColorVis = { min: -100.0, max: 8000.0, bands: ['sur_refl_b02', 'sur_refl_b02', 'sur_refl_b01'], }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(dataset, falseColorVis, 'False Color');