burn_mapper / pages /Home.py
danielle-losos's picture
Update pages/Home.py
c3b3150 verified
raw
history blame
1.48 kB
import solara
@solara.component
def Page():
with solara.Column(align="center"):
markdown = """
## Burn Map Generator
### About the project
**A proof of concept illustrating wildfire burn severity maps with emerging clarity while the fires progress**
More project description, etc, etc.
**Case Studies from 2020 and 2021 Western US wildfire seasons **
- August Complex, CA (2020)
- Cameron Peak, CO (2020)
- Dixie Fire, CA (2021)
- North Complex, CA (2020)
### How to use the app
1. Instuction #1
2. Instruction #2
3.
### Support
Initial funding for wildland burn scar mapping came through the NOAA JPSS/RRPG Fire and Smoke Initiative.
This supported the initial tests of BRIDGE maps using dNDVI. Subsequent funding supported the development of dNBR mapping and an effort
to tie support the near real-time distribution of incident-based fire detection and related satellite imagery products through the Next Generation Fire System (NGFS).
Current funding from the NOAA Weather Program Office (WPO) is supporting the refinement of our Google Earth Engine App (GEE)
and integration of GEE burn scar output with AWIPS (see example above) for Weather Forecast Offices, Regional Offices, and the Weather Prediction Center.
"""
solara.Markdown(markdown)