-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Open
Labels
documentationwritten for humanswritten for humansgood first issuesuitable for newcomerssuitable for newcomers
Description
This example here won't run with later versions of geopandas
import plotly.express as px
import geopandas as gpd
geo_df = gpd.read_file(gpd.datasets.get_path('naturalearth_cities'))
px.set_mapbox_access_token(open(".mapbox_token").read())
fig = px.scatter_geo(geo_df,
lat=geo_df.geometry.y,
lon=geo_df.geometry.x,
hover_name="name")
fig.show()
20 error_msg = (
21 "The geopandas.dataset has been deprecated and "
22 "was removed in GeoPandas 1.0. New sample datasets are now available "
23 "in the geodatasets package (https://geodatasets.readthedocs.io/en/latest/)"
24 )
It would be good to have an example that works with earlier and later versions of geopandas
Metadata
Metadata
Assignees
Labels
documentationwritten for humanswritten for humansgood first issuesuitable for newcomerssuitable for newcomers
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
Update geopandas example to support versions >=1.0 (fixes issue plotl…
Update geopandas example to support versions >=1.0 (fixes issue plotl…
live2awesome commentedon Oct 29, 2024
is this issue is resolved ?