-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multilinestring
in Linestring Distance
#753
Closed
isVoid
wants to merge
70
commits into
rapidsai:branch-22.12
from
isVoid:feature/multilinestring_distance
Closed
Support multilinestring
in Linestring Distance
#753
isVoid
wants to merge
70
commits into
rapidsai:branch-22.12
from
isVoid:feature/multilinestring_distance
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…into feature/multipoint_array
Co-authored-by: H. Thomson Comer <[email protected]>
…l into feature/multipoint_array
…into feature/python_point_distance
…into feature/multilinestring_distance
…e.cuh Co-authored-by: Mark Harris <[email protected]>
…patial into feature/multilinestring_range
3 tasks
rapids-bot bot
pushed a commit
that referenced
this pull request
Nov 7, 2022
…nge`, adds support to multilinestring distance (#755) Note, this is the first part of `pairwise_linestring_distance` refactoring, part 1 of PR: #753 Depends on #752 Contributes to #706, #703 Closes #745 Authors: - Michael Wang (https://github.com/isVoid) Approvers: - H. Thomson Comer (https://github.com/thomcom) - Mark Harris (https://github.com/harrism) URL: #755
isVoid
added a commit
to isVoid/cuspatial
that referenced
this pull request
Nov 8, 2022
Merged
3 tasks
rapids-bot bot
pushed a commit
that referenced
this pull request
Nov 15, 2022
…wise_linestring_distance` (#786) This is a port of the second half of #753, closes #706 Authors: - Michael Wang (https://github.com/isVoid) Approvers: - Mark Harris (https://github.com/harrism) - H. Thomson Comer (https://github.com/thomcom) URL: #786
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
cmake
Related to CMake code or build configuration
libcuspatial
Relates to the cuSpatial C++ library
Python
Related to Python code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR adds support to
multilinestring
support toLineString Distance
API. And in turn refactors header-only API, column API, and python API.This PR introduces a few new non-owning objects for geometry and geometry collections:
linestring_ref
,multilinestring_ref
, which greatly simplifies the implementation of the linestring distance kernel.Depends on #752 and #747
Checklist