-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…#750) This PR provides two primary outcomes: it adds a `pairwise_point_in_polygon` API in the header-only and cudf-backed C++ functionality, and it modifies the `is_point_in_polygon` kernel to perform boundary exclusion. The `pairwise_point_in_polygon` API has been added because `GeoPandas.GeoSeries.contains` only supports a pairwise operation and a many-to-one operation, but does not implement the all-pairs approach to point-in-polygon we developed. Boundary exclusion has been added for two reasons: The main reason is because `GeoPandas.GeoSeries.contains` applies boundary exclusion: points that are in the boundary of a polygon are not considered to be "in" the polygon. The other reason to add boundary exclusion is because our results were previously undefined. Some boundary points were excluded in point-in-polygon, and others were not. This PR resolves that inconsistency. Authors: - H. Thomson Comer (https://github.com/thomcom) Approvers: - Mark Harris (https://github.com/harrism) - Michael Wang (https://github.com/isVoid) URL: #750
- Loading branch information
Showing
12 changed files
with
1,218 additions
and
70 deletions.
There are no files selected for viewing
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
104 changes: 104 additions & 0 deletions
104
cpp/include/cuspatial/experimental/detail/is_point_in_polygon.cuh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright (c) 2022, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <cuspatial/traits.hpp> | ||
|
||
#include <cuspatial/detail/utility/floating_point.cuh> | ||
|
||
namespace cuspatial { | ||
namespace detail { | ||
|
||
/** | ||
* @brief Kernel to test if a point is inside a polygon. | ||
* | ||
* Implemented based on Eric Haines's crossings-multiply algorithm: | ||
* See "Crossings test" section of http://erich.realtimerendering.com/ptinpoly/ | ||
* The improvement in addenda is also addopted to remove divisions in this kernel. | ||
* | ||
* TODO: the ultimate goal of refactoring this as independent function is to remove | ||
* src/utility/point_in_polygon.cuh and its usage in quadtree_point_in_polygon.cu. It isn't | ||
* possible today without further work to refactor quadtree_point_in_polygon into header only | ||
* API. | ||
*/ | ||
template <class Cart2d, | ||
class OffsetType, | ||
class OffsetIterator, | ||
class Cart2dIt, | ||
class OffsetItDiffType = typename std::iterator_traits<OffsetIterator>::difference_type, | ||
class Cart2dItDiffType = typename std::iterator_traits<Cart2dIt>::difference_type> | ||
__device__ inline bool is_point_in_polygon(Cart2d const& test_point, | ||
OffsetType poly_begin, | ||
OffsetType poly_end, | ||
OffsetIterator ring_offsets_first, | ||
OffsetItDiffType const& num_rings, | ||
Cart2dIt poly_points_first, | ||
Cart2dItDiffType const& num_poly_points) | ||
{ | ||
using T = iterator_vec_base_type<Cart2dIt>; | ||
|
||
bool point_is_within = false; | ||
bool is_colinear = false; | ||
// for each ring | ||
for (auto ring_idx = poly_begin; ring_idx < poly_end; ring_idx++) { | ||
int32_t ring_idx_next = ring_idx + 1; | ||
int32_t ring_begin = ring_offsets_first[ring_idx]; | ||
int32_t ring_end = | ||
(ring_idx_next < num_rings) ? ring_offsets_first[ring_idx_next] : num_poly_points; | ||
|
||
Cart2d b = poly_points_first[ring_end - 1]; | ||
bool y0_flag = b.y > test_point.y; | ||
bool y1_flag; | ||
// for each line segment, including the segment between the last and first vertex | ||
for (auto point_idx = ring_begin; point_idx < ring_end; point_idx++) { | ||
Cart2d const a = poly_points_first[point_idx]; | ||
T run = b.x - a.x; | ||
T rise = b.y - a.y; | ||
|
||
// Points on the line segment are the same, so intersection is impossible. | ||
// This is possible because we allow closed or unclosed polygons. | ||
T constexpr zero = 0.0; | ||
if (float_equal(run, zero) && float_equal(rise, zero)) continue; | ||
|
||
T rise_to_point = test_point.y - a.y; | ||
|
||
// colinearity test | ||
T run_to_point = test_point.x - a.x; | ||
is_colinear = float_equal(run * rise_to_point, run_to_point * rise); | ||
if (is_colinear) { break; } | ||
|
||
y1_flag = a.y > test_point.y; | ||
if (y1_flag != y0_flag) { | ||
// Transform the following inequality to avoid division | ||
// test_point.x < (run / rise) * rise_to_point + a.x | ||
auto lhs = (test_point.x - a.x) * rise; | ||
auto rhs = run * rise_to_point; | ||
if (lhs < rhs != y1_flag) { point_is_within = not point_is_within; } | ||
} | ||
b = a; | ||
y0_flag = y1_flag; | ||
} | ||
if (is_colinear) { | ||
point_is_within = false; | ||
break; | ||
} | ||
} | ||
|
||
return point_is_within; | ||
} | ||
} // namespace detail | ||
} // namespace cuspatial |
136 changes: 136 additions & 0 deletions
136
cpp/include/cuspatial/experimental/detail/pairwise_point_in_polygon.cuh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
* Copyright (c) 2022, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <cuspatial/cuda_utils.hpp> | ||
#include <cuspatial/error.hpp> | ||
#include <cuspatial/experimental/detail/is_point_in_polygon.cuh> | ||
#include <cuspatial/traits.hpp> | ||
#include <cuspatial/vec_2d.hpp> | ||
|
||
#include <rmm/cuda_stream_view.hpp> | ||
|
||
#include <thrust/memory.h> | ||
|
||
#include <iterator> | ||
#include <type_traits> | ||
|
||
namespace cuspatial { | ||
namespace detail { | ||
|
||
template <class Cart2dItA, | ||
class Cart2dItB, | ||
class OffsetIteratorA, | ||
class OffsetIteratorB, | ||
class OutputIt, | ||
class Cart2dItADiffType = typename std::iterator_traits<Cart2dItA>::difference_type, | ||
class Cart2dItBDiffType = typename std::iterator_traits<Cart2dItB>::difference_type, | ||
class OffsetItADiffType = typename std::iterator_traits<OffsetIteratorA>::difference_type, | ||
class OffsetItBDiffType = typename std::iterator_traits<OffsetIteratorB>::difference_type> | ||
__global__ void pairwise_point_in_polygon_kernel(Cart2dItA test_points_first, | ||
Cart2dItADiffType const num_test_points, | ||
OffsetIteratorA poly_offsets_first, | ||
OffsetItADiffType const num_polys, | ||
OffsetIteratorB ring_offsets_first, | ||
OffsetItBDiffType const num_rings, | ||
Cart2dItB poly_points_first, | ||
Cart2dItBDiffType const num_poly_points, | ||
OutputIt result) | ||
{ | ||
using Cart2d = iterator_value_type<Cart2dItA>; | ||
using OffsetType = iterator_value_type<OffsetIteratorA>; | ||
for (auto idx = threadIdx.x + blockIdx.x * blockDim.x; idx < num_test_points; | ||
idx += gridDim.x * blockDim.x) { | ||
Cart2d const test_point = test_points_first[idx]; | ||
// for the matching polygon | ||
OffsetType poly_begin = poly_offsets_first[idx]; | ||
OffsetType poly_end = (idx + 1 < num_polys) ? poly_offsets_first[idx + 1] : num_rings; | ||
bool const point_is_within = is_point_in_polygon(test_point, | ||
poly_begin, | ||
poly_end, | ||
ring_offsets_first, | ||
num_rings, | ||
poly_points_first, | ||
num_poly_points); | ||
result[idx] = point_is_within; | ||
} | ||
} | ||
|
||
} // namespace detail | ||
|
||
template <class Cart2dItA, | ||
class Cart2dItB, | ||
class OffsetIteratorA, | ||
class OffsetIteratorB, | ||
class OutputIt> | ||
OutputIt pairwise_point_in_polygon(Cart2dItA test_points_first, | ||
Cart2dItA test_points_last, | ||
OffsetIteratorA polygon_offsets_first, | ||
OffsetIteratorA polygon_offsets_last, | ||
OffsetIteratorB poly_ring_offsets_first, | ||
OffsetIteratorB poly_ring_offsets_last, | ||
Cart2dItB polygon_points_first, | ||
Cart2dItB polygon_points_last, | ||
OutputIt output, | ||
rmm::cuda_stream_view stream) | ||
{ | ||
using T = iterator_vec_base_type<Cart2dItA>; | ||
|
||
auto const num_test_points = std::distance(test_points_first, test_points_last); | ||
auto const num_polys = std::distance(polygon_offsets_first, polygon_offsets_last); | ||
auto const num_rings = std::distance(poly_ring_offsets_first, poly_ring_offsets_last); | ||
auto const num_poly_points = std::distance(polygon_points_first, polygon_points_last); | ||
|
||
static_assert(is_same_floating_point<T, iterator_vec_base_type<Cart2dItB>>(), | ||
"Underlying type of Cart2dItA and Cart2dItB must be the same floating point type"); | ||
static_assert( | ||
is_same<vec_2d<T>, iterator_value_type<Cart2dItA>, iterator_value_type<Cart2dItB>>(), | ||
"Inputs must be cuspatial::vec_2d"); | ||
|
||
static_assert(cuspatial::is_integral<iterator_value_type<OffsetIteratorA>, | ||
iterator_value_type<OffsetIteratorB>>(), | ||
"OffsetIterators must point to integral type."); | ||
|
||
static_assert(std::is_same_v<iterator_value_type<OutputIt>, int32_t>, | ||
"OutputIt must point to 32 bit integer type."); | ||
|
||
CUSPATIAL_EXPECTS(num_rings >= num_polys, "Each polygon must have at least one ring"); | ||
CUSPATIAL_EXPECTS(num_poly_points >= num_polys * 4, "Each ring must have at least four vertices"); | ||
|
||
CUSPATIAL_EXPECTS(num_test_points == num_polys, | ||
"Must pass in an equal number of points and polygons"); | ||
|
||
// TODO: introduce a validation function that checks the rings of the polygon are | ||
// actually closed. (i.e. the first and last vertices are the same) | ||
|
||
auto [threads_per_block, num_blocks] = grid_1d(num_test_points); | ||
detail::pairwise_point_in_polygon_kernel<<<num_blocks, threads_per_block, 0, stream.value()>>>( | ||
test_points_first, | ||
num_test_points, | ||
polygon_offsets_first, | ||
num_polys, | ||
poly_ring_offsets_first, | ||
num_rings, | ||
polygon_points_first, | ||
num_poly_points, | ||
output); | ||
CUSPATIAL_CUDA_TRY(cudaGetLastError()); | ||
|
||
return output + num_test_points; | ||
} | ||
|
||
} // namespace cuspatial |
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
Oops, something went wrong.