Spaces:
Sleeping
Sleeping
File size: 972 Bytes
bd01bd5 254ed4c da12340 5d698b5 254ed4c da12340 254ed4c 05caf60 da12340 05caf60 254ed4c bd01bd5 5bda64c bd01bd5 7b61591 da12340 3d03b3d 05caf60 c4ac824 81d914f 7b61591 254ed4c 58f6472 5d698b5 bd01bd5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import streamlit as st
from multiapp import MultiApp
from apps import (
basemaps,
census,
deck,
device_loc,
gee,
gee_datasets,
heatmap,
home,
housing,
raster,
timelapse,
vector,
wms,
)
st.set_page_config(layout="wide")
apps = MultiApp()
# Add all your application here
apps.add_app("Home", home.app)
apps.add_app("Create Timelapse", timelapse.app)
apps.add_app("U.S. Real Estate Data", housing.app)
apps.add_app("U.S. Census Data", census.app)
apps.add_app("Visualize Raster Data", raster.app)
apps.add_app("Visualize Vector Data", vector.app)
apps.add_app("Search Basemaps", basemaps.app)
apps.add_app("Pydeck Gallery", deck.app)
apps.add_app("Heatmaps", heatmap.app)
apps.add_app("Add Web Map Service (WMS)", wms.app)
apps.add_app("Google Earth Engine (GEE)", gee.app)
apps.add_app("Awesome GEE Community Datasets", gee_datasets.app)
apps.add_app("Get Device Location", device_loc.app)
# The main app
apps.run()
|