The up to date version of this analsyis (whatever is currently commited to the main
branch) can be viewed here on GitHub Pages!
This repository contains the input data and outputs for an initial assessment of vegetation impacts after the Eureka Fire. These analyses were performed with the intent to support the post-fire reporting requirements of the National Park Service (NPS) within the Joshua Tree National Park (JOTR) Park Unit, with an emphasis on timeliness and accuracy.
Analyses are documented in the Quarto notebook (eureka_fire_exploration.qmd
) and the rendered HTML report, published here on GitHub Pages. This exploratory analysis also helps characterize burn severity, vegetation types within the burned area, and varying fire history across the fire perimeter to support validation of the Fire Severity Tool from the Schmidt Center for Data Science and Environment (DSE), which aims to provide a timely and accurate assessment of fire severity in response to fires such as the Eureka Fire.
This analysis uses renv
for package management using R version 4.4.3
. This can be installed using renv::refresh()
when inside of the working directory in RStudio.
Alternatively, one can open run analysis in VSCode
using:
VSCode
- the
Dev Containers
extension withinVSCode
Docker
(Docker Desktop or a preferred alternative)
Then, within the repository in VSCode
, run:
Cmd + Shift + P -> Dev Containers: Reopen in Container
When inside the container, to knit / render the Quarto
document, run:
Cmd + Shift + P -> Quarto: Render Document
, with theeureka_fire_exploration.qmd
file open.
📂 eureka_fire_eda
├── inputs/
│ ├── jotrgeodata.gpkg Vegetation polygons (layer: JOTR_VegPolys)
│ ├── refined_rbr.tif Refined Relative Burn Ratio (RBR) raster
│ ├── HistFires_JOTR_MOJA/ Historic fires shapefile and related files
│ ├── 2025-05-27_strip_8121430_composite_file_format.tif Pre-burn PlanetScope image (needs to be obtained externally - see description below)
│ ├── 2025-06-09_strip_8121430_composite_file_format.tif Post-burn PlanetScope image (needs to be obtained externally - see description below)
│
├── outputs/
│ ├── fire_perimeter/ Extracted Eureka fire boundary (optional export)
│ ├── veg_burned_summary.csv Vegetation type area inside fire boundary
│ ├── severity_veg_summary.csv Fire severity stats by vegetation type
│ ├── severity_fire_history.csv Severity stats by intersecting historic fires
│ ├── severity_veg_firehist.csv Severity stats by veg type & fire history
│
├── eureka_fire_exploration_files/
│ ├── figure-html/ Auto-generated figures used in HTML
│ ├── libs/ Supporting JS/CSS for interactive widgets
│
├── eureka_fire_exploration.qmd Main Quarto analysis notebook
├── eureka_fire_exploration.html Rendered HTML report (same content as RPubs version)
├── NDVI_planetscope.R Additional script for pre/post-burn NDVI from PlanetScope
├── README.md Project description & instructions
- Relativized Burn Ratio (RBR): Derived from the Fire Severity Tool by the Schmidt Center for Data Science and Environment.
- Vegetation Polygons: Geospatial data for the Vegetation Mapping Inventory Project of JOTR, provided by the National Park Service (NPS) as a zip file (
jotrgeodata.zip
), converted via GDAL'sogr2ogr
to a GeoPackage format. - Historic Fires: Historic fires shapefile filtered to JOTR and Mojave National Preserve (MOJN) boundaries, downloaded from the California Department of Forestry and Fire Protection (CAL FIRE) website. The shapefile is included in the
inputs/HistFires_JOTR_MOJA
directory. - PlanetScope Images: Pre and post-burn images for the Eureka Fire, obtained from PlanetScope. These images are not included in the repository due to size and licensing restrictions associated with the University of California's agreement with Planet Labs. You can access them through the PlanetScope API or download them directly if you have access. These are four-band images (RGB-IR), obtained through PlanetScope's Planet Explorer, filtering to the appropriate dates (05/27/2025 for pre-burn and 06/09/2025 for post-burn) and area of interest (Covington Flats area of JOTR). The images used in this analysis are:
- Pre-burn:
2025-05-27_strip_8121430_composite_file_format.tif
- Post-burn:
2025-06-09_strip_8121430_composite_file_format.tif
- Pre-burn:
This initial assessment explores the Relativized Burn Ratio (RBR) for the Eureka Fire (Joshua Tree National Park, June 2025), including:
- Fire burn severity across the entire fire perimeter
- Vegetation types (area and percentage) burned
- Fire burn severity summarized by vegetation type
- Fire burn severity by fire history (noting that much of the area also burned in 2006)
- Fire burn severity jointly by vegetation type and fire history
This auxillary analysis investigates pre- and post-burn NDVI baed on PlanetScope satellite images. The images used are four-band images (RGB-IR) that were harmonized (by Planet) using Sentinel-2
Caveat: The main goal of this analysis was to investigate spatial differences in NDVI across the burn perimeter. Since the two images were taken my two different satellites, the temporal comparison across images would require further bencharking beyond the scope of this study.