MOD09CMG.061 Terra Surface Reflectance Daily L3 Global 0.05 Deg CMG

MODIS/061/MOD09CMG
Dataset Availability
2000-02-24T00:00:00Z–2024-06-05T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/061/MOD09CMG")
Tags
brightness-temperature ozone surface-reflectance terra

Description

The MOD09CMG Version 6.1 product provides an estimate of the surface spectral reflectance of Terra Moderate Resolution Imaging Spectroradiometer (MODIS) Bands 1 through 7, resampled to 5600 meter pixel resolution and corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. The MOD09CMG data product provides 25 layers including MODIS bands 1 through 7; Brightness Temperature data from thermal bands 20, 21, 31, and 32; along with Quality Assurance (QA) and observation bands. This product is based on a Climate Modeling Grid (CMG) for use in climate simulation models.

Documentation:

Bands

Resolution
500 meters

Bands

Name Units Min Max Wavelength Description
Coarse_Resolution_Surface_Reflectance_Band_1 Dimensionless -0.01 1.6 620-670nm

Surface reflectance for band 1

Coarse_Resolution_Surface_Reflectance_Band_2 Dimensionless -0.01 1.6 841-876nm

Surface reflectance for band 2

Coarse_Resolution_Surface_Reflectance_Band_3 Dimensionless -0.01 1.6 459-479nm

Surface reflectance for band 3

Coarse_Resolution_Surface_Reflectance_Band_4 Dimensionless -0.01 1.6 545-565nm

Surface reflectance for band 4

Coarse_Resolution_Surface_Reflectance_Band_5 Dimensionless -0.01 1.6 1230-1250nm

Surface reflectance for band 5

Coarse_Resolution_Surface_Reflectance_Band_6 Dimensionless -0.01 1.6 1628-1652nm

Surface reflectance for band 6

Coarse_Resolution_Surface_Reflectance_Band_7 Dimensionless -0.01 1.6 2105-2155nm

Surface reflectance for band 7

Coarse_Resolution_Solar_Zenith_Angle deg 0 180

Solar Zenith Angle

Coarse_Resolution_View_Zenith_Angle deg 0 180

View Zenith Angle

Coarse_Resolution_Relative_Azimuth_Angle deg -180 180

Relative Azimuth Angle

Coarse_Resolution_Ozone atm cm 0.0025 0.6375

Ozone Resolution

Coarse_Resolution_Brightness_Temperature_Band_20 K 0.01 400 3.360-3.840µm

Band 20 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_21 K 0.01 400 3.929-3.989µm

Band 21 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_31 K 0.01 400 10.780-11.280µm

Band 31 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_32 K 0.01 400 11.770-12.270µm

Band 32 Brightness Temperature

Coarse_Resolution_Granule_Time 1 2355

Granule time of day, as HHMM

Coarse_Resolution_Band_3_Path_Radiance Dimensionless -0.01 1.6

Band 3 Radiance

Coarse_Resolution_QA

Quality Assurance

Coarse_Resolution_Internal_CM

Internal Cloud Mask

Coarse_Resolution_State_QA

State Quality Assurance

Coarse_Resolution_Number_Mapping

Number Mapping Cloud/Snow

number_of_500m_pixels_averaged_b3 1 200

Number of 500m pixels used in average

number_of_500m_rej_detector 1 100

Number of 500m pixels rejected for use

number_of_250m_pixels_averaged_b1-2 1 640

Number of 250m pixels used in b1-2 average

n_pixels_averaged 1 40

Number of pixels used in average

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/061/MOD09CMG')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));
var trueColor =
    dataset.select([
      'Coarse_Resolution_Surface_Reflectance_Band_1',
      'Coarse_Resolution_Surface_Reflectance_Band_2',
      'Coarse_Resolution_Surface_Reflectance_Band_3'
      ]);
var trueColorVis = {
  min: -0.4,
  max: 1.0,
};
Map.setCenter(6.746, 46.529, 6);
Map.addLayer(trueColor, trueColorVis, 'True Color');
Open in Code Editor