用于存放 pairwise_point_linestring_nearest_points
结果的容器 更多...
#include <nearest_points.hpp>
公共属性 | |
std::optional< std::unique_ptr< cudf::column > > | nearest_point_geometry_id |
std::optional< std::unique_ptr< cudf::column > > | nearest_linestring_geometry_id |
std::unique_ptr< cudf::column > | nearest_segment_id |
std::unique_ptr< cudf::column > | nearest_point_on_linestring_xy |
用于存放 pairwise_point_linestring_nearest_points
结果的容器
定义于文件 nearest_points.hpp 第 36 行。
std::optional<std::unique_ptr<cudf::column> > cuspatial::point_linestring_nearest_points_result::nearest_linestring_geometry_id |
线串 ID 是包含最近点的多线串内的偏移量。(如果输入不是多线串数组,则为 std::nullopt
)
定义于文件 nearest_points.hpp 第 43 行。
std::optional<std::unique_ptr<cudf::column> > cuspatial::point_linestring_nearest_points_result::nearest_point_geometry_id |
点 ID 指示多点中哪个点是最近点。(如果输入不是多点数组,则为 std::nullopt
)
定义于文件 nearest_points.hpp 第 39 行。
std::unique_ptr<cudf::column> cuspatial::point_linestring_nearest_points_result::nearest_point_on_linestring_xy |
(多)线串上最近点的交错 x、y 坐标
定义于文件 nearest_points.hpp 第 50 行。
std::unique_ptr<cudf::column> cuspatial::point_linestring_nearest_points_result::nearest_segment_id |
线段 ID 是包含最近点的线串内的偏移量。它与线段起点的 ID 相同。多线串中的每个线串都独立索引。
定义于文件 nearest_points.hpp 第 47 行。