Christopher Capobianco
commited on
Commit
·
69bbfc9
1
Parent(s):
05d5f7e
Update project description, and enlarge embedded interactive map
Browse files
projects/08_Urban_Safety_Planner.py
CHANGED
@@ -9,16 +9,12 @@ def get_map():
|
|
9 |
|
10 |
st.header('Urban Safety Planner', divider='green')
|
11 |
|
12 |
-
st.markdown("####
|
13 |
-
st.markdown("
|
14 |
-
st.markdown("
|
15 |
-
st.markdown("
|
16 |
-
st.markdown("#### Which Prefectures are Prone to High-Magnitude Earthquakes?")
|
17 |
-
st.markdown("Tokyo has the highest population density, and has experienced some earthquakes")
|
18 |
-
st.markdown("Osaka is relatively less populated, but has experienced stronger earthquakes than Tokyo")
|
19 |
-
st.markdown("Kanagawa's long coastline, as well as relatively high population density and proximity to strong earthquakes, make it a risk for Tsunami")
|
20 |
st.markdown("*This is based off the [Geospatial Analysis](https://www.kaggle.com/learn/geospatial-analysis) course by Kaggle*")
|
21 |
st.divider()
|
22 |
|
23 |
earthquake_html = get_map()
|
24 |
-
components.html(earthquake_html)
|
|
|
9 |
|
10 |
st.header('Urban Safety Planner', divider='green')
|
11 |
|
12 |
+
st.markdown("#### Which High Population Density Prefectures are Prone to High-Magnitude Earthquakes?")
|
13 |
+
st.markdown("Tokyo has the highest population density, and has experienced some earthquakes in the past.")
|
14 |
+
st.markdown("Osaka is relatively less populated, but has experienced stronger earthquakes than Tokyo.")
|
15 |
+
st.markdown("Kanagawa's long coastline, as well as relatively high population density and proximity to strong earthquakes, make it a potential Tsunami risk.")
|
|
|
|
|
|
|
|
|
16 |
st.markdown("*This is based off the [Geospatial Analysis](https://www.kaggle.com/learn/geospatial-analysis) course by Kaggle*")
|
17 |
st.divider()
|
18 |
|
19 |
earthquake_html = get_map()
|
20 |
+
components.html(earthquake_html, height = 450)
|