AI-generated Key Takeaways
-
The MYDOCGA V6 product provides 1 kilometer reflectance data from Aqua MODIS bands 8-16, primarily used for ocean products but delivered as land tiles.
-
This dataset is available daily from July 4, 2002, to February 25, 2023, and is provided by NASA LP DAAC at the USGS EROS Center.
-
The dataset includes several bands measuring surface reflectance at various wavelengths, along with quality control and observation count information.
-
MODIS data and products from LP DAAC have no restrictions on subsequent use, sale, or redistribution.
- Dataset Availability
- 2002-07-04T00:00:00Z–2023-02-25T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 1 Day
- Tags
Description
The MYDOCGA V6 ocean reflectance product consists of 1 kilometer reflectance data from Aqua MODIS bands 8-16. The product is referred to as ocean reflectance, because bands 8-16 are used primarily to produce ocean products, but this is not an ocean product as the tiles produced are land tiles.
Documentation:
Bands
Pixel Size
1000 meters
Bands
| Name | Min | Max | Scale | Pixel Size | Wavelength | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
num_observations |
0 | 127 | meters | None | Number of observations per pixel |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b08 |
-100 | 16000 | 0.0001 | meters | 405-420nm | MODIS band 8 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b09 |
-100 | 16000 | 0.0001 | meters | 438-448nm | MODIS band 9 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b10 |
-100 | 16000 | 0.0001 | meters | 483-493nm | MODIS band 10 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b11 |
-100 | 16000 | 0.0001 | meters | 526-536nm | MODIS band 11 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b12 |
-100 | 16000 | 0.0001 | meters | 546-556nm | MODIS band 12 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b13 |
-100 | 16000 | 0.0001 | meters | 662-672nm | MODIS band 13 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b14 |
-100 | 16000 | 0.0001 | meters | 673-683nm | MODIS band 14 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b15 |
-100 | 16000 | 0.0001 | meters | 743-753nm | MODIS band 15 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sur_refl_b16 |
-100 | 16000 | 0.0001 | meters | 862-877nm | MODIS band 16 surface reflectance |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QC_b8_15_1km |
meters | None | Band quality for MODIS bands 8-15 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QC_b16_15_1km |
meters | None | Band quality for MODIS band 16 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
orbit_pnt |
0 | 15 | meters | None | Pointer to the orbit of each observation |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
granule_pnt |
0 | 254 | meters | None | Pointer to the granule of each observation |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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/MYDOCGA') .filter(ee.Filter.date('2018-01-01', '2018-05-01')); var falseColor = dataset.select(['sur_refl_b11', 'sur_refl_b10', 'sur_refl_b09']); var falseColorVis = { min: 0.0, max: 2000.0, }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(falseColor, falseColorVis, 'False Color');