Floris Calkoen
Floris Calkoen
@delgadom I just noticed that your proposed solution has the side effect of also converting `cftime` objects (e.g., below) to unicode strings. ``` xarray.DataArray 'time' (time: 1) array([cftime.DatetimeNoLeap(2007, 7, 2,...
Great idea! I was actually just constructing dask_geopandas.from_dask_dataframe() and suprised that the `crs` keyword was not accepted. My next try was to use `dask_geopandas.GeoDataFrame().set_geometry(col="geometry", crs="epsg:4326")`, but this method also doesn't...
Thanks! I think having a function `dask_geopandas.from_wkt/from_wkb` would be great. Coming back to the workaround. I'm now calculating it like this: ``` gddf = dask_geopandas.from_dask_dataframe( ddf, geometry=ddf["geometry"].map_partitions( gpd.GeoSeries.from_wkt, meta=gpd.GeoSeries([]) ),...
@samuelgneff How is your project going :)? Looking forward to your nb! Cheers
Please find a simple Colab NB example here: https://gist.github.com/florisrc/e9bc4cb054c6ad1c8f1ac43a9c21d09f
I think I have quite some issues because of unequal GeoParquet partitions. So now I'm trying to repartition my directories like this: ```python import dask_geopandas import geopandas as gpd import...
Yes, the partitions are indeed sometimes larger then specified, yet much more equal than before, but.. regarding scalability I now experience new problems. I'm running into memory issues for the...
@milesial, great thanks. I'm currently out of office, but will check it asap.
Any updates on this issue? We would be very glad incorporate the FES14 tide model in our teaching material, but currently this Mac osx-arm64 issue is breaking our build.
I'm afraid the same holds for me. I'll see if I can do a little read up in the next days. Also I contacted someone I know at CNES to...