Open Lefort-Antoine opened 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() `
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() `