Full catalog/MOD10C1
MOD10C1·v61·dataset

Where there's snow (Terra, daily, 0.05 deg)

MODIS/Terra Snow Cover Daily L3 Global 0.05Deg CMG V061
cryosphere NASA NSIDC_CPRD Level 3 active HDF-EOS2
In plain English

What it measures. The daily percentage of land covered by snow, and the percentage hidden by clouds, within each roughly 5-km grid cell. It's a coarse, big-picture daily snow map.

How it's made. Built by summarizing a finer 500-meter MODIS/Terra snow map into larger climate-modeling grid cells.

How & where you'd use it. Handy for climate and water studies that need a consistent, broad-scale view of where snow lies day to day.

What's measured

CRYOSPHERE › SNOW/ICE › SNOW COVER

Coverage & cadence

  • Time span2000-02-24 → ongoing
  • Measured byTerra (MODIS)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS2
  • StatusACTIVE

What you can do with it

  • Measure sea ice, snow cover and glaciers
  • Watch ice-sheet elevation change
  • Track freeze/thaw and permafrost
Official description

This global Level-3 (L3) data set provides the percentage of snow-covered land and cloud-covered land observed daily, within 0.05° (approx. 5 km) MODIS Climate Modeling Grid (CMG) cells. Percentages are computed from snow cover observations in the 'MODIS/Terra Snow Cover Daily L3 Global 500m Grid' data set (DOI:10.5067/MODIS/MOD10A1.061). The terms "Version 61" and "Collection 6.1" are used interchangeably in reference to this release of MODIS data.

Get the data

mod10c1_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="MOD10C1",
    version="61",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from NSIDC_CPRD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.