giswqs commited on
Commit
a5ed0cf
β€’
1 Parent(s): bdc1f06

Initial commit

Browse files
Files changed (3) hide show
  1. .github/workflows/sync-hf.yml +1 -1
  2. README.md +1 -1
  3. 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/solara-template main
 
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: Solara Template
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
- ## A Solara Template for Geospatial Applications
9
 
10
  ### Introduction
11
 
12
- **A collection of [Solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
13
-
14
- - Web App: <https://giswqs-solara-template.hf.space>
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