Page Summary
-
This dataset, MCD19A2 V6, provides daily MODIS Terra and Aqua combined MAIAC Land Aerosol Optical Depth (AOD) at 1 km resolution.
-
The dataset is available from February 26, 2000, to February 17, 2023.
-
It has been superseded by the MODIS/061/MCD19A2_GRANULES dataset.
-
Data includes various bands such as Optical_Depth, AOD_Uncertainty, FineModeFraction, Column_WV, AOD_QA, and more, with specific pixel sizes and descriptions.
-
There are no restrictions on the subsequent use, sale, or redistribution of this data.
- Dataset Availability
- 2000-02-26T00:00:00Z–2023-02-17T00:00:00Z
- Dataset Producer
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 1 Day
- Tags
Description
The MCD19A2 V6 data product is a MODIS Terra and Aqua combined Multi-angle Implementation of Atmospheric Correction (MAIAC) Land Aerosol Optical Depth (AOD) gridded Level 2 product produced daily at 1 km resolution. For more information see the MAIAC user guide.
Documentation:
Bands
Bands
Pixel size: 1000 meters (all bands)
| Name | Units | Min | Max | Scale | Pixel Size | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Optical_Depth_047 |
-100 | 5000 | 0.001 | 1000 meters | Blue band (0.47 μm) aerosol optical depth over land |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Optical_Depth_055 |
-100 | 5000 | 0.001 | 1000 meters | Green band (0.55 μm) aerosol optical depth over land |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AOD_Uncertainty |
-100 | 30000 | 0.0001 | 1000 meters | AOD uncertainty based on blue-band surface brightness (reflectance) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FineModeFraction |
0 | 10000 | 0.0001 | 1000 meters | Fine mode fraction for ocean |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Column_WV |
cm | 0 | 30000 | 0.001 | 1000 meters | Column water vapor over land |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AOD_QA |
1000 meters | AOD QA |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AOD_MODEL |
0 | 100 | 1000 meters | AOD model used in retrieval |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Injection_Height |
m | 0 | 10000 | 1000 meters | Smoke injection height |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cosSZA |
0 | 10000 | 0.0001 | 1000 meters | Cosine of solar zenith angle (5 km resolution) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cosVZA |
0 | 10000 | 0.0001 | 1000 meters | Cosine view zenith angle (5 km resolution) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RelAZ |
-18000 | 18000 | 0.01 | 1000 meters | Relative azimuth angle (5 km resolution) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Scattering_Angle |
-18000 | 18000 | 0.01 | 1000 meters | Scattering angle (5 km resolution) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Glint_Angle |
-18000 | 18000 | 0.01 | 1000 meters | Glint angle (5 km resolution) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 collection = ee.ImageCollection('MODIS/006/MCD19A2_GRANULES') .select('Optical_Depth_047') .filterDate('2019-01-01', '2019-01-15'); var band_viz = { min: 0, max: 500, palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red'] }; Map.addLayer(collection.mean(), band_viz, 'Optical Depth 047'); Map.setCenter(76, 13, 6);