File size: 1,574 Bytes
f3bfd1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fb4d934
f3bfd1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import re
import streamlit as st
import rioxarray as rxr
# import cartopy.crs as ccrs

import matplotlib.pyplot as plt
import streamlit.components.v1 as components

from matplotlib.animation import FuncAnimation
# from huggingface_hub import hf_hub_download
# from streamlit_extras.badges import badge

st.set_page_config(
    page_title="Home",
    page_icon="🔥",
)

st.write("# FiRE-HNL Beta Dashboard")

st.sidebar.success("Select a page above.")

st.markdown(
    f"""
    This space was created to test several operational products
    developed for Alaska fire occurrence modeling efforts.
    Select a page from the sidebar to test some of the example
    workflows developed as part of this research.
    
    ## Objectives
    Visualization and download of Alaska fire data. This dashboard
    was tested during the 2023 fire season, and is being improved
    for the 2024 fire season. Updates to the maps are done at 6 AM
    local Alaska time.

    ## Health Status
    - WRF: Normal
    - Lightning: Normal
    - Ignition: In Development
    
    ## Study Area
    """
)

# set study area image in the dashboard
st.image('https://files.blogs.illinois.edu/files/6367/265408/76088.jpg')

st.markdown(
    """
    Figure 1. Study area.
    """
)

st.markdown(
    """    
    ## Feedback
    We are seeking daily feedback on forecast potential. Feel free
    to reach out directly if you have any feedback or if you have
    additional features that would be useful to improve the information
    provided here.
    
    Curator Email: jacaraba@umd.edu
    """
)