Open jGaboardi opened 4 months ago
Nice catch!
If we pass other types like geoSeries
or np.array
? Assuming that we will only support list
, it is up to the user to pass the argument correctly. I mean, if the user has a geoSeries
, it has to convert geoSeries
to list
.
I think we should support at least np.array
, to provide a "medium-level" API. What are your thoughts?
I think we should support at least np.array, to provide a "medium-level" API. What are your thoughts?
I agree, and this would probably play nicely with numba
& jit
decorators for improved performance (in the future, of course).
Currently with
FastPair.__add__()
only a single point can be added at time after callingbuild()
:With some modification, a collection of points could be added to the data structure:
Seems like the same could go for
FastPair.__sub__()
Thoughts?
cc @gegen07