Joris Van den Bossche

Results 190 issues of Joris Van den Bossche

It might be nice to get a better float (using some rounding) representation: ``` In [8]: spherely.LineString([(-1, -1), (1, 1)]) Out[8]: LINESTRING (-0.9999999999999998 -1, 0.9999999999999998 1) ```

**Context**: in the original `pd.NA` proposal (https://github.com/pandas-dev/pandas/issues/28095) the topic about `pd.NA` vs `np.nan` was raised several times. And also in the recent pandas-dev mailing list discussion on pandas 2.0 it...

Enhancement
Missing-data
API Design
NA - MaskedArrays
Ice Cream Agreement

### Describe the issue: I don't know if this is a bug (and if it would be, also probably in Accelerate and not NumPy) or rather a wrong expectation about...

00 - Bug

Update our dev docs build to use the latest pydata-sphinx-theme (with 0.15.2 out, the main bug in 0.15.0 should be fixed, so I think we can at least start using...

Component: Documentation

Avoiding some deep copies in case of pandas >= 3.0. Starting with pandas 3.0, most methods on a DataFrame (like rename or (re)set_index) will not return a hard copy of...

The (in)equality for GeometryArray is defined here: https://github.com/geopandas/geopandas/blob/167c061090c2cae964264bec2b80eea38bb63fdb/geopandas/array.py#L1656-L1667 So this essentially still uses a python for loop acting on scalar shapely geoometries, instead of one of the vectorized ufuncs from...

We should have functions to create geographies from WKT and WKB, and also to convert to WKT and WKB. (similarly to shapely's `from_wkt`/`from_wkb` and `to_wkt`/`to_wkb`) At the moment `s2geography` does...

Something I ran into while testing https://github.com/benbovy/spherely/pull/20 (xref https://github.com/benbovy/spherely/pull/20#discussion_r1141150124), is that it is not that easy to pass an exact equality test with `equals()`. Illustration: ```python # construct a point...

Awaiting a more complex function to get coordinates in general, adding a simple get_lng/get_lat functions just for points (so those can easily be vectorized)

R `s2` has https://r-spatial.github.io/s2/reference/s2_plot.html, which I think is very important for quick exploration (and debugging) of your data.