The Marshall Fire was a devastating wildfire that occurred in Boulder County, Colorado on December 30, 2021. Driven by extreme winds, it became the most destructive wildfire in Colorado history, destroying over 1,000 structures.
---title: "Marshall Fire Analysis"---## OverviewThe Marshall Fire was a devastating wildfire that occurred in Boulder County, Colorado on December 30, 2021. Driven by extreme winds, it became the most destructive wildfire in Colorado history, destroying over 1,000 structures.This project analyzes the Marshall Fire using:- **HRRR Weather Data**: High-Resolution Rapid Refresh wind fields- **Landfire Data**: Fuel models, terrain slope, and aspect- **Fire Perimeter**: Official burn perimeter from Boulder County## Key Facts| Attribute | Value ||-----------|-------|| Start Date | December 30, 2021 || Location | Boulder County, CO || Ignition Point | -105.231°, 39.955° || Cause | Downed power lines (wind) |## Fire Perimeter```{julia}usingPkgPkg.activate(joinpath(@__DIR__, ".."))Pkg.instantiate()usingMarshallWildfireusingGLMakieoutput_dir =joinpath(@__DIR__, "images")mkpath(output_dir)path =joinpath(output_dir, "marshall_fire_perimeter.png")if !isfile(path)@info"Generating marshall_fire_perimeter.png" MarshallWildfire.plot_marshall_perimeter(; output_dir)else@info"marshall_fire_perimeter.png already exists"end```## Perimeter with Buildings and Power Lines```{julia}path =joinpath(output_dir, "marshall_fire_with_buildings.png")if !isfile(path)@info"Generating marshall_fire_with_buildings.png" MarshallWildfire.plot_perimeter_with_buildings(; output_dir)else@info"marshall_fire_with_buildings.png already exists"end```## Damage Assessment```{julia}path =joinpath(output_dir, "damage_assessment.png")if !isfile(path)@info"Generating damage_assessment.png" MarshallWildfire.plot_damage_assessment(; output_dir)else@info"damage_assessment.png already exists"end```