A Julia package for accessing wildfire and fire-related geospatial data from U.S., Canadian, and global sources.
| Module | Source | Description |
|---|---|---|
| WFIGS | NIFC | Wildland Fire Interagency Geospatial Services |
| IRWIN | NIFC | Integrated Reporting of Wildland-Fire Information |
| FPA-FOD | USDA | Fire Program Analysis Fire-Occurrence Database |
| MTBS | USGS/USDA | Monitoring Trends in Burn Severity |
| FIRMS | NASA | Fire Information for Resource Management System |
| LANDFIRE | USGS/USDA | Landscape Fire and Resource Management Planning Tools |
| FEDS | NASA | Fire Events Data Suite (satellite-derived fire tracking) |
| CWFIS | NRCan | Canadian Wildland Fire Information System |
| HMS | NOAA | Hazard Mapping System (fire detections & smoke plumes) |
| GWIS | Copernicus | Global Wildfire Information System (fire danger & burnt areas) |
| EGP | NIFC | Enterprise Geospatial Portal (operational boundaries) |
using Pkg
Pkg.add(url="https://github.com/RallypointOne/WildfireData.jl")using WildfireData
# List available WFIGS datasets
WFIGS.datasets()
# Get info about a specific dataset
WFIGS.info(:current_perimeters)
# Download data
data = WFIGS.download(:current_perimeters; limit=10)See the documentation for more details.