Spaces:
Sleeping
Sleeping
Yunus Serhat Bıçakçı
commited on
Commit
·
1abff3d
1
Parent(s):
4bab8a7
update
Browse files- pages/4_Test.py +49 -88
pages/4_Test.py
CHANGED
@@ -1,141 +1,102 @@
|
|
|
|
1 |
import streamlit as st
|
2 |
import leafmap.foliumap as leafmap
|
3 |
import leafmap.colormaps as cm
|
|
|
4 |
|
5 |
st.set_page_config(layout="wide")
|
6 |
|
7 |
st.sidebar.info(
|
8 |
-
|
9 |
- Web App URL: <https://interactive-crime-map.hf.space/>
|
10 |
- HuggingFace repository: <https://huggingface.co/spaces/interactive-crime/map/tree/main>
|
11 |
-
|
12 |
)
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
# Adding a widget to allow users to upload GeoJSON files
|
17 |
uploaded_file = st.file_uploader("Upload a GeoJSON file", type=["geojson"])
|
18 |
|
19 |
# Variable to hold the uploaded GeoJSON data
|
20 |
uploaded_geojson = None
|
|
|
|
|
|
|
21 |
|
22 |
if uploaded_file:
|
23 |
try:
|
24 |
-
# Read the uploaded file and parse as JSON (GeoJSON is a subset of JSON)
|
25 |
uploaded_geojson = json.load(uploaded_file)
|
26 |
-
|
27 |
-
# Basic validation (checking if it's a valid GeoJSON format)
|
28 |
if "features" not in uploaded_geojson:
|
29 |
st.warning("The uploaded file does not seem to be a valid GeoJSON format.")
|
30 |
uploaded_geojson = None
|
31 |
else:
|
32 |
st.success("GeoJSON file uploaded successfully!")
|
33 |
-
|
34 |
except json.JSONDecodeError:
|
35 |
st.error("Failed to decode the uploaded file. Please ensure it's a valid GeoJSON format.")
|
36 |
|
37 |
-
#
|
38 |
-
|
39 |
-
|
40 |
-
map_choices = ["Original Map 1", "Original Map 2"]
|
41 |
if uploaded_geojson:
|
42 |
map_choices.append("Uploaded GeoJSON")
|
43 |
|
44 |
selected_map_1 = st.selectbox("Select data for Map 1", map_choices)
|
45 |
selected_map_2 = st.selectbox("Select data for Map 2", map_choices)
|
46 |
|
47 |
-
|
48 |
-
|
49 |
-
# You'll need to integrate this with the leafmap.foliumap methods you use
|
50 |
-
st.write("Display uploaded GeoJSON on Map 1")
|
51 |
-
|
52 |
-
elif selected_map_1 == "Original Map 1":
|
53 |
-
# Display the original Map 1
|
54 |
-
# This should be the code from your original app that displays the first map
|
55 |
-
st.write("Display original Map 1")
|
56 |
-
|
57 |
-
# ... Similarly for Map 2 and any other maps you have
|
58 |
-
|
59 |
-
# Rest of the application logic follows...
|
60 |
|
61 |
-
|
62 |
-
st.sidebar.title("Contact")
|
63 |
-
st.sidebar.info(
|
64 |
-
"""
|
65 |
-
Yunus Serhat Bıçakçı at [yunusserhat.com](https://yunusserhat.com) | [GitHub](https://github.com/yunusserhat) | [Twitter](https://twitter.com/yunusserhat) | [LinkedIn](https://www.linkedin.com/in/yunusserhat)
|
66 |
-
"""
|
67 |
-
)
|
68 |
-
|
69 |
-
st.title("Comparision of Hate Tweets, Hate Crime Rates and Total Crime Rates")
|
70 |
-
st.markdown(
|
71 |
-
"""
|
72 |
-
These interactive maps illustrate a comparison of overall borough-level rates based on Twitter and London Metropolitan Police Service (MPS) data as of December 2022.
|
73 |
-
|
74 |
-
In the first map shows the representation of hate tweets according to Twitter data, while the second and third maps shows the representation of rates of hate and all crimes according to MPS data.
|
75 |
-
"""
|
76 |
-
)
|
77 |
-
|
78 |
-
row1_col1, row1_col2, row1_col3 = st.columns([1, 1, 1])
|
79 |
-
|
80 |
-
# Twitter Hate Tweets Map
|
81 |
with row1_col1:
|
82 |
-
twitter = "https://raw.githubusercontent.com/yunusserhat/data/main/data/boroughs_count_df_2022_dec.geojson"
|
83 |
m1 = leafmap.Map(center=[51.50, -0.1], zoom=10)
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
93 |
with row1_col2:
|
94 |
-
mps_hate = "https://raw.githubusercontent.com/yunusserhat/data/main/data/mps_hate_2022_dec_count.geojson"
|
95 |
m2 = leafmap.Map(center=[51.50, -0.1], zoom=10)
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
mps_total = "https://raw.githubusercontent.com/yunusserhat/data/main/data/mps2022dec_count.geojson"
|
107 |
-
m3 = leafmap.Map(center=[51.50, -0.1], zoom=10)
|
108 |
-
m3.add_data(
|
109 |
-
mps_total,
|
110 |
-
column="Crime_Number",
|
111 |
-
scheme='Quantiles',
|
112 |
-
cmap='YlOrRd',
|
113 |
-
legend_title='Total Crime Number'
|
114 |
-
)
|
115 |
-
|
116 |
-
row2_col1, row2_col2, row2_col3 = st.columns([1, 1, 1])
|
117 |
-
|
118 |
-
# Setting the zoom and center for each map
|
119 |
longitude = -0.1
|
120 |
latitude = 51.50
|
121 |
zoomlevel = st.number_input("Zoom", 0, 20, 10)
|
122 |
|
|
|
123 |
with row2_col1:
|
124 |
m1.set_center(longitude, latitude, zoomlevel)
|
125 |
-
|
126 |
with row2_col2:
|
127 |
m2.set_center(longitude, latitude, zoomlevel)
|
128 |
|
129 |
-
|
130 |
-
m3.set_center(longitude, latitude, zoomlevel)
|
131 |
-
|
132 |
-
row3_col1, row3_col2, row3_col3 = st.columns([1, 1, 1])
|
133 |
-
|
134 |
with row3_col1:
|
135 |
m1.to_streamlit()
|
136 |
-
|
137 |
with row3_col2:
|
138 |
m2.to_streamlit()
|
139 |
-
|
140 |
-
with row3_col3:
|
141 |
-
m3.to_streamlit()
|
|
|
1 |
+
|
2 |
import streamlit as st
|
3 |
import leafmap.foliumap as leafmap
|
4 |
import leafmap.colormaps as cm
|
5 |
+
import json
|
6 |
|
7 |
st.set_page_config(layout="wide")
|
8 |
|
9 |
st.sidebar.info(
|
10 |
+
'''
|
11 |
- Web App URL: <https://interactive-crime-map.hf.space/>
|
12 |
- HuggingFace repository: <https://huggingface.co/spaces/interactive-crime/map/tree/main>
|
13 |
+
'''
|
14 |
)
|
15 |
|
16 |
+
st.sidebar.title("Contact")
|
17 |
+
st.sidebar.info(
|
18 |
+
'''
|
19 |
+
Yunus Serhat Bıçakçı at [yunusserhat.com](https://yunusserhat.com) | [GitHub](https://github.com/yunusserhat) | [Twitter](https://twitter.com/yunusserhat) | [LinkedIn](https://www.linkedin.com/in/yunusserhat)
|
20 |
+
'''
|
21 |
+
)
|
22 |
+
|
23 |
+
st.title("Comparision of Hate Tweets, Hate Crime Rates and Total Crime Rates")
|
24 |
+
st.markdown(
|
25 |
+
'''
|
26 |
+
These interactive maps illustrate a comparison of overall borough-level rates based on Twitter and London Metropolitan Police Service (MPS) data as of December 2022.
|
27 |
+
|
28 |
+
In the first map shows the representation of hate tweets according to Twitter data, while the second and third maps show the representation of rates of hate and all crimes according to MPS data.
|
29 |
+
'''
|
30 |
+
)
|
31 |
|
32 |
# Adding a widget to allow users to upload GeoJSON files
|
33 |
uploaded_file = st.file_uploader("Upload a GeoJSON file", type=["geojson"])
|
34 |
|
35 |
# Variable to hold the uploaded GeoJSON data
|
36 |
uploaded_geojson = None
|
37 |
+
map_1 = "https://raw.githubusercontent.com/yunusserhat/data/main/data/boroughs_count_df_2022_dec.geojson"
|
38 |
+
map_2 = "https://raw.githubusercontent.com/yunusserhat/data/main/data/mps_hate_2022_dec_count.geojson"
|
39 |
+
map_3 = "https://raw.githubusercontent.com/yunusserhat/data/main/data/mps2022dec_count.geojson"
|
40 |
|
41 |
if uploaded_file:
|
42 |
try:
|
|
|
43 |
uploaded_geojson = json.load(uploaded_file)
|
|
|
|
|
44 |
if "features" not in uploaded_geojson:
|
45 |
st.warning("The uploaded file does not seem to be a valid GeoJSON format.")
|
46 |
uploaded_geojson = None
|
47 |
else:
|
48 |
st.success("GeoJSON file uploaded successfully!")
|
|
|
49 |
except json.JSONDecodeError:
|
50 |
st.error("Failed to decode the uploaded file. Please ensure it's a valid GeoJSON format.")
|
51 |
|
52 |
+
# Create a list of choices for the user to select from
|
53 |
+
map_choices = ["Original Map 1", "Original Map 2", "Original Map 3"]
|
|
|
|
|
54 |
if uploaded_geojson:
|
55 |
map_choices.append("Uploaded GeoJSON")
|
56 |
|
57 |
selected_map_1 = st.selectbox("Select data for Map 1", map_choices)
|
58 |
selected_map_2 = st.selectbox("Select data for Map 2", map_choices)
|
59 |
|
60 |
+
# Integrate with leafmap.foliumap to display the selected map dataset
|
61 |
+
row1_col1, row1_col2 = st.columns([1, 1])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
+
# Display Map 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
with row1_col1:
|
|
|
65 |
m1 = leafmap.Map(center=[51.50, -0.1], zoom=10)
|
66 |
+
if selected_map_1 == "Uploaded GeoJSON":
|
67 |
+
m1.add_data(uploaded_geojson)
|
68 |
+
elif selected_map_1 == "Original Map 1":
|
69 |
+
m1.add_data(map_1)
|
70 |
+
elif selected_map_1 == "Original Map 2":
|
71 |
+
m1.add_data(map_2)
|
72 |
+
else:
|
73 |
+
m1.add_data(map_3)
|
74 |
+
|
75 |
+
# Display Map 2
|
76 |
with row1_col2:
|
|
|
77 |
m2 = leafmap.Map(center=[51.50, -0.1], zoom=10)
|
78 |
+
if selected_map_2 == "Uploaded GeoJSON":
|
79 |
+
m2.add_data(uploaded_geojson)
|
80 |
+
elif selected_map_2 == "Original Map 1":
|
81 |
+
m2.add_data(map_1)
|
82 |
+
elif selected_map_2 == "Original Map 2":
|
83 |
+
m2.add_data(map_2)
|
84 |
+
else:
|
85 |
+
m2.add_data(map_3)
|
86 |
+
|
87 |
+
# Additional map configurations and display
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
longitude = -0.1
|
89 |
latitude = 51.50
|
90 |
zoomlevel = st.number_input("Zoom", 0, 20, 10)
|
91 |
|
92 |
+
row2_col1, row2_col2 = st.columns([1, 1])
|
93 |
with row2_col1:
|
94 |
m1.set_center(longitude, latitude, zoomlevel)
|
|
|
95 |
with row2_col2:
|
96 |
m2.set_center(longitude, latitude, zoomlevel)
|
97 |
|
98 |
+
row3_col1, row3_col2 = st.columns([1, 1])
|
|
|
|
|
|
|
|
|
99 |
with row3_col1:
|
100 |
m1.to_streamlit()
|
|
|
101 |
with row3_col2:
|
102 |
m2.to_streamlit()
|
|
|
|
|
|