AI-generated Key Takeaways
-
This dataset, MOD09A1 V6, is superseded by MODIS/061/MOD09A1.
-
It provides surface spectral reflectance data from Terra MODIS bands 1-7 at 500m resolution, corrected for atmospheric conditions.
-
The dataset includes seven reflectance bands, a quality layer, and four observation bands.
-
Data is available from February 18, 2000, to February 10, 2023, with an 8-day cadence.
-
Pixel values are selected based on high observation coverage, low view angle, absence of clouds, and aerosol loading.
- Dataset Availability
- 2000-02-18T00:00:00Z–2023-02-10T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MOD09A1 V6 product provides an estimate of the surface spectral reflectance of Terra MODIS bands 1-7 at 500m resolution and corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Along with the seven reflectance bands is a quality layer and four observation bands. 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
500 meters
Bands
| Name | Units | Min | Max | Scale | Pixel Size | Wavelength | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sur_refl_b01 |
-100 | 16000 | 0.0001 | meters | 620-670nm | Surface reflectance for band 1 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b02 |
-100 | 16000 | 0.0001 | meters | 841-876nm | Surface reflectance for band 2 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b03 |
-100 | 16000 | 0.0001 | meters | 459-479nm | Surface reflectance for band 3 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b04 |
-100 | 16000 | 0.0001 | meters | 545-565nm | Surface reflectance for band 4 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b05 |
-100 | 16000 | 0.0001 | meters | 1230-1250nm | Surface reflectance for band 5 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b06 |
-100 | 16000 | 0.0001 | meters | 1628-1652nm | Surface reflectance for band 6 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b07 |
-100 | 16000 | 0.0001 | meters | 2105-2155nm | Surface reflectance for band 7 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QA |
meters | None | Surface reflectance 500m band quality control flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SolarZenith |
deg | 0 | 18000 | 0.01 | meters | None | MODIS Solar zenith angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ViewZenith |
deg | 0 | 18000 | 0.01 | meters | None | MODIS view zenith angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RelativeAzimuth |
deg | -18000 | 18000 | 0.01 | meters | None | MODIS relative azimuth angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StateQA |
meters | None | Surface reflectance 500m state flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DayOfYear |
1 | 366 | meters | None | Julian day of the year for the pixel |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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/006/MOD09A1') .filter(ee.Filter.date('2018-01-01', '2018-05-01')); var trueColor = dataset.select(['sur_refl_b01', 'sur_refl_b04', 'sur_refl_b03']); var trueColorVis = { min: -100.0, max: 3000.0, }; Map.setCenter(6.746, 46.529, 6); Map.addLayer(trueColor, trueColorVis, 'True Color');