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

MODIS/061/MOD09CMG
Dataset Availability
2000-02-24T00:00:00Z–2025-08-07T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/061/MOD09CMG")
Cadence
1 Day
Tags
brightness-temperature ozone satellite-imagery 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

Pixel Size
5600 meters

Bands

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

Surface reflectance for band 1

Coarse_Resolution_Surface_Reflectance_Band_2 Dimensionless -0.01 1.6 meters 841-876nm

Surface reflectance for band 2

Coarse_Resolution_Surface_Reflectance_Band_3 Dimensionless -0.01 1.6 meters 459-479nm

Surface reflectance for band 3

Coarse_Resolution_Surface_Reflectance_Band_4 Dimensionless -0.01 1.6 meters 545-565nm

Surface reflectance for band 4

Coarse_Resolution_Surface_Reflectance_Band_5 Dimensionless -0.01 1.6 meters 1230-1250nm

Surface reflectance for band 5

Coarse_Resolution_Surface_Reflectance_Band_6 Dimensionless -0.01 1.6 meters 1628-1652nm

Surface reflectance for band 6

Coarse_Resolution_Surface_Reflectance_Band_7 Dimensionless -0.01 1.6 meters 2105-2155nm

Surface reflectance for band 7

Coarse_Resolution_Solar_Zenith_Angle deg 0 180 meters None

Solar Zenith Angle

Coarse_Resolution_View_Zenith_Angle deg 0 180 meters None

View Zenith Angle

Coarse_Resolution_Relative_Azimuth_Angle deg -180 180 meters None

Relative Azimuth Angle

Coarse_Resolution_Ozone atm cm 0.0025 0.6375 meters None

Ozone Resolution

Coarse_Resolution_Brightness_Temperature_Band_20 K 0.01 400 meters 3.360-3.840µm

Band 20 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_21 K 0.01 400 meters 3.929-3.989µm

Band 21 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_31 K 0.01 400 meters 10.780-11.280µm

Band 31 Brightness Temperature

Coarse_Resolution_Brightness_Temperature_Band_32 K 0.01 400 meters 11.770-12.270µm

Band 32 Brightness Temperature

Coarse_Resolution_Granule_Time 1 2355 meters None

Granule time of day, as HHMM

Coarse_Resolution_Band_3_Path_Radiance Dimensionless -0.01 1.6 meters None

Band 3 Radiance

Coarse_Resolution_QA meters None

Quality Assurance

Coarse_Resolution_Internal_CM meters None

Internal Cloud Mask

Coarse_Resolution_State_QA meters None

State Quality Assurance

Coarse_Resolution_Number_Mapping meters None

Number Mapping Cloud/Snow

number_of_500m_pixels_averaged_b3 1 200 meters None

Number of 500m pixels used in average

number_of_500m_rej_detector 1 100 meters None

Number of 500m pixels rejected for use

number_of_250m_pixels_averaged_b1-2 1 640 meters None

Number of 250m pixels used in b1-2 average

n_pixels_averaged 1 40 meters None

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