VNP09H1: VIIRS Surface Reflectance 8-Day L3 Global 500m

NOAA/VIIRS/001/VNP09H1
Dataset Availability
2012-01-19T00:00:00Z–2024-04-06T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("NOAA/VIIRS/001/VNP09H1")
Tags
daily nasa noaa npp reflectance sr viirs

Description

The 8-day Visible Infrared Imaging Radiometer Suite (VIIRS) Surface Reflectance (VNP09H1) Version 1 composite product provides an estimate of land surface reflectance from the Suomi National Polar-orbiting Partnership (Suomi NPP) VIIRS sensor for three imagery bands (I1, I2, I3) at nominal 500m resolution (~463m). The 500m dataset is derived through resampling the native 375m VIIRS resolution in the L2 input product. The data are corrected for atmospheric conditions such as the effects of molecular gases, including ozone and water vapor, and for the effects of atmospheric aerosols. Each pixel represents the best possible Level 2G observation during an 8-day period, which is selected on the basis of high observation coverage, low sensor angle, the absence of clouds or cloud shadow, and aerosol loading. The three reflectance bands, this product includes a state quality assurance (QA) layer and a reflectance band quality layer.

Documentation:

Bands

Resolution
500 meters

Bands

Name Min Max Description
SurfReflect_I1 -100 16000

500 m Surface Reflectance Band I1

SurfReflect_I2 -100 16000

500 m Surface Reflectance Band I2

SurfReflect_I3 -100 16000

500 m Surface Reflectance Band I3

SurfReflect_QC_500m

Surface Reflectance Band Quality Control (QC)

SurfReflect_State_500m

Surface Reflectance State Quality Assurance (QA)

Terms of Use

Terms of Use

LP DAAC NASA data are freely accessible; however, when an author publishes these data or works based on the data, it is requested that the author cite the datasets within the text of the publication and include a reference to them in the reference list.

Citations

Citations:

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('NOAA/VIIRS/001/VNP09H1')
                  .filter(ee.Filter.date('2017-05-01', '2017-06-30'));
var rgb = dataset.select(['SurfReflect_I1', 'SurfReflect_I2', 'SurfReflect_I3']);
var rgbVis = {
  min: 0.0,
  max: 1.0,
};
Map.setCenter(17.93, 7.71, 2);
Map.addLayer(rgb, rgbVis, 'RGB');
Open in Code Editor