Top "Geopandas" questions

GeoPandas is an open source project to make working with geospatial data in python easier.

how to successfully install pyproj and geopandas?

I have tried to install geopandas via I python by running !pip install geopandas, but this fails with "python setup.…

python installation geopandas
Error installing geopandas:" A GDAL API version must be specified " in Anaconda

This error raised while installing geopandas. I've looking for its solution on the web, but none of them really explain …

python anaconda conda geopandas
Make a union of polygons in GeoPandas, or Shapely (into a single geometry)

I am trying to find the union of two polygons in GeoPandas and output a single geometry that encompasses points …

python pandas geopandas shapely
GeoPandas Set CRS on Points

Given the following GeoDataFrame: h=pd.DataFrame({'zip':[19152,19047], 'Lat':[40.058841,40.202162], 'Lon':[-75.042164,-74.924594]}) crs='none' geometry = [Point(xy) for xy in …

python-3.x geopandas
Convert geopandas shapely polygon to geojson

I created a circle using geopandas and it returned a shapely polygon: POLYGON: ((...)) I want this same polygon as a …

python geojson geopandas
How to find which points intersect with a polygon in geopandas?

I've been trying to use the "intersects" feature on a geodataframe, looking to see which points lie inside a polygon. …

python geography geopandas
Calculate Distance to Nearest Feature with Geopandas

I'm looking to do the equivalent of the ArcPy Generate Near Table using Geopandas / Shapely. I'm very new to Geopandas …

python pandas shapely geopandas
Error in importing geopandas

I am getting the following error when importing import geopandas as gpd --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <…

python anaconda geopandas
Shapely point geometry in geopandas df to lat/lon columns

I have a geopandas df with a column of shapely point objects. I want to extract the coordinate (lat/lon) …

python gis latitude-longitude geopandas shapely
GeoPandas Label Polygons

Given the shape file available here: I'd like to label each polygon (county) in the map. Is this possible with …

python-3.x matplotlib geopandas