AI-generated Key Takeaways
-
The MCD43A2 V6.1 dataset provides quality information for the MODIS MCD43A3 Albedo and MCD43A4 Nadir-BRDF products at 500 meter resolution and daily timesteps.
-
It includes quality and observation data for MODIS land bands 1-7, alongside BRDF/Albedo quality details.
-
The dataset covers a period from February 24, 2000, to December 2, 2024, and is provided by NASA LP DAAC at the USGS EROS Center.
-
Users can access the dataset through the Earth Engine platform using the
ee.ImageCollection("MODIS/061/MCD43A2")
snippet. -
There are no restrictions on the use, sale, or redistribution of MODIS data and products obtained from the LP DAAC.

- Dataset Availability
- 2000-02-24T00:00:00Z–2025-09-24T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 1 Day
- Tags
Description
The MCD43A2 V6.1 Bidirectional Reflectance Distribution Function and Albedo (BRDF/Albedo) Quality dataset is a 500 meter daily 16-day product. It contains all the quality information for the corresponding 16-day MCD43A3 Albedo and the MCD43A4 Nadir-BRDF (NBAR) products.
The MCD43A2 contains individual band quality and observation information for the MODIS land bands 1-7, along with the overall BRDF/Albedo quality information.
See dataset user guide for more information.
Documentation:
Bands
Pixel Size
500 meters
Bands
Name | Units | Min | Max | Scale | Pixel Size | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Snow_BRDF_Albedo |
meters | Snow-free or snow BRDF/albedo retrieved |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Platform |
meters | BRDF albedo platform information |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_LandWaterType |
meters | Land/water type |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_LocalSolarNoon |
deg | 0 | 254 | meters | Solar zenith angle of local solar noon |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band1 |
meters | Valid observation for band 1 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band2 |
meters | Valid observation for band 2 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band3 |
meters | Valid observation for band 3 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band4 |
meters | Valid observation for band 4 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band5 |
meters | Valid observation for band 5 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band6 |
meters | Valid observation for band 6 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_ValidObs_Band7 |
meters | Valid observation for band 7 (same bit meaning as in band 1) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band1 |
meters | BRDF inversion information for band 1 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band2 |
meters | BRDF inversion information for band 2 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band3 |
meters | BRDF inversion information for band 3 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band4 |
meters | BRDF inversion information for band 4 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band5 |
meters | BRDF inversion information for band 5 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band6 |
meters | BRDF inversion information for band 6 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Band_Quality_Band7 |
meters | BRDF inversion information for band 7 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BRDF_Albedo_Uncertainty |
0 | 32766 | 0.001 | meters | BRDF inversion information |
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 dataset = ee.ImageCollection('MODIS/061/MCD43A2') .filter(ee.Filter.date('2018-01-01', '2018-05-01')); var defaultVisualization = dataset.select('Snow_BRDF_Albedo'); var defaultVisualizationVis = { min: 0.0, max: 1.0, }; Map.setCenter(6.746, 46.529, 6); Map.addLayer( defaultVisualization, defaultVisualizationVis, 'Default visualization');