Landfire Mosaics LF¶
LANDFIRE (LF), Landscape Fire and Resource Management Planning Tools, is a shared program between the wildland fire management programs of the U.S. Department of Agriculture's Forest Service, U.S. Department of the Interior's Geological Survey, and The Nature Conservancy.
LANDFIRE (LF) layers are created using predictive landscape models based on extensive field-referenced data, satellite imagery and biophysical gradient layers using classification and regression trees. You can read about the Landfire 2023 updates here
LANDFIRE 2023 Update¶
The LANDFIRE 2023 Update (LF 2023) represents the final step in the ongoing goal to move towards annual updates and reduced latency. Similar to the LF 2022 Update, in LF 2023, disturbances from the previous year are represented in current year products. This means the LANDFIRE team has improved production efficiencies and can turn around disturbances faster than ever, providing the newest data faster to users.
LF 2023 Products and Descriptions¶
Expand to show theme, product and abbreviations
| Theme | Product Name | Abbreviation |
|---|---|---|
| Disturbance | Limited Disturbance | LDIST |
| Preliminary Annual Disturbance | PDIST | |
| 2023 Annual Disturbance | DIST | |
| Historical Disturbance | HDIST | |
| Fuel Disturbance | FDist | |
| Historic Fire Regime | Fire Regime Groups | FRG |
| Fire Return Interval | FRI | |
| Percent Fire Severity | PFS | |
| Fuel | 13 Anderson Fire Behavior Fuel Models | FBFM13 |
| 40 Scott and Burgan Fire Behavior Fuel Models | FBFM40 | |
| Forest Canopy Bulk Density | CBD | |
| Forest Canopy Base Height | CBH | |
| Forest Canopy Cover | CC | |
| Forest Canopy Height | CH | |
| Canadian Forest Fire Danger Rating System | CFFDRS | |
| Operational Roads | Roads | |
| Fuel Vegetation Cover | FVC | |
| Fuel Vegetation Height | FVH | |
| Fuel Vegetation Type | FVT | |
| Fuel Rulesets Database | FRDB | |
| Fuel Characteristic Classification System Fuelbeds | FCCS | |
| Reference | Public Events Geodatabase | EventsDB |
| Public Exotics Geodatabase | ExoticsDB | |
| Public Model Ready Events Geodatabase | ModelReadyDB | |
| Vegetation | Biophysical Settings | BPS |
| Existing Vegetation Type | EVT | |
| Existing Vegetation Cover | EVC | |
| Existing Vegetation Height | EVH | |
| Succession Classes | SClass | |
| Vegetation Condition Class | VCC | |
| Vegetation Departure Index | VDep |
Improvements Featured in the LF 2023 Update¶
Improvements were made to these layers and you can find the category and improvements information below.
| Category | Improvement |
|---|---|
| Imagery | Use of 4 seasonal composites in disturbance mapping, doubling satellite imagery usage |
| Coverage | Mapped disturbance events in the 90km buffer area surrounding CONUS |
| Products | Two new types of Annual Disturbance products – Limited and Preliminary Annual Disturbance |
| Calibration | New fuels calibration for the Southeast GeoArea, Colorado, and Oklahoma |
| Infrastructure | Updated Operational Roads product for CONUS incorporating NLCD 2021 |
| Fire Regime | Return of FRG, FRI, and PFS as standalone products |
| Alaska Products | Updated BPS, FRG, FRI, and PFS products for AK |
| Fuel Classification | Updated FCCS product for all extents |
| Methodology | New approach for Existing Vegetation Cover (EVC), Height (EVH), and Type (EVT) within CONUS |
New Disturbance Products in LF 2023¶
To provide sooner delivery of LANDFIRE Annual Disturbance data and ensure a more complete record, LANDFIRE now distributes three Annual Disturbance Products, Limited, Preliminary and Final.
Expand to see Disturbance products in a single version
| Product | Abbreviation | Description | Features |
|---|---|---|---|
| Limited Annual Disturbance | LDist | First cut of landscape change information | • Supports time-sensitive updates • Does not include satellite change detection • Does not provide image-based severity for contributed events • Includes fire program perimeters and burn severity where available |
| Preliminary Annual Disturbance | PDist | Second "draft" of landscape change information | • Released by geographic area • Includes disturbance events from regional sources • Includes LANDFIRE satellite change detection • Includes image-based severity • Used to update Vegetation and Fuel products |
| Annual Disturbance | Dist | "Final" draft of Annual Disturbance data | • Includes additional fires and disturbance events • Harvested from second "pull" of national online sources • Included in the Public Events Geodatabase |
New Vegetation Modeling Approach¶
For LF 2023, LANDFIRE maps the lifeform, cover, and height of existing vegetation in areas that have been mapped as disturbed over the last twenty years using machine learning methods. This is a change from previous updates that relied on millions of rulesets developed from local and national experts.

