Anastassia
Anastassia
Hi all! I stumbled upon this enhancement issue on my quest for a straightforward way of matching the routing output of r5r's `detailed_itineraries()` to *OSM edge IDs*. As far as...
@mszell can we close this issue for now?
I'm running into a similar issue, just trying to run the example code from the [dask-geopandas docs](https://dask-geopandas.readthedocs.io/en/stable/): ``` import geopandas import dask_geopandas df = geopandas.read_file(geopandas.datasets.get_path("naturalearth_lowres")) dask_df = dask_geopandas.from_geopandas(df, npartitions=4) dask_df.geometry.area.compute()...
I get comparable error messages (attribute errors from dask-expr) when I try to apply to `within` or `sjoin` tools on a dask dataframe created with `dask_geopandas.from_geopandas(geopandas.GeoDataFrame)`. For example: ``` import...
@martinfleis thanks for this!! but same error message (and the config is already set to False at import from what I can see), i.e.: ``` import dask import geopandas import...
Will try it out next time!