Spaces:
Sleeping
Sleeping
Nguyen Thai Thao Uyen
commited on
Commit
·
60d3409
1
Parent(s):
3839ddb
Test dashboard
Browse files- app.py +202 -151
- requirements.txt +6 -4
- shared.py +38 -0
app.py
CHANGED
@@ -1,151 +1,202 @@
|
|
1 |
-
|
2 |
-
from
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
import
|
7 |
-
import
|
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 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
@
|
57 |
-
def
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import ipyleaflet as L
|
2 |
+
from faicons import icon_svg
|
3 |
+
from geopy.distance import geodesic, great_circle
|
4 |
+
from shared import BASEMAPS, CITIES
|
5 |
+
from shiny import reactive
|
6 |
+
from shiny.express import input, render, ui
|
7 |
+
from shinywidgets import render_widget
|
8 |
+
|
9 |
+
city_names = sorted(list(CITIES.keys()))
|
10 |
+
|
11 |
+
ui.page_opts(title="Location Distance Calculator", fillable=True)
|
12 |
+
{"class": "bslib-page-dashboard"}
|
13 |
+
|
14 |
+
with ui.sidebar():
|
15 |
+
ui.input_selectize("loc1", "Location 1", choices=city_names, selected="New York")
|
16 |
+
ui.input_selectize("loc2", "Location 2", choices=city_names, selected="London")
|
17 |
+
ui.input_selectize(
|
18 |
+
"basemap",
|
19 |
+
"Choose a basemap",
|
20 |
+
choices=list(BASEMAPS.keys()),
|
21 |
+
selected="WorldImagery",
|
22 |
+
)
|
23 |
+
ui.input_dark_mode(mode="dark")
|
24 |
+
|
25 |
+
with ui.layout_column_wrap(fill=False):
|
26 |
+
with ui.value_box(showcase=icon_svg("globe"), theme="gradient-blue-indigo"):
|
27 |
+
"Great Circle Distance"
|
28 |
+
|
29 |
+
@render.text
|
30 |
+
def great_circle_dist():
|
31 |
+
circle = great_circle(loc1xy(), loc2xy())
|
32 |
+
return f"{circle.kilometers.__round__(1)} km"
|
33 |
+
|
34 |
+
with ui.value_box(showcase=icon_svg("ruler"), theme="gradient-blue-indigo"):
|
35 |
+
"Geodisic Distance"
|
36 |
+
|
37 |
+
@render.text
|
38 |
+
def geo_dist():
|
39 |
+
dist = geodesic(loc1xy(), loc2xy())
|
40 |
+
return f"{dist.kilometers.__round__(1)} km"
|
41 |
+
|
42 |
+
with ui.value_box(showcase=icon_svg("mountain"), theme="gradient-blue-indigo"):
|
43 |
+
"Altitude Difference"
|
44 |
+
|
45 |
+
@render.text
|
46 |
+
def altitude():
|
47 |
+
try:
|
48 |
+
return f'{loc1()["altitude"] - loc2()["altitude"]} m'
|
49 |
+
except TypeError:
|
50 |
+
return "N/A (altitude lookup failed)"
|
51 |
+
|
52 |
+
|
53 |
+
with ui.card():
|
54 |
+
ui.card_header("Map (drag the markers to change locations)")
|
55 |
+
|
56 |
+
@render_widget
|
57 |
+
def map():
|
58 |
+
return L.Map(zoom=4, center=(0, 0))
|
59 |
+
|
60 |
+
|
61 |
+
# Reactive values to store location information
|
62 |
+
loc1 = reactive.value()
|
63 |
+
loc2 = reactive.value()
|
64 |
+
|
65 |
+
|
66 |
+
# Update the reactive values when the selectize inputs change
|
67 |
+
@reactive.effect
|
68 |
+
def _():
|
69 |
+
loc1.set(CITIES.get(input.loc1(), loc_str_to_coords(input.loc1())))
|
70 |
+
loc2.set(CITIES.get(input.loc2(), loc_str_to_coords(input.loc2())))
|
71 |
+
|
72 |
+
|
73 |
+
# When a marker is moved, the input value gets updated to "lat, lon",
|
74 |
+
# so we decode that into a dict (and also look up the altitude)
|
75 |
+
def loc_str_to_coords(x: str) -> dict:
|
76 |
+
latlon = x.split(", ")
|
77 |
+
if len(latlon) != 2:
|
78 |
+
return {}
|
79 |
+
|
80 |
+
lat = float(latlon[0])
|
81 |
+
lon = float(latlon[1])
|
82 |
+
|
83 |
+
try:
|
84 |
+
import requests
|
85 |
+
|
86 |
+
query = f"https://api.open-elevation.com/api/v1/lookup?locations={lat},{lon}"
|
87 |
+
r = requests.get(query).json()
|
88 |
+
altitude = r["results"][0]["elevation"]
|
89 |
+
except Exception:
|
90 |
+
altitude = None
|
91 |
+
|
92 |
+
return {"latitude": lat, "longitude": lon, "altitude": altitude}
|
93 |
+
|
94 |
+
|
95 |
+
# Convenient way to get the lat/lons as a tuple
|
96 |
+
@reactive.calc
|
97 |
+
def loc1xy():
|
98 |
+
return loc1()["latitude"], loc1()["longitude"]
|
99 |
+
|
100 |
+
|
101 |
+
@reactive.calc
|
102 |
+
def loc2xy():
|
103 |
+
return loc2()["latitude"], loc2()["longitude"]
|
104 |
+
|
105 |
+
|
106 |
+
# Add marker for first location
|
107 |
+
@reactive.effect
|
108 |
+
def _():
|
109 |
+
update_marker(map.widget, loc1xy(), on_move1, "loc1")
|
110 |
+
|
111 |
+
|
112 |
+
# Add marker for second location
|
113 |
+
@reactive.effect
|
114 |
+
def _():
|
115 |
+
update_marker(map.widget, loc2xy(), on_move2, "loc2")
|
116 |
+
|
117 |
+
|
118 |
+
# Add line and fit bounds when either marker is moved
|
119 |
+
@reactive.effect
|
120 |
+
def _():
|
121 |
+
update_line(map.widget, loc1xy(), loc2xy())
|
122 |
+
|
123 |
+
|
124 |
+
# If new bounds fall outside of the current view, fit the bounds
|
125 |
+
@reactive.effect
|
126 |
+
def _():
|
127 |
+
l1 = loc1xy()
|
128 |
+
l2 = loc2xy()
|
129 |
+
|
130 |
+
lat_rng = [min(l1[0], l2[0]), max(l1[0], l2[0])]
|
131 |
+
lon_rng = [min(l1[1], l2[1]), max(l1[1], l2[1])]
|
132 |
+
new_bounds = [
|
133 |
+
[lat_rng[0], lon_rng[0]],
|
134 |
+
[lat_rng[1], lon_rng[1]],
|
135 |
+
]
|
136 |
+
|
137 |
+
b = map.widget.bounds
|
138 |
+
if len(b) == 0:
|
139 |
+
map.widget.fit_bounds(new_bounds)
|
140 |
+
elif (
|
141 |
+
lat_rng[0] < b[0][0]
|
142 |
+
or lat_rng[1] > b[1][0]
|
143 |
+
or lon_rng[0] < b[0][1]
|
144 |
+
or lon_rng[1] > b[1][1]
|
145 |
+
):
|
146 |
+
map.widget.fit_bounds(new_bounds)
|
147 |
+
|
148 |
+
|
149 |
+
# Update the basemap
|
150 |
+
@reactive.effect
|
151 |
+
def _():
|
152 |
+
update_basemap(map.widget, input.basemap())
|
153 |
+
|
154 |
+
|
155 |
+
# ---------------------------------------------------------------
|
156 |
+
# Helper functions
|
157 |
+
# ---------------------------------------------------------------
|
158 |
+
|
159 |
+
|
160 |
+
def update_marker(map: L.Map, loc: tuple, on_move: object, name: str):
|
161 |
+
remove_layer(map, name)
|
162 |
+
m = L.Marker(location=loc, draggable=True, name=name)
|
163 |
+
m.on_move(on_move)
|
164 |
+
map.add_layer(m)
|
165 |
+
|
166 |
+
|
167 |
+
def update_line(map: L.Map, loc1: tuple, loc2: tuple):
|
168 |
+
remove_layer(map, "line")
|
169 |
+
map.add_layer(
|
170 |
+
L.Polyline(locations=[loc1, loc2], color="blue", weight=2, name="line")
|
171 |
+
)
|
172 |
+
|
173 |
+
|
174 |
+
def update_basemap(map: L.Map, basemap: str):
|
175 |
+
for layer in map.layers:
|
176 |
+
if isinstance(layer, L.TileLayer):
|
177 |
+
map.remove_layer(layer)
|
178 |
+
map.add_layer(L.basemap_to_tiles(BASEMAPS[input.basemap()]))
|
179 |
+
|
180 |
+
|
181 |
+
def remove_layer(map: L.Map, name: str):
|
182 |
+
for layer in map.layers:
|
183 |
+
if layer.name == name:
|
184 |
+
map.remove_layer(layer)
|
185 |
+
|
186 |
+
|
187 |
+
def on_move1(**kwargs):
|
188 |
+
return on_move("loc1", **kwargs)
|
189 |
+
|
190 |
+
|
191 |
+
def on_move2(**kwargs):
|
192 |
+
return on_move("loc2", **kwargs)
|
193 |
+
|
194 |
+
|
195 |
+
# When the markers are moved, update the selectize inputs to include the new
|
196 |
+
# location (which results in the locations() reactive value getting updated,
|
197 |
+
# which invalidates any downstream reactivity that depends on it)
|
198 |
+
def on_move(id, **kwargs):
|
199 |
+
loc = kwargs["location"]
|
200 |
+
loc_str = f"{loc[0]}, {loc[1]}"
|
201 |
+
choices = city_names + [loc_str]
|
202 |
+
ui.update_selectize(id, selected=loc_str, choices=choices)
|
requirements.txt
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
-
shiny
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
1 |
+
shiny
|
2 |
+
shinywidgets
|
3 |
+
ipyleaflet
|
4 |
+
geopy
|
5 |
+
faicons
|
6 |
+
requests
|
shared.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from ipyleaflet import basemaps
|
2 |
+
|
3 |
+
BASEMAPS = {
|
4 |
+
"WorldImagery": basemaps.Esri.WorldImagery,
|
5 |
+
"Mapnik": basemaps.OpenStreetMap.Mapnik,
|
6 |
+
"Positron": basemaps.CartoDB.Positron,
|
7 |
+
"DarkMatter": basemaps.CartoDB.DarkMatter,
|
8 |
+
"NatGeoWorldMap": basemaps.Esri.NatGeoWorldMap,
|
9 |
+
"France": basemaps.OpenStreetMap.France,
|
10 |
+
"DE": basemaps.OpenStreetMap.DE,
|
11 |
+
}
|
12 |
+
|
13 |
+
|
14 |
+
CITIES = {
|
15 |
+
"New York": {"latitude": 40.7128, "longitude": -74.0060, "altitude": 33},
|
16 |
+
"London": {"latitude": 51.5074, "longitude": -0.1278, "altitude": 36},
|
17 |
+
"Paris": {"latitude": 48.8566, "longitude": 2.3522, "altitude": 35},
|
18 |
+
"Tokyo": {"latitude": 35.6895, "longitude": 139.6917, "altitude": 44},
|
19 |
+
"Sydney": {"latitude": -33.8688, "longitude": 151.2093, "altitude": 39},
|
20 |
+
"Los Angeles": {"latitude": 34.0522, "longitude": -118.2437, "altitude": 71},
|
21 |
+
"Berlin": {"latitude": 52.5200, "longitude": 13.4050, "altitude": 34},
|
22 |
+
"Rome": {"latitude": 41.9028, "longitude": 12.4964, "altitude": 21},
|
23 |
+
"Beijing": {"latitude": 39.9042, "longitude": 116.4074, "altitude": 44},
|
24 |
+
"Moscow": {"latitude": 55.7558, "longitude": 37.6176, "altitude": 156},
|
25 |
+
"Cairo": {"latitude": 30.0444, "longitude": 31.2357, "altitude": 23},
|
26 |
+
"Rio de Janeiro": {"latitude": -22.9068, "longitude": -43.1729, "altitude": 8},
|
27 |
+
"Toronto": {"latitude": 43.6511, "longitude": -79.3832, "altitude": 76},
|
28 |
+
"Dubai": {"latitude": 25.2769, "longitude": 55.2963, "altitude": 52},
|
29 |
+
"Mumbai": {"latitude": 19.0760, "longitude": 72.8777, "altitude": 14},
|
30 |
+
"Seoul": {"latitude": 37.5665, "longitude": 126.9780, "altitude": 38},
|
31 |
+
"Madrid": {"latitude": 40.4168, "longitude": -3.7038, "altitude": 667},
|
32 |
+
"Amsterdam": {"latitude": 52.3676, "longitude": 4.9041, "altitude": -2},
|
33 |
+
"Buenos Aires": {"latitude": -34.6037, "longitude": -58.3816, "altitude": 25},
|
34 |
+
"Stockholm": {"latitude": 59.3293, "longitude": 18.0686, "altitude": 14},
|
35 |
+
"Boulder": {"latitude": 40.0150, "longitude": -105.2705, "altitude": 1634},
|
36 |
+
"Lhasa": {"latitude": 29.6500, "longitude": 91.1000, "altitude": 3650},
|
37 |
+
"Khatmandu": {"latitude": 27.7172, "longitude": 85.3240, "altitude": 1400},
|
38 |
+
}
|