Loading...
Searching...
No Matches
point_in_polygon.cuh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022, NVIDIA CORPORATION.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19#include <rmm/cuda_stream_view.hpp>
20
21namespace cuspatial {
22
78template <class PointRange, class PolygonRange, class OutputIt>
79OutputIt point_in_polygon(PointRange points,
80 PolygonRange polygons,
81 OutputIt output,
82 rmm::cuda_stream_view stream = rmm::cuda_stream_default);
83
130template <typename PointRange, typename PolygonRange, typename OutputIt>
131OutputIt pairwise_point_in_polygon(PointRange points,
132 PolygonRange polygons,
133 OutputIt results,
134 rmm::cuda_stream_view stream = rmm::cuda_stream_default);
135
140} // namespace cuspatial
141
142#include <cuspatial/detail/point_in_polygon.cuh>
OutputIt pairwise_point_in_polygon(PointRange points, PolygonRange polygons, OutputIt results, rmm::cuda_stream_view stream=rmm::cuda_stream_default)
Given (point, polygon) pairs, tests whether the point in the pair is in the polygon in the pair.
OutputIt point_in_polygon(PointRange points, PolygonRange polygons, OutputIt output, rmm::cuda_stream_view stream=rmm::cuda_stream_default)
Tests whether the specified points are inside any of the specified polygons.