sanitary / main.py
analist's picture
Create main.py
60a293b verified
raw
history blame
668 Bytes
import pandas as pd
import plotly.express as px
import json
import geopandas as gpd
import folium
from IPython.display import display
# Specify the path to your GeoJSON file
geojson_file_path = 'BNDA_TGO_2017-06-29_lastupdate.geojson'
geojson_data = json.load(open(geojson_file_path, "r"))
# Read the GeoJSON file using geopandas
gdf = gpd.read_file(geojson_file_path)
new_df = pd.read_csv('new_df.csv')
fig = px.choropleth(
new_df,
locations="quartier_id",
geojson=geojson_data,
color="scores",
hover_name="quartier",
hover_data=["scores"],
title="Score Sanitaire au Togo",
)
fig.update_geos(fitbounds="locations")
st.plotly_chart(fig)