VNP14A1.001: Thermal Anomalies/Fire Daily L3 Global 1km SIN Grid [deprecated]

  • This dataset, which provides daily information about active fires and thermal anomalies, has been superseded by NASA/VIIRS/002/VNP14A1.

  • The dataset covers the period from 2012-01-19 to 2024-06-16 and has a daily cadence.

  • Provided by NASA LP DAAC, the dataset includes bands like FireMask, MaxFRP, and QA at a 1000 meters pixel size.

  • LP DAAC NASA data are freely accessible for use, with a request to cite the datasets in publications.

NOAA/VIIRS/001/VNP14A1
Dataset Availability
2012-01-19T00:00:00Z–2024-06-16T00:00:00Z
Dataset Producer
Earth Engine Snippet
ee.ImageCollection("NOAA/VIIRS/001/VNP14A1")
Cadence
1 Day
Tags
fire
land
nasa
noaa
surface
viirs

Description

The daily Suomi National Polar-Orbiting Partnership NASA Visible Infrared Imaging Radiometer Suite (VIIRS) Thermal Anomalies/Fire (VNP14A1) Version 1 data product provides daily information about active fires and other thermal anomalies. The VNP14A1 data product is a global, 1km gridded composite of fire pixels detected from VIIRS 750m bands over a daily (24-hour) period. The VNP14 data products are designed after the Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies/Fire product suite.

Documentation:

Bands

Pixel Size
1000 meters

Bands

Name Units Pixel Size Description
FireMask meters

Confidence of fire.

MaxFRP MW meters

Maximum Fire Radiative Power

QA meters

Global Land Surface Phenology Quality Control

sample meters

Sample number within a swath

FireMask Class Table

Value Color Description
0 None

Not processed (no data or poor quality data)

1 None

Not processed (bowtie deletion)

2 None

Unused

3 None

Water

4 None

Cloud

5 None

Land

6 None

Unclassified

7 None

Low confidence fire pixel

8 None

Nominal confidence fire pixel

9 None

High confidence fire pixel

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/VNP14A1').first();

var band_vis = {
  min: [1],
  max: [10000],
  palette: ['000000', '004400', '008800', '00bb00', '00ff00'],
  bands: ['MaxFRP'],
};

Map.setCenter(-1.94, 10.35, 10);
Map.addLayer(dataset, band_vis, 'Maximum Fire Radiative Power');
Open in Code Editor