
- Dataset Availability
- 2002-07-04T00:00:00Z–2023-09-14T00:00:00
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Earth Engine Snippet
-
ee.ImageCollection("MODIS/061/MYD09A1")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
Description
The MYD09A1 V6.1 product provides an estimate of the surface spectral reflectance of Aqua 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
Resolution
500 meters
Bands
Name | Units | Min | Max | Scale | Wavelength | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sur_refl_b01 |
-100 | 16000 | 0.0001 | 620-670nm | Surface reflectance for band 1 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b02 |
-100 | 16000 | 0.0001 | 841-876nm | Surface reflectance for band 2 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b03 |
-100 | 16000 | 0.0001 | 459-479nm | Surface reflectance for band 3 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b04 |
-100 | 16000 | 0.0001 | 545-565nm | Surface reflectance for band 4 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b05 |
-100 | 16000 | 0.0001 | 1230-1250nm | Surface reflectance for band 5 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b06 |
-100 | 16000 | 0.0001 | 1628-1652nm | Surface reflectance for band 6 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b07 |
-100 | 16000 | 0.0001 | 2105-2155nm | Surface reflectance for band 7 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QA |
Surface reflectance 500m band quality control flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SolarZenith |
deg | 0 | 18000 | 0.01 | MODIS Solar zenith angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ViewZenith |
deg | 0 | 18000 | 0.01 | MODIS view zenith angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RelativeAzimuth |
deg | -18000 | 18000 | 0.01 | MODIS relative azimuth angle |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StateQA |
Surface reflectance 500m state flags |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DayOfYear |
1 | 366 | 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/061/MYD09A1') .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, 2); Map.addLayer(trueColor, trueColorVis, 'True Color');