Skip to content

Latest commit

Β 

History

History
88 lines (65 loc) Β· 4.31 KB

File metadata and controls

88 lines (65 loc) Β· 4.31 KB

Joshua Tree National Park Fire Analyses

The up-to-date version of these analyses can be viewed here on GitHub Pages!

This repository contains input data and outputs for fire impact assessments within Joshua Tree National Park (JOTR). These analyses support the post-fire reporting requirements of the National Park Service (NPS), with an emphasis on timeliness and accuracy.

πŸ”₯ Fire Analyses

Fire Date Historical Overlap Analysis
Eureka Fire May 2025 Yes (includes veg Γ— fire history analysis) View HTML
Black Rock Fire October 2025 No (100% previously unburned) View HTML

Development Setup

renv

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.

VSCode Dev Container

Alternatively, one can run the analysis in VSCode using:

  • VSCode
  • the Dev Containers extension within VSCode
  • 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 a Quarto document, run:

  • Cmd + Shift + P -> Quarto: Render Document, with the desired .qmd file open.

Or, more simply, from a terminal:

  • $ quarto render

πŸ“‚ Repository Structure

πŸ“‚ jotr_2025_fire_eda/
β”œβ”€β”€ fires/
β”‚   β”œβ”€β”€ eureka/
β”‚   β”‚   β”œβ”€β”€ eureka_fire_exploration.qmd       Main analysis notebook
β”‚   β”‚   β”œβ”€β”€ NDVI_planetscope.R                Pre/post-burn NDVI script
β”‚   β”‚   β”œβ”€β”€ inputs/
β”‚   β”‚   β”‚   └── refined_rbr.tif               RBR raster from Fire Severity Tool
β”‚   β”‚   └── outputs/
β”‚   β”‚       β”œβ”€β”€ fire_perimeter/               Extracted fire boundary shapefile
β”‚   β”‚       β”œβ”€β”€ veg_burned_summary.csv        Vegetation area by type
β”‚   β”‚       β”œβ”€β”€ severity_veg_summary.csv      RBR stats by vegetation type
β”‚   β”‚       β”œβ”€β”€ severity_fire_history.csv     RBR stats by historical fire
β”‚   β”‚       β”œβ”€β”€ severity_veg_firehist.csv     RBR stats by veg Γ— fire history
β”‚   β”‚       └── NDVI_EurekaFire.png           NDVI visualization
β”‚   β”‚
β”‚   └── black_rock/
β”‚       β”œβ”€β”€ black_rock_fire_exploration.qmd   Main analysis notebook
β”‚       β”œβ”€β”€ inputs/
β”‚       β”‚   └── refined_rbr.tif               RBR raster from Fire Severity Tool
β”‚       └── outputs/
β”‚           β”œβ”€β”€ fire_perimeter/               Extracted fire boundary shapefile
β”‚           β”œβ”€β”€ veg_burned_summary.csv        Vegetation area by type
β”‚           β”œβ”€β”€ severity_veg_summary.csv      RBR stats by vegetation type
β”‚           └── severity_fire_history.csv     RBR stats by historical fire
β”‚
β”œβ”€β”€ shared_inputs/
β”‚   β”œβ”€β”€ jotrgeodata.gpkg                      Vegetation polygons (JOTR_VegPolys layer)
β”‚   └── HistFires_JOTR_MOJA/                  Historic fires shapefile
β”‚
β”œβ”€β”€ docs/                                     Rendered HTML output for GitHub Pages
β”œβ”€β”€ _quarto.yml                               Quarto site configuration
β”œβ”€β”€ index.qmd                                 Site landing page
└── README.md                                 This file

Data Sources