MOD09Q1.061 Terra Surface Reflectance 8-Day Global 250m

MODIS/061/MOD09Q1
Dataset Availability
2000-02-18T00:00:00Z–2024-03-13T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("MODIS/061/MOD09Q1")
Tags
8-day global mod09q1 modis nasa sr surface-reflectance terra usgs

Description

The MOD09Q1 product provides an estimate of the surface spectral reflectance of bands 1 and 2 at 250m resolution and corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Along with the two reflectance bands, a quality layer is also included. 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
250 meters

Bands

Name Min Max Scale Wavelength Description
sur_refl_b01 -100 16000 0.0001 620-670nm

Surface reflectance band 1

sur_refl_b02 -100 16000 0.0001 841-876nm

Surface reflectance for band 2

State

Surface reflectance 250m state flags

QA

Surface reflectance 250m band quality control flags

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/MOD09Q1')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));
var falseColorVis = {
  min: -100.0,
  max: 8000.0,
  bands: ['sur_refl_b02', 'sur_refl_b02', 'sur_refl_b01'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(dataset, falseColorVis, 'False Color');
Open in Code Editor