Skip to content
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 spatial related functions under spatial package #656

Merged
merged 23 commits into from
Aug 23, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0700863
Move trajectory into sub-package
isVoid Aug 15, 2022
6a9b0dd
Organize test files in the same folder structure
isVoid Aug 15, 2022
eb35b2c
Group interpolate under `trajectory` category.
isVoid Aug 15, 2022
a007d57
reorganize spline tests
isVoid Aug 15, 2022
265874a
Create new hierarchy for spatial functions
isVoid Aug 16, 2022
bf01510
Organize tests in the same hierarchy as code
isVoid Aug 16, 2022
b2017fb
Refactor `CubicSpline` to be independent of `trajectory` component.
isVoid Aug 16, 2022
943c5a8
Match test files structure
isVoid Aug 16, 2022
8125efe
style
isVoid Aug 16, 2022
dd78588
Merge branch 'refactor/trajectory' into refactor/spatial
isVoid Aug 17, 2022
4b77ee2
Update documentation
isVoid Aug 17, 2022
e0845f2
Update top level module visibility
isVoid Aug 17, 2022
060c562
Merge branch 'branch-22.10' of https://github.com/rapidsai/cuspatial …
isVoid Aug 18, 2022
bed6c62
add sections to spatial api reference
isVoid Aug 18, 2022
b14806d
Revert "Refactor `CubicSpline` to be independent of `trajectory` comp…
isVoid Aug 19, 2022
5915ce9
Revert "Move trajectory into sub-package"
isVoid Aug 19, 2022
9d3ab98
Expose spatial package to top level API
isVoid Aug 19, 2022
d673faa
style, license date
isVoid Aug 19, 2022
30c3f87
Add project wide config file for black
isVoid Aug 19, 2022
7b7f7eb
black format
isVoid Aug 19, 2022
a812008
renaming the files to new suggestion
isVoid Aug 23, 2022
516157a
Update docs/source/api_docs/spatial.rst
isVoid Aug 23, 2022
2219db0
Merge branch 'branch-22.10' of https://github.com/rapidsai/cuspatial …
isVoid Aug 23, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Move trajectory into sub-package"
This reverts commit 0700863.
  • Loading branch information
isVoid committed Aug 19, 2022
commit 5915ce9f8384520180389c8225a2fb2554bb3f88
4 changes: 2 additions & 2 deletions python/cuspatial/cuspatial/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ._version import get_versions
from .core.trajectory import interpolate
from .core import interpolate
from .core.gis import (
directed_hausdorff_distance,
haversine_distance,
Expand All @@ -10,7 +10,7 @@
pairwise_linestring_distance,
)
from .core.indexing import quadtree_on_points
from .core.trajectory import CubicSpline
from .core.interpolate import CubicSpline
from .core.spatial_join import (
join_quadtree_and_bounding_boxes,
quadtree_point_in_polygon,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019-2022, NVIDIA CORPORATION.
# Copyright (c) 2019, NVIDIA CORPORATION.

import numpy as np

Expand Down
14 changes: 0 additions & 14 deletions python/cuspatial/cuspatial/core/trajectory/__init__.py

This file was deleted.