You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Je cherche a tracer les communes-version-simplifiee via Python, geopandas et Plotly.
Je ne comprend pas pouquoi communes ne s'affiche pas.
Je peux afficher des groupes de communes mais l'ensemble ne fonctionne pas.
Bonjour,
Je cherche a tracer les communes-version-simplifiee via Python, geopandas et Plotly.
Je ne comprend pas pouquoi communes ne s'affiche pas.
Je peux afficher des groupes de communes mais l'ensemble ne fonctionne pas.
Auriez vous une idée ?
`
communesgeo_path = os.path.join("resources", "france-geojson-master", "communes-version-simplifiee.geojson")
import json
with open(communesgeo_path, "r") as f:
communesgeo_data = json.load(f)
import geopandas as gpd
geo_df = gpd.GeoDataFrame.from_features(
communesgeo_data["features"]
)
fig = px.choropleth_mapbox(geo_df ,
geojson=geo_df .geometry,
locations=geo_df .index,
color="code",
center={"lat": 46.227638, "lon": 2.213749},
mapbox_style="open-street-map",
zoom=8.5)
fig.show()
`
The text was updated successfully, but these errors were encountered: