gdf.buffer(buffer_dist)
but I am seeing: "UserWarning: Geometry is in a geographic CRS. Results from 'buffer' are likely incorrect. ..." Is there a way that I can tell GeoPandas that my data is not geospatial and should be in euclidean space?
None
as gdf.crs = None
.
ImportError: DLL load failed while importing ogrext: The specified procedure could not be found.
Everything seems to work fine on local machines when installing the environment, so it might be a GA issue. Has any of you experienced something similar and if yes, have you found a solution to fix this? You can find the error logs here: https://github.com/r5py/r5py/runs/7856124475?check_suite_focus=truepytest
: https://github.com/r5py/r5py/pull/149#issuecomment-1216617678
shapely==2.0a1
alongside GeoPandas? Would be nice to start using some of the new features from shapely
v2 but currently clashes with GeoPandas. I see there is a pull request geopandas/geopandas#2275 working on this, so maybe this will be released into a prerelease at some point in the near-ish future?
Hey guys, quick question about runtime performance improvement for pygeos:
is it possible to store pygeos objects, such as Polygons, as memory-mapped files? Given that I have bunch of planes growing throughout simulation, but not every part of polygon is accessed or written at each time step, it would be great if it can be mapped to memory, such as numpy memory mapped arrays...