Spaces:
Running
Running
Update text
Browse files- pages/00_home.py +14 -44
- pages/01_datasets.py +52 -0
- pages/{01_gswis.py → 02_explore.py} +0 -0
pages/00_home.py
CHANGED
@@ -7,53 +7,23 @@ def Page():
|
|
7 |
markdown = """
|
8 |
## Global Surface Water Information System (GSWIS)
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
We have used five global datasets viz., ESA, ESRI, JRC, OSM and HydroLAKES,
|
13 |
-
to generate a processed multi-band gridded GSWE dataset at 10 m spatial
|
14 |
-
resolution, with each band corresponding to one of the five datasets used.
|
15 |
-
The dataset comprises of a total of 5153 grids, each grid having a 2°×2° dimension.
|
16 |
-
**Click on the GSWIS tab above to visualize the datasets interactively.**
|
17 |
-
|
18 |
-
### Datasets
|
19 |
-
|
20 |
-
#### ESA
|
21 |
-
- **Description:** ESA Worldcover is a 10 m Sentinel-based global LULC dataset available in gridded format with 11 land cover classes
|
22 |
-
- **Website:** <https://esa-worldcover.org/en/data-access>
|
23 |
-
- **Year:** 2020
|
24 |
-
- **Water Classes:** Permanent water bodies [80], Herbaceous wetland [90], Mangroves [95]
|
25 |
-
- **Band Name:** `esa`
|
26 |
-
|
27 |
-
#### Esri
|
28 |
-
- **Description:** ESRI Global Land cover product is a 10 m Sentinel-based dataset available in gridded format with 10 land cover classes
|
29 |
-
- **Website:** <https://livingatlas.arcgis.com/landcove>
|
30 |
-
- **Year:** 2020
|
31 |
-
- **Water Classes:** Water [1], Flooded vegetation [4]
|
32 |
-
- **Band Name:** `esri`
|
33 |
-
|
34 |
-
#### JRC
|
35 |
-
- **Description:** Landsat-based JRC Yearly Water Classification History is a 30 m surface water extent dataset classified using year-by-year occurrence values from 1984-2021 (Pekel et al., 2016)
|
36 |
-
- **Website:** <https://esa-worldcover.org/en/data-access>
|
37 |
-
- **Year:** 2020
|
38 |
-
- **Water Classes:** Seasonal water [2], Permanent water [3]
|
39 |
-
- **Band Name:** `jrc`
|
40 |
-
|
41 |
-
#### OSM
|
42 |
-
- **Description:** OSM Water Layers is a 90 m gridded global surface water data generated by extracting surface water features from OpenStreetMap (Yamazaki et al., 2019)
|
43 |
-
- **Website:** <https://hydro.iis.u-tokyo.ac.jp/~yamadai/OSM_water>
|
44 |
-
- **Year:** 2019
|
45 |
-
- **Water Classes:** Ocean [1], Large Lake/River [2], Major River [3], Canal [4], Small stream [5]
|
46 |
-
- **Band Name:** `osm`
|
47 |
-
|
48 |
-
#### HydroLakes
|
49 |
-
- **Description:** HydroLAKES is vector Global Lake dataset derived from merged hydrography (Messager et al., 2016)
|
50 |
-
- **Website:** <https://www.hydrosheds.org/>
|
51 |
-
- **Year:** N/A
|
52 |
-
- **Water Classes:** Global Lakes with size of atleast 10 ha
|
53 |
-
- **Band Name:** `hydrolakes`
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
"""
|
58 |
|
59 |
solara.Markdown(markdown)
|
|
|
7 |
markdown = """
|
8 |
## Global Surface Water Information System (GSWIS)
|
9 |
|
10 |
+
The Global Surface Water Information System (GSWIS) brings the emerging regional and global surface water extent datasets under one framework. This global platform allows users to instantaneously and interactively visualize and compare different datasets, understand their variations, and therefore select datasets that may be suitable for user-specific needs. With the FAIR (Findable, Accessible, Interoperable, and Reusable) open science principle at its core, GSWIS aims to maximize our understanding of the world’s surface water resources.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
+

|
13 |
|
14 |
+
### Suggested Citations
|
15 |
|
16 |
+
- Rajib et al. 2023. A call for consistency and integration in global surface water estimates. *Environmental Research Letters*. <https://doi.org/10.1088/1748-9326/ad1722 >
|
17 |
+
- Rajib A, Khare A, Wu Q and Gupta B. 2023. Global Surface Water Information System (GSWIS). Available at: <https://gswis.gishub.org>
|
18 |
+
|
19 |
+
### Acknowledgements
|
20 |
+
|
21 |
+
This work was conducted through funding support from the U.S. Department of Defense (grant # W912HZ2020071) and National Science Foundation (grant # 2336630).
|
22 |
+
|
23 |
+

|
24 |
+
|
25 |
+
|
26 |
+
Last update: December 2023.
|
27 |
"""
|
28 |
|
29 |
solara.Markdown(markdown)
|
pages/01_datasets.py
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import solara
|
2 |
+
|
3 |
+
|
4 |
+
@solara.component
|
5 |
+
def Page():
|
6 |
+
with solara.Column(align="center"):
|
7 |
+
markdown = """
|
8 |
+
|
9 |
+
GSWIS currently houses five global surface water datasets used to generate a processed, multi-band gridded dataset at 10-meter spatial resolution, with each band corresponding to one of the five datasets used. **Click on the Explore tab above to visualize the datasets interactively.**
|
10 |
+
|
11 |
+
### Datasets
|
12 |
+
|
13 |
+
#### European Space Agency (ESA) WorldCover
|
14 |
+
- **Description:** ESA WC is a 10-m Sentinel-based gridded global LULC dataset
|
15 |
+
- **Website:** <https://esa-worldcover.org/en/data-access>
|
16 |
+
- **Reference**: Zanaga et al 2021. <https://doi.org/10.5281/zenodo.5571936>
|
17 |
+
- **Year used in GSWIS:** 2020
|
18 |
+
- **Water Classes used in GSWIS:** Permanent water bodies [80], Herbaceous wetland [90], Mangroves [95]
|
19 |
+
|
20 |
+
#### Environmental Systems Research Institute (ESRI) Global Land Cover(GLC) product
|
21 |
+
- **Description:** ESRI GLC is a 10-m Sentinel-based gridded global LULC dataset
|
22 |
+
- **Website:** <https://livingatlas.arcgis.com/landcove>
|
23 |
+
- **Reference**: Karra et al 2021. <https://doi.org/10.1109/IGARSS47720.2021.9553499>
|
24 |
+
- **Year used in GSWIS:** 2020
|
25 |
+
- **Water Classes used in GSWIS:** Water [1], Flooded vegetation [4]
|
26 |
+
|
27 |
+
#### Joint Research Centre (JRC) Global Surface Water (GSW)
|
28 |
+
- **Description:** GSW is a 30-m Landsat-based gridded global surface water extent dataset
|
29 |
+
- **Website:** <https://global-surface-water.appspot.com/download>
|
30 |
+
- **Reference**: Pekel et al 2016. <https://doi.org/10.1038/nature20584>
|
31 |
+
- **Year used in GSWIS:** 2020
|
32 |
+
- **Water Classes used in GSWIS:** Seasonal water [2], Permanent water [3] from Yearly Water Classification History
|
33 |
+
|
34 |
+
#### OpenStreetMap (OSM) Water Layers
|
35 |
+
- **Description:** OSM is a 90-m gridded global surface water data generated by extracting surface water features from OpenStreetMap
|
36 |
+
- **Website:** <https://hydro.iis.u-tokyo.ac.jp/~yamadai/OSM_water>
|
37 |
+
- **Reference**: Yamazaki et al 2019. <https://doi.org/10.1029/2019WR024873>
|
38 |
+
- **Year used in GSWIS:** 2019
|
39 |
+
- **Water Classes used in GSWIS:** Ocean [1], Large Lake/River [2], Major River [3]
|
40 |
+
|
41 |
+
#### HydroLakes
|
42 |
+
- **Description:** HydroLAKES is vector global lake dataset derived from merged hydrography
|
43 |
+
- **Website:** <https://www.hydrosheds.org/products/hydrolakes>
|
44 |
+
- **Reference**: Messager et al 2016. <https://doi.org/10.1038/ncomms13603 >
|
45 |
+
- **Year used in GSWIS:** HydroLAKES is not associated with any specific time or year
|
46 |
+
- **Water Classes used in GSWIS:** Global Lakes with size of at least 10 ha
|
47 |
+
|
48 |
+
**Note: Numbers indicate the class ID in the original dataset**
|
49 |
+
|
50 |
+
"""
|
51 |
+
|
52 |
+
solara.Markdown(markdown)
|
pages/{01_gswis.py → 02_explore.py}
RENAMED
File without changes
|