Joris Van den Bossche

Results 844 comments of Joris Van den Bossche

Hmm, from testing with cs2cs, it seems this has something to do with ignoring z (EPSG:4976 defines a Z axis): ``` $ echo 59.32512 18.07109 | cs2cs EPSG:4326 EPSG:4976 3101088.24...

> how would this breaking change mix in with this library's release schedule? geopandas hasn't had a release in a very long time. Planning a release in the next days...

The problem with a DeprecationWarning is that then there is not really a way to *not* get it (to know that the user is ok with dropping them), so I...

Given there is some support for option 2 (dropping the index to be consistent with pandas, user can do `reset_index()` to preserve them), I would like to go forward with...

Do you have the full traceback? If it's only about a single keyword, it might also be relatively easy to fix that in geopandas to avoid this small annoyance.

It seems the change to have `location` to be a non-required keyword was done in https://github.com/python-visualization/folium/pull/957, which was merged a bit less than a year ago (which I think corresponds...

Ah, that is "expected", because you are then using dask's built-in "pyarrow" engine, and we actually extend that engine to handle the geometry dtype properly. But of course, we should...

Do you have a reproducible example? Or can you show the stacktrace if you turn the warning into an error? I don't see anything with this simple example (using master...

Ah, yes, that seems indeed something to solve in geopandas (or at least the pure geopandas snippet should also not warn I think?)

OK, that's interesting! Your flats lists could be seen basically as the different arrays that make up the internal representation of a ListArray, but by putting them in a Struct...