-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstr_app.py
More file actions
executable file
·214 lines (171 loc) · 9.57 KB
/
Copy pathstr_app.py
File metadata and controls
executable file
·214 lines (171 loc) · 9.57 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# for web
import streamlit as st
import streamlit.components.v1 as components
import webbrowser
# for data
import pandas as pd
from sklearn.preprocessing import StandardScaler
# for viz
import branca.colormap as cm
# files
from streamlit_back import m_opening_final as m_op_f
from streamlit_graphics import spider_plot as s_pl
from streamlit_graphics import main_map as map
from streamlit_front import load_css as load
from streamlit_graphics import ranking_table as r_table
# ----------------------------------------------------------------------------------------------------------- SET WEB STRUCTURE
st.beta_set_page_config(layout="wide")
c1, c2 = st.beta_columns((1, 4))
load.local_css("streamlit_front/style.css")
# ----------------------------------------------------------------------------------------------------------- GLOBAL VARIABLES
GITHUB_REPOSITORY = 'https://github.com/LAMDAMielgo/ih_datamadpt_FinalProyect'
CLEAN_DATA_PATH = 'data/clean' # three files (there should be only two: catastro and arturo). DIFFERENT SHAPES
LABLD_DATA_PATH = 'data/labelled' # two files: clusters from catastro and clusters from all data. DIFFERENT SHAPES
MODEL_DATA_PATH = 'data/modelbase' # one file: data with all columns from arturo and catastro. SHAPE 90.5% of Catastro Data
FINAL_DATA_PATH = 'data/final_streamlit'
NAMES_DICT = {
'cadastralparcel.geojson': 'CAD_PA',
'otherconstruction.geojson': 'O_CONS',
'buildingpart.geojson': 'P_BU',
'building.geojson': 'BU',
'cadastralzoning.geojson': 'CAD_ZO',
'28900.geojson': 'MAD',
'building_points.geojson': 'BU_POINTS',
'arturo.geojson': 'ARTURO_DF',
'building_polygs.geojson': 'BU_POLYGONS',
'building_parcls.geojson': 'BU_PARCELS',
'bu_parcel_epsg3857.geojson': 'BU_PARCELS',
}
MADRID_EPSG = 25830
STATE = 42
# ---------------------------------------------------------------------------------------------------------- LOAD FINAL GDF
@st.cache(allow_output_mutation=True)
def load_data():
bu_parcel = m_op_f.getting_final_geoframes(FINAL_DATA_PATH)
# NOTES sobre data perdida
# Principalmente no ha cogido El pardo, la zona de Barajas y solares vacíos dl sur
return bu_parcel
bu_parcel = load_data()
# ---------------------------------------------------------------------------------------------------------- BASE COLORS
CUSTOM_CPal = ['#F2BF6C',
"#F5E6CB", "#F4DCC7", "#F4D3C3", "#F3C9C0", "#F3C0BC", "#F2B6B8", "#F2ADB4", "#F1A3B1",
"#F19AAD", "#F090A9", "#E387A6", "#D57DA3", "#C874A1", "#BB6A9E", "#AD619B", "#A05798",
"#934E96", "#854493", "#783B90", "#6A318D", "#5D288A", "#501E88", "#421585", "#350B82"][::-1]
LinearCMAP = cm.LinearColormap(CUSTOM_CPal, index=[i / len(CUSTOM_CPal) for i in range(0, len(CUSTOM_CPal))])
CPAL = [LinearCMAP(i / len(bu_parcel)) for i in range(0, len(bu_parcel))]
st.markdown("""<style>
.reportview-container {
background-image: linear-gradient(#eee, #eee);
color: #000000;
text-align: center;
}</style>""", unsafe_allow_html=True)
# ----------------------------------------------------------------------------------------------------------- C1
with c1:
st.markdown("<pre class='highlight_title'>"
"<span class= 'bold'><span class='title'><br> ·UQO· </span><br>"
"<span class= 'subtitle'> urban quality operational tool <br>"
"~</span></span><br><br>"
"<span class= 'subtitle'> likeability of urban morphology based <br> on an <span class= 'bold'>open citizen survey</span></pre>"
, unsafe_allow_html=True)
st.markdown("<pre class='highlight_text'>"
"<span class='cuerpo'>"
"This project facilitates the creation and<br>"
"extraction of knowledge that comes from collective<br>"
"intelligence thank to the application of two machine<br>"
"learning models.<br><br>"
"This is a tool that facilitates citizen action and<br>"
"provides insight to help in the decision making process<br>"
"of the development and management of our cities.<br><br>"
"The map display the best clusterization obtained,<br>"
"highlighting the urban quality value obtained<br>"
"through the image survey done to citizens. <br>"
"</span></span></pre>"
, unsafe_allow_html=True)
st.markdown(f"<span class='bold'><br>URBAN QUALITY MAP KEY<br></span>"
f"<div class='legend' style='position: static; height: 20px;'>"
f"<span class='bold'> - {100 * ' '} + </span>", unsafe_allow_html=True)
st.markdown(f"<br><span class='bold'>FILTER CONTROLS<br> ~ <br></span>", unsafe_allow_html=True)
# FILTERS FOR MAP IN HERE
uses_to_show = st.selectbox(f"CHARACTERISTIC USE", ('all', 'residential', 'terciary'))
# !!!!!!!
#cluster_all = bu_parcel.groupby('cluster_build').describe()[
# ['n_BuildingUnits', 'n_Dwellings', 'nFloors_AG', 'nFloors_BG', 'area_m2c', 'area_m2p']].T
#values_to_hold = ['50%', 'min', 'max']
#tables_to_spider_plot = [pd.DataFrame(StandardScaler() \
# .fit_transform(cluster_all \
# .iloc[cluster_all.index \
# .isin([val], level=1)].T)) for val in values_to_hold]
# s_pl.make_spider_plot(table=tables_to_spider_plot[0],
# table_min=tables_to_spider_plot[1],
# table_max=tables_to_spider_plot[2],
# row=morpho_cluster,
# title=f'Group {morpho_cluster + 1}',
# color=['#350B82', '#f63366', '#F19AAD'],
# # CAP[0:88:20]
# # Selected three colors because of control
# alpha=[0.25, 0.30, 0.45])
# ----------------------------------------------------------------------------------------------------------- FILTER FOR GDF
# SET GEODATAFRAME TO SHOW
if uses_to_show == 'all':
gdf_to_show = bu_parcel
elif uses_to_show == 'terciary':
filtr = (bu_parcel['currentUse'] != 'residential')
gdf_to_show = bu_parcel[filtr]
elif uses_to_show == 'residential':
filtr = (bu_parcel['currentUse'] == uses_to_show)
gdf_to_show = bu_parcel[filtr]
else:
print("Error in uses filter")
# ----------------------------------------------------------------------------------------------------------- EXPANDER
my_expander = st.beta_expander(f" WHICH URBAN PARAMETERS MOST IMPACT ON QUALITY? {100 * '/'}")
with my_expander:
r_table.ranking_table(gdf=gdf_to_show,
col_to_filtr='cluster_all',
linearcolormap=LinearCMAP)
# RENDER MAIN TABLE
HtmlFile_table = open("streamlit_graphics/ranking_fig.html", 'r', encoding='utf-8')
components.html(HtmlFile_table.read(),
width=2500,
height=750,
scrolling=False)
# ----------------------------------------------------------------------------------------------------------- COLUMN 2
# PLACE MAP AND TABLES
with c2:
# RENDER MAIN MAP
map.get_main_map(gfd=gdf_to_show,
center_location=[40.4168, -3.7038],
tile='CartoDB PositronNoLabels',
color_palette=CPAL)
HtmlFile_map = open("streamlit_graphics/map_to_render.html", 'r', encoding='utf-8')
components.html(HtmlFile_map.read(),
width=2000,
height=850,
scrolling=False)
# ----------------------------------------------------------------------------------------------------------- SIDEBAR
st.markdown("""<style>
.sidebar .sidebar-content {
background-image: linear-gradient(25deg, hsla(344, 92%, 58%, 1) 5%, hsla(1, 72%, 87%, 1) 100%);
color: white;
}</style>""", unsafe_allow_html=True)
st.sidebar.markdown("<p style='font-size:24px'>⭐</p><br>"
"<span class= 'bold'> CREDITS <br>~<br><br>"
"This is my final proyect from IronHack Data Science's Bootcamp<br>~<br><br></span>"
"This projects has been posible thanks to the efford and <br>"
"open data made for "
"<span class= 'bold'><a href='http://arturo.300000kms.net/'>ARTURO</a></span>"
"<br> done by: <br><br>"
"<span class= 'bold'> 300000kms + cotec_c </span>"
"<br>for<br>"
"<span class= 'bold'>#Imperidble_03</span><br><br><br>", unsafe_allow_html=True)
st.sidebar.markdown("<p style='font-size:24px'>⚡</p>"
"The public citizen survey<br>can be downloaded<br>"
"<span class='bold'><a href='http://www.atnight.ws/_imperdible/out/votes.json'>here</a></span>"
, unsafe_allow_html=True)
st.sidebar.markdown("Last update:<br>30/07/2020", unsafe_allow_html=True)
st.sidebar.markdown("<p style='font-size:24px'>✨</p><br>"
"Take part in the survey<br><br>"
"<a href='http://arturo.300000kms.net/app/index.html'>"
"<img border='0' src='http://arturo.300000kms.net/img/qr.png' width='150' height='150'></a>"
"<br><br><br><br>", unsafe_allow_html=True)
if st.sidebar.button("+"):
webbrowser.open_new_tab(GITHUB_REPOSITORY)