gregoiredavid / france-geojson

Contours des régions, départements, arrondissements, cantons et communes de France (métropole et départements d'outre-mer) au format GeoJSON
https://france-geojson.gregoiredavid.fr
733 stars 410 forks source link

Communes - Plotly - Bug #43

Open Lefort-Antoine opened 1 year ago

Lefort-Antoine commented 1 year ago

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() `