Spaces:
Sleeping
Sleeping
Update pages/Home.py
Browse files- pages/Home.py +22 -40
pages/Home.py
CHANGED
@@ -1,59 +1,41 @@
|
|
1 |
import solara
|
2 |
|
3 |
-
|
4 |
@solara.component
|
5 |
def Page():
|
6 |
with solara.Column(align="center"):
|
7 |
markdown = """
|
8 |
-
##
|
9 |
-
|
10 |
-
### Introduction
|
11 |
-
|
12 |
-
**A collection of Earth Engine web apps developed using [Solara](https://github.com/widgetti/solara) and geemap**
|
13 |
-
|
14 |
-
- Web App: <https://giswqs-solara-geemap.hf.space>
|
15 |
-
- GitHub: <https://github.com/opengeos/solara-geemap>
|
16 |
-
- Hugging Face: <https://huggingface.co/spaces/giswqs/solara-geemap>
|
17 |
-
|
18 |
|
19 |
-
###
|
20 |
-
|
21 |
-
1. Go to <https://huggingface.co/spaces/giswqs/solara-geemap/tree/main> and duplicate the space to your own space.
|
22 |
-
|
23 |
-

|
24 |
-
|
25 |
-
2. You need to set `EARTHENGINE_TOKEN` in order to use Earth Engine. The token value should be copied from the following file depending on your operating system:
|
26 |
|
27 |
-
|
28 |
-
Windows: C:\\Users\\USERNAME\\.config\\earthengine\\credentials
|
29 |
-
Linux: /home/USERNAME/.config/earthengine/credentials
|
30 |
-
MacOS: /Users/USERNAME/.config/earthengine/credentials
|
31 |
-
```
|
32 |
|
33 |
-
|
34 |
|
35 |
-
|
36 |
|
37 |
-
|
|
|
|
|
|
|
38 |
|
|
|
|
|
39 |
|
40 |
-
|
41 |
-
import geemap
|
42 |
-
geemap.get_ee_token()
|
43 |
-
```
|
44 |
-
|
45 |
-
Copy all the content of the printed token and set it as the `EARTHENGINE_TOKEN` environment variable.
|
46 |
-
|
47 |
-
3. After the space is built successfully, click the `Embed this Space` menu and find the `Direct URL` for the app, such as <https://giswqs-solara-geemap.hf.space>.
|
48 |
-
|
49 |
-

|
50 |
-
|
51 |
-

|
52 |
|
53 |
-
|
54 |
|
55 |
-
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
"""
|
58 |
|
59 |
solara.Markdown(markdown)
|
|
|
1 |
import solara
|
2 |
|
|
|
3 |
@solara.component
|
4 |
def Page():
|
5 |
with solara.Column(align="center"):
|
6 |
markdown = """
|
7 |
+
## Burn Map Generator
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
+
### About the project
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
+
**A proof of concept illustrating wildfire burn severity maps with emerging clarity while the fires progress**
|
|
|
|
|
|
|
|
|
12 |
|
13 |
+
More project description, etc, etc.
|
14 |
|
15 |
+
**Case Studies from 2020 and 2021 Western US wildfire seasons **
|
16 |
|
17 |
+
- August Complex, CA (2020)
|
18 |
+
- Cameron Peak, CO (2020)
|
19 |
+
- Dixie Fire, CA (2021)
|
20 |
+
- North Complex, CA (2020)
|
21 |
|
22 |
+
|
23 |
+
### How to use the app
|
24 |
|
25 |
+
1. Instuction #1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
+
2. Instruction #2
|
28 |
|
29 |
+
3.
|
30 |
|
31 |
+
### Support
|
32 |
+
|
33 |
+
Initial funding for wildland burn scar mapping came through the NOAA JPSS/RRPG Fire and Smoke Initiative.
|
34 |
+
This supported the initial tests of BRIDGE maps using dNDVI. Subsequent funding supported the development of dNBR mapping and an effort
|
35 |
+
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).
|
36 |
+
Current funding from the NOAA Weather Program Office (WPO) is supporting the refinement of our Google Earth Engine App (GEE)
|
37 |
+
and integration of GEE burn scar output with AWIPS (see example above) for Weather Forecast Offices, Regional Offices, and the Weather Prediction Center.
|
38 |
+
|
39 |
"""
|
40 |
|
41 |
solara.Markdown(markdown)
|