Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: (deps): Bump geopandas from 0.14.4 to 1.0.1 in /ci #3559

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/doc_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ sphinx-design==0.6.1
sphinx-gallery==0.17.1
myst-parser==4.0.0
netCDF4==1.7.1
geopandas==0.14.4
geopandas==1.0.1
rtree==1.3.0
2 changes: 1 addition & 1 deletion examples/plots/nhc_wind_probabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# cities we selected above. Geopandas provides a spatial join method, which merges the two
# GeoDataFrames and can tell us which wind speed probability polygon each of our city points
# lies within. That information is stored in the 'PERCENTAGE' column below.
cities = geopandas.sjoin(cities, wind_data, how='left', op='within')
cities = geopandas.sjoin(cities, wind_data, how='left', predicate='within')
cities

###########################
Expand Down