MYDOCGA.006 Aqua Ocean Reflectance Daily Global 1km

MODIS/006/MYDOCGA
Dataset Availability
2002-07-04T00:00:00Z–2023-02-25T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/006/MYDOCGA")
Tags
aqua daily global modis nasa ocean reflectance sr usgs
mydocga

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

Resolution
1000 meters

Bands

Name Min Max Scale Wavelength Description
num_observations 0 127

Number of observations per pixel

sur_refl_b08 -100 16000 0.0001 405-420nm

MODIS band 8 surface reflectance

sur_refl_b09 -100 16000 0.0001 438-448nm

MODIS band 9 surface reflectance

sur_refl_b10 -100 16000 0.0001 483-493nm

MODIS band 10 surface reflectance

sur_refl_b11 -100 16000 0.0001 526-536nm

MODIS band 11 surface reflectance

sur_refl_b12 -100 16000 0.0001 546-556nm

MODIS band 12 surface reflectance

sur_refl_b13 -100 16000 0.0001 662-672nm

MODIS band 13 surface reflectance

sur_refl_b14 -100 16000 0.0001 673-683nm

MODIS band 14 surface reflectance

sur_refl_b15 -100 16000 0.0001 743-753nm

MODIS band 15 surface reflectance

sur_refl_b16 -100 16000 0.0001 862-877nm

MODIS band 16 surface reflectance

QC_b8_15_1km

Band quality for MODIS bands 8-15

QC_b16_15_1km

Band quality for MODIS band 16

orbit_pnt 0 15

Pointer to the orbit of each observation

granule_pnt 0 254

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

Citations:

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');
Open in Code Editor