Joris Van den Bossche
Joris Van den Bossche
~This builds upon https://github.com/geopandas/geopandas/pull/2144 (included as a squashed first commit), so for seeing the actual changes for now in this PR, ignore the first commit (-> [subset of the diff](https://github.com/geopandas/geopandas/pull/2353/files/9a126f533ad7761712da3f9a54f50c3b55946bbd..d39c173d2caf377de74d2322269fdb8b14757201)).~...
Not necessarily an issue in the geopandas code itself, but just opening it here for now to track it somewhere. I ran into this in https://github.com/geopandas/dask-geopandas/pull/268 Calling `shapely.geometrycollections` on a...
We did a 0.14.0 release with the idea that this would be the last major 0.x release before a 1.0 release early next year. Given that this next major release...
The `GeometryDtype.na_value` in practice is `None` (this is being returned when accessing a missing value), but the attribute itself it set to NaN. In the past I remember that it...
There have been some discussions recently on the topic of having different "engines" for the actual geometries and geospatial operations (i.e. shapely in current geopandas). Example use cases would be...
Currently, it's not very easy to create a plot based on "categorical" values with custom formatting, such as a user-defined color per category, or other formatting such as line width...
The geometry_type should be "POINT Z" and not just "POINT": ``` In [12]: df = geopandas.GeoDataFrame({'col': [1, 2, 3]}, geometry=geopandas.points_from_xy([1, 2, 3], [2, 3, 4], [1, 1, 1])) In [13]:...
Original report: https://github.com/shapely/shapely/issues/2025 Reproducer with `geosop` using latest main: ``` $ geosop -a "POLYGON ((1 0, 0 6, 1 3, 1 0))" reducePrecision 1.0 POLYGON EMPTY ``` In this case,...
In the shapely test suite, we discovered a new failure when updating our CI from 3.9.4 to the latest 3.9.x bugfix release 3.9.5 (https://github.com/shapely/shapely/pull/1942). Reproducing it with `geosop`. Checking out...
Related to https://github.com/opengeospatial/geoparquet/issues/123 This is incomplete (more parameters should be added) and still draft (the script should be cleaned-up, ensure to add this to the CI to check the generated...