-
Notifications
You must be signed in to change notification settings - Fork 156
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
Refactor directed_hausdorff_distance
and haversine_distance
into GeoSeries
Interface
#924
Merged
rapids-bot
merged 9 commits into
rapidsai:branch-23.04
from
isVoid:feature/geoseries_input/distance
Feb 14, 2023
Merged
Refactor directed_hausdorff_distance
and haversine_distance
into GeoSeries
Interface
#924
rapids-bot
merged 9 commits into
rapidsai:branch-23.04
from
isVoid:feature/geoseries_input/distance
Feb 14, 2023
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
isVoid
requested review from
thomcom and
harrism
and removed request for
trxcllnt
February 14, 2023 02:20
3 tasks
harrism
changed the title
Refactors
Refactor Feb 14, 2023
directed_hausdorff_distance
and haversine_distance
into GeoSeries
Interfacedirected_hausdorff_distance
and haversine_distance
into GeoSeries
Interface
harrism
approved these changes
Feb 14, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice improvement. One question.
thomcom
approved these changes
Feb 14, 2023
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
isVoid
added
feature request
New feature or request
3 - Ready for Review
Ready for review by team
breaking
Breaking change
labels
Feb 14, 2023
thomcom
reviewed
Feb 14, 2023
thomcom
reviewed
Feb 14, 2023
3 tasks
Co-authored-by: H. Thomson Comer <thomcom@gmail.com>
/merge |
rapids-bot bot
pushed a commit
that referenced
this pull request
Feb 15, 2023
Provides public GeoSeries methods to create single-type GeoSeries for linestrings and polygons in addition to the points and multipoints methods added in #924. Authors: - H. Thomson Comer (https://github.com/thomcom) - Michael Wang (https://github.com/isVoid) Approvers: - Michael Wang (https://github.com/isVoid) - Mark Harris (https://github.com/harrism) URL: #928
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
3 - Ready for Review
Ready for review by team
breaking
Breaking change
improvement
Improvement / enhancement to an existing function
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
Closes #921, closes #920
Also Fixes #917
This PR refactors all functions in
distance.py
to accept geoseries as input. It also adds two interfaces to GeoSeries:from_points_xy
andfrom_multpoints_xy
. Since geospatial data source can vary, these APIs ensures flexibility when constructing a geoseries.This PR also removes some stale demo files that uses these APIs.
Checklist