Skip to content

Commit

Permalink
Merge pull request #3559 from Unidata/dependabot-pip-ci-geopandas-1.0.1
Browse files Browse the repository at this point in the history
CI: (deps): Bump geopandas from 0.14.4 to 1.0.1 in /ci
  • Loading branch information
dopplershift authored Aug 29, 2024
2 parents 22025a6 + b67ef63 commit 65ef987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 65ef987

Please sign in to comment.