danielle-losos commited on
Commit
c3b3150
·
verified ·
1 Parent(s): bf3cf02

Update pages/Home.py

Browse files
Files changed (1) hide show
  1. 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
- ## Earth Engine Web Apps
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
- ### How to deploy this app on Hugging Face Spaces
20
-
21
- 1. Go to <https://huggingface.co/spaces/giswqs/solara-geemap/tree/main> and duplicate the space to your own space.
22
-
23
- ![](https://i.imgur.com/gTg4V2x.png)
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
- ```text
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
- Simply open the file and copy **ALL** the content to the `EARTHENGINE_TOKEN` environment variable.
34
 
35
- ![](https://i.imgur.com/i04gzyH.png)
36
 
37
- ![](https://i.imgur.com/Ex37Ut7.png)
 
 
 
38
 
 
 
39
 
40
- ```python
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
- ![](https://i.imgur.com/DNM36sk.png)
50
-
51
- ![](https://i.imgur.com/KX82lSf.png)
52
 
53
- 4. Add your own apps (*.py) to the `pages` folder.
54
 
55
- 5. Commit and push your changes to the repository. Wait for the space to be built successfully.
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)