#include <rmm/cuda_stream_view.hpp>#include <cuspatial/detail/point_in_polygon.cuh>Go to the source code of this file.
Functions | |
| template<class PointRange, class PolygonRange, class OutputIt> | |
| OutputIt | cuspatial::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. | |
| template<typename PointRange, typename PolygonRange, typename OutputIt> | |
| OutputIt | cuspatial::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. | |