Spaces:
Sleeping
Sleeping
Initial commit
Browse files- .github/workflows/sync-hf.yml +1 -1
- README.md +1 -1
- pages/00_home.py +4 -6
.github/workflows/sync-hf.yml
CHANGED
@@ -17,4 +17,4 @@ jobs:
|
|
17 |
- name: Push to hub
|
18 |
env:
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
-
run: git push --force https://giswqs:$HF_TOKEN@huggingface.co/spaces/giswqs/
|
|
|
17 |
- name: Push to hub
|
18 |
env:
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
+
run: git push --force https://giswqs:$HF_TOKEN@huggingface.co/spaces/giswqs/geospatial-dataviz main
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🏃
|
4 |
colorFrom: blue
|
5 |
colorTo: green
|
|
|
1 |
---
|
2 |
+
title: Geospatial Data Visualization
|
3 |
emoji: 🏃
|
4 |
colorFrom: blue
|
5 |
colorTo: green
|
pages/00_home.py
CHANGED
@@ -5,15 +5,13 @@ import solara
|
|
5 |
def Page():
|
6 |
with solara.Column(align="center"):
|
7 |
markdown = """
|
8 |
-
##
|
9 |
|
10 |
### Introduction
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
-
|
15 |
-
- GitHub: <https://github.com/opengeos/solara-template>
|
16 |
-
- Hugging Face: <https://huggingface.co/spaces/giswqs/solara-template>
|
17 |
|
18 |
"""
|
19 |
|
|
|
5 |
def Page():
|
6 |
with solara.Column(align="center"):
|
7 |
markdown = """
|
8 |
+
## An interactive web app for visualizing geospatial data
|
9 |
|
10 |
### Introduction
|
11 |
|
12 |
+
- Web App: <https://giswqs-geospatial-dataviz.hf.space>
|
13 |
+
- GitHub: <https://github.com/opengeos/geospatial-dataviz>
|
14 |
+
- Hugging Face: <https://huggingface.co/spaces/giswqs/geospatial-dataviz>
|
|
|
|
|
15 |
|
16 |
"""
|
17 |
|