Joris Van den Bossche

Results 844 comments of Joris Van den Bossche

Thanks for the review @brendan-ward ! So I am first going to update https://github.com/geopandas/dask-geopandas/pull/134 with those comments, have that merged, and then just copy it over here (as mentioned by...

I think this was actually ready.

I noticed that the GDAL python SWIG bindings have this handler defined, which I suppose is basically what we want as well (hide errors logs because those are already handled...

@jadebel would you have time to update the PR? (see a few comments above)

@etiennebr Interesting! Is this something specific to `sf`, or are you aware of other packages / formats that have a similar concept? I am also wondering: do you have examples...

When selecting a series out of a DataFrame, we generally return a `GeoSeries` when you are selecting a column and if that column has a geometry dtype. But in your...

If you want to retain a (Geo)DataFrame when selecting a row, you use a list of one integer: ``` In [8]: poly = world.iloc[[7]] In [9]: poly Out[9]: pop_est continent...

In dask there is also a `DataFrame.shuffle` method, probably something to look at: https://github.com/dask/dask/blob/8aea537d925b794a94f828d35211a5da05ad9dce/dask/dataframe/shuffle.py#L301 (https://docs.dask.org/en/latest/dataframe-api.html#dask.dataframe.DataFrame.shuffle). That seems more similar to what we want to do here compared to `set_index`/`repartition`.

An updated version: ```python >>> methods_geopandas_extra - methods_dask_geopandas_extra {'cascaded_union', 'clip_by_rect', 'estimate_utm_crs', 'explore', 'from_features', 'from_file', 'from_postgis', 'has_sindex', 'iterfeatures', 'overlay', 'sjoin_nearest', 'to_file', ``` I think from this list, `overlay` and `sjoin_nearest` are...

@lodo1995 that's indeed strange, but a behaviour we get from PROJ / pyproj: ``` import pyproj epsg4326 = pyproj.CRS(4326) epsg4976 = pyproj.CRS(4976) In [16]: trans1 = pyproj.Transformer.from_crs(epsg4326, epsg4976, always_xy=True) In...