Full catalog/VNP43C1
VNP43C1·v002·dataset

Reflectance model settings for the surface (VIIRS Suomi-NPP, daily)

VIIRS/NPP BRDF/Albedo Model Parameters Daily L3 Global 0.05Deg CMG V002
land NASA LPCLOUD Level 3 active HDF-EOS5
In plain English

What it measures. Stores the settings of a model that describes how the land surface reflects sunlight from different angles, rather than a direct reflectance value.

How it's made. Derived daily from VIIRS data on the Suomi-NPP satellite using a 16-day moving window, on a roughly 5,600 m global grid.

How & where you'd use it. A building-block input used to generate the matching albedo and view-corrected reflectance products that climate models rely on.

What's measured

LAND SURFACE › SURFACE RADIATIVE PROPERTIES › ALBEDOLAND SURFACE › SURFACE RADIATIVE PROPERTIES › ANISOTROPYLAND SURFACE › SURFACE RADIATIVE PROPERTIES › REFLECTANCE

Coverage & cadence

  • Time span2012-01-19 → ongoing
  • Measured bySuomi-NPP (VIIRS)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsHDF-EOS5
  • StatusACTIVE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

The NASA/NOAA Suomi National Polar-orbiting Partnership (Suomi NPP) Visible Infrared Imaging Radiometer Suite (VIIRS) Bidirectional Reflectance Distribution Function (BRDF) and Albedo Model Parameters Daily Global 0.05 Degree Climate Modeling Grid (CMG) Version 2 product (VNP43C1) is derived from the 30 arc second CMG VNP43D Version 2 product suite. VNP43C1 is generated daily from all available high-quality reflectance data over a 16-day moving window emphasizing the ninth day of the retrieval period, which is reflected in the Julian date in the filename. VNP43C1 supplies the weighting parameters associated with the RossThick/Li-Sparse-Reciprocal BRDF model that best describes the anisotropy of each pixel, which is used to produce the [VNP43C3](https://doi.org/10.5067/VIIRS/VNP43C3.002) Albedo and [VNP43C4](https://doi.org/10.5067/VIIRS/VNP43C4.002) Nadir BRDF-Adjusted Reflectance (NBAR) products. The highest quality full inversion values are used for the temporal fitting effort and supplemented with lower quality pixels, spatial fitting, and spatial smoothing as needed. The status of each pixel can be found in the ancillary variables. Users are encouraged to assess the quality information before using the BRDF/Albedo data. This 0.05 degree (5,600 meters at the equator) CMG product covers the entire globe for use in climate simulation models. The VNP43C1 product includes 44 variables containing the three parameters (fiso, fvol, and fgeo) for the VIIRS Day/Night band (DNB), moderate resolution bands M1 through M5, M7, M8, M10, and M11, as well as the shortwave band, visible band, and near-infrared (NIR) broadbands. Along with the parameter data for the 13 bands are five ancillary variables for uncertainty, quality, local solar noon, percent finer resolution inputs, and snow cover. A low-resolution browse is also provided showing BRDF/Albedo parameters for bands M5, M4, and M3 as a red, green, blue (RGB) image in JPEG format. Known Issues * For complete information about known issues please refer to the [MODIS/VIIRS Land Quality Assessment website](https://landweb.modaps.eosdis.nasa.gov/knownissue?sensor=VIIRS).

Get the data

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

results = earthaccess.search_data(
    short_name="VNP43C1",
    version="002",
    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 LPCLOUD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.