Link each point in one GeoPandas dataframe to polygons in another dataframe

I found a way to accomplish this by joining the two data frames using a spatial join

joinDF=gpd.sjoin(pointsDF, polysgdf, how='left',op="within")

Leave a Comment