AI-generated Key Takeaways
-
The MYD21C2 dataset provides 8-day composite Land Surface Temperature (LST) data using a simple averaging method of cloud-free daily acquisitions.
-
This dataset includes separate bands for daytime and nighttime LST, Quality Control, view zenith angle, and viewing time, along with averaged values for MODIS emissivity bands.
-
The dataset is available from February 24, 2000, to October 8, 2025, with an 8-day cadence.
-
Data acquired through the LP DAAC for this dataset have no restrictions on subsequent use, sale, or redistribution.

- Dataset Availability
- 2000-02-24T00:00:00Z–2025-11-01T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MYD21C2 dataset is an 8-day composite LST product that uses an algorithm based on a simple averaging method. The algorithm calculates the average from all the cloud free MYD21A1D and MYD21A1N daily acquisitions from the 8-day period. Unlike the MYD21A1 data sets where the daytime and nighttime acquisitions are separate products, the MYD21A2 contains both daytime and nighttime acquisitions. The LST, Quality Control (QC), view zenith angle, and viewing time have separate day and night bands, while the values for the MODIS emissivity bands 29, 31, and 32 are the average of both the nighttime and daytime acquisitions.
Documentation:
Bands
Pixel Size 1000 meters
Bands
Count_Day
Count of Daytime Input Values
Count_Night
Count of Nighttime Input Values
QC_Day
Quality Control for Daytime LST and Emissivity
QC_Night
Quality Control for Nighttime LST and Emissivity
LST_Day
Average Daytime Land Surface Temperature
LST_Night
Average Nighttime Land Surface Temperature
LST_Day_err
Root-mean-square-error Daytime Land Surface Temperature
LST_Night_err
Average Nighttime Land Surface Temperature
Day_view_angle
Average Daytime View Zenith Angle
Night_view_angle
Average Nighttime View Zenith Angle
Day_view_time
Average Daytime View Time (UTC)
Night_view_time
Average Nighttime View Time (UTC)
Emis_29_Day
Average Daytime Band 29 Emissivity
Emis_29_Night
Average Nighttime Band 29 Emissivity
Emis_29_Day_err
Root-mean-square-error Daytime Band 29 Emissivity
Emis_29_Night_err
Root-mean-square-error Nighttime Band 29 Emissivity
Emis_31_Day
Average Daytime Band 31 Emissivity
Emis_31_Night
Average Nighttime Band 31 Emissivity
Emis_31_Day_err
Root-mean-square-error Daytime Band 31 Emissivity
Emis_31_Night_err
Root-mean-square-error Nighttime Band 31 Emissivity
Emis_32_Day
Average Daytime Band 32 Emissivity
Emis_32_Night
Average Nighttime Band 32 Emissivity
Emis_32_Day_err
Root-mean-square-error Daytime Band 32 Emissivity
Emis_32_Night_err
Root-mean-square-error Nighttime Band 32 Emissivity
View_Angle
MODIS view zenith angle
Percent_land_in_grid
Percent of Land Detections in Grid Cell
Clear_sky_days
Bitmap of Clear Sky Days (1 = clear, LSB = 1st day)
Clear_sky_nights
Bitmap of Clear Sky Nights (1 = clear, LSB = 1st day)
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/MYD21C2' ) . filter ( ee . Filter . date ( '2018-01-01' , '2018-05-01' )); var landSurfaceTemperature = dataset . select ( 'LST_Day' ); var landSurfaceTemperatureVis = { min : 216.0 , max : 348.0 , palette : [ '040274' , '040281' , '0502a3' , '0502b8' , '0502ce' , '0502e6' , '0602ff' , '235cb1' , '307ef3' , '269db1' , '30c8e2' , '32d3ef' , '3be285' , '3ff38f' , '86e26f' , '3ae237' , 'b5e22e' , 'd6e21f' , 'fff705' , 'ffd611' , 'ffb613' , 'ff8b13' , 'ff6e08' , 'ff500d' , 'ff0000' , 'de0101' , 'c21301' , 'a71001' , '911003' ], }; Map . setCenter ( 6.746 , 46.529 , 2 ); Map . addLayer ( landSurfaceTemperature , landSurfaceTemperatureVis , 'Average Daytime Land Surface Temperature' );