Currently included layers are
Earth Engine Snippet: Disturbance 2.4.0¶
// LANDFIRE Disturbance Layers
var dist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/DISTURBANCE/DIST");
var hdist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/DISTURBANCE/HDIST");
var ldist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/DISTURBANCE/LDIST");
var pdist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/DISTURBANCE/PDIST");
Earth Engine Snippet: Annual Disturbance 2.4.0¶
The LANDFIRE Annual Disturbance collection provides a continuous record of landscape disturbance across CONUS from 1999 to the present. Each image in this collection represents disturbance detected for a specific calendar year and is named using the convention LF{release_year}_Dist{disturbance_year}_CONUS, where release_year is the two-digit year of the LANDFIRE product release and disturbance_year is the two-digit year the disturbance was mapped. For example, LF2001_Dist99_CONUS captures disturbances from 1999, released as part of the LF 2001 product. A single LF release may bundle multiple disturbance years — for instance, the LF 2001 release includes annual disturbance rasters spanning 1999 through 2007. This means the LF release year and the disturbance year encoded in the filename are independent: users should refer to the disturbance_year portion of the filename to identify which year's landscape changes are represented.
// LANDFIRE Annual Disturbance Collection (1999–present)
var annualDist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/ANNUAL-DIST");
// Example: filter to a specific disturbance year using the system:index property
var dist2020 = annualDist.filter(ee.Filter.stringContains('system:index', 'Dist20'));
Expand to see Annual Disturbance image naming reference
| Image Name | LF Release | Disturbance Year |
|---|---|---|
| LF2001_Dist99_CONUS | LF 2001 | 1999 |
| LF2001_Dist00_CONUS | LF 2001 | 2000 |
| LF2001_Dist01_CONUS | LF 2001 | 2001 |
| LF2001_Dist02_CONUS | LF 2001 | 2002 |
| LF2001_Dist03_CONUS | LF 2001 | 2003 |
| LF2001_Dist04_CONUS | LF 2001 | 2004 |
| LF2001_Dist05_CONUS | LF 2001 | 2005 |
| LF2001_Dist06_CONUS | LF 2001 | 2006 |
| LF2001_Dist07_CONUS | LF 2001 | 2007 |
| LF2008_Dist08_CONUS | LF 2008 | 2008 |
| LF2010_Dist09_CONUS | LF 2010 | 2009 |
| LF2010_Dist10_CONUS | LF 2010 | 2010 |
| LF2012_Dist11_CONUS | LF 2012 | 2011 |
| LF2012_Dist12_CONUS | LF 2012 | 2012 |
| LF2014_Dist13_CONUS | LF 2014 | 2013 |
| LF2014_Dist14_CONUS | LF 2014 | 2014 |
| LF2016_Dist15_CONUS | LF 2016 | 2015 |
| LF2016_Dist16_CONUS | LF 2016 | 2016 |
| LF2020_Dist17_CONUS | LF 2020 | 2017 |
| LF2020_Dist18_CONUS | LF 2020 | 2018 |
| LF2020_Dist19_CONUS | LF 2020 | 2019 |
| LF2020_Dist20_CONUS | LF 2020 | 2020 |
| LF2022_Dist21_CONUS | LF 2022 | 2021 |
| LF2022_Dist22_CONUS | LF 2022 | 2022 |
| LF2023_Dist23_CONUS | LF 2023 | 2023 |
Earth Engine Snippet FIRE REGIME: v2.4.0¶
// LANDFIRE Fire Regime Collections
var frg = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FIRE-REGIME/FRG");
var fri = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FIRE-REGIME/FRI");
var pfs = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FIRE-REGIME/PFS");
Earth Engine Snippet: Fuel 2.4.0¶
// Landfire FUEL Layers
var cbd = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/CBD");
var cbh = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/CBH");
var cc = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/CC");
var cffdrs = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/CFFDRS");
var ch = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/CH");
var fbfm13 = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FBFM13");
var fbfm40 = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FBFM40");
var fccs = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FCCS");
var fdist = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FDIST");
var fvc = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FVC");
var fvh = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FVH");
var fvt = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/FVT");
var roads = ee.ImageCollection("projects/sat-io/open-datasets/landfire/FUEL/ROADS");

Earth Engine Snippet: Vegetation 2.4.0¶
// LANDFIRE Vegetation Collections
var bps = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/BPS");
var evc = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/EVC");
var evh = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/EVH");
var evt = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/EVT");
var sclass = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/SCLASS");
var vcc = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/VCC");
var vdep = ee.ImageCollection("projects/sat-io/open-datasets/landfire/VEGETATION/VDEP");
Earth Engine Snippet: Topography 2.3.0¶
// LANDFIRE Vegetation Collections
var slpp = ee.ImageCollection("projects/sat-io/open-datasets/landfire/TOPOGRAPHY/SLPP");
var slpd = ee.ImageCollection("projects/sat-io/open-datasets/landfire/TOPOGRAPHY/SLPD");
var elev = ee.ImageCollection("projects/sat-io/open-datasets/landfire/TOPOGRAPHY/ELEV");
var asp = ee.ImageCollection("projects/sat-io/open-datasets/landfire/TOPOGRAPHY/ASP");
Resolution: approx 30m
Citation¶
LANDFIRE spatial data products
Homepage title: Data product.(Last update). Agency. [Online].Available: URL [Access date].
LANDFIRE: LANDFIRE Existing Vegetation Type layer.(2013, June - last update). U.S. Department of Interior, Geological Survey.[Online]. Available: http://landfire.cr.usgs.gov/viewer/ [2013,May 8].
License¶
LANDFIRE data are public domain data with no use restrictions, though if modifications or derivatives of the product(s) are created, then please add some descriptive modifier to the data set to avoid confusion.
Curated in GEE by: Samapriya Roy
Keywords: doi, fire, landfire, nature-conservancy, usda, usgs, vegetation, wildfire
Last updated: 2026-03-27
Changelog¶
- 2026-03-27 Added Annual Disturbance collection (ANNUAL-DIST) with coverage from 1999 to present
- 2025-03-16 Updated to v2.4.0 for available collections
- 2024-01-14 Updated to v2.2.3 for available collections
Ask AI