cuSpatial accelerates vector geospatial operations through GPU parallelization. As part of the RAPIDS libraries, cuSpatial is inherently connected to cuDF, cuML, and cuGraph, enabling GPU acceleration across entire workflows. cuSpatial represents data in GeoArrow format, which enables compatibility with the...
用法: classcuspatial.GeoSeries(data: geopandas.geoseries.GeoSeries, index: Optional[Union[cudf.core.index.Index, pandas.core.indexes.base.Index]] = None, dtype=None, name=None, nan_as_null=True) 基础:cudf.core.series.Series cuspatial GeoSeries 启用 GPU-backed 存储和计算 shapely-like 对象。...
每个边界框的最大 x 坐标 y_max:cudf.Series 每个边界框的最大 y 坐标 例子: 计算导出轨迹的最小边界框 >>>objects, traj_offsets = trajectory.derive_trajectories( [0,0,1,1],# object_id[0,1,2,3],# x[0,0,1,1],# y[0,10,0,10]# timestamp)>>>traj_bounding_boxes = cuspatial.traj...
cuSpatial O网页链接 专注于地理空间计算的python的算法库,用CUDA加速GIS和时空算法。 已有功能 Spatial window query Point-in-polygon test Haversine distance Hausdorff distance Deriving trajectories from point location data Computing distance/speed of trajectories Computing spatial bounding boxes of trajectories ...
" pickups = cuspatial.point_in_polygon(pickup2016, zone)\n", " dropoffs = cuspatial.point_in_polygon(dropoff2016, zone)\n", "\n", " for j in pickups.columns:\n", " taxi2016['PULocationID'].loc[pickups[j]] = j\n", " for j in dropoffs.columns:\n", " taxi2016...
问使用cudf和cuspatial计算组上的半正弦距离EN随着新版本的推出,RAPIDS 迎来了其推出一周年纪念日。回顾...
问安装CuSpatial或CuDf库时未找到软件包错误EN随着新版本的推出,RAPIDS 迎来了其推出一周年纪念日。回顾...
GeoArrowBuffers(data: typing.Union[dict, cuspatial.geometry.geoarrowbuffers.T], data_locale: object = <module 'cudf' from '/opt/conda/envs/rapids/lib/python3.9/site-packages/cudf/__init__.py'>) 基础:object GPU GeoArrowBuffers 对象。 参数: data:一个dict 或一个 GeoArrowBuffers 对象。
cuspatial.directed_hausdorff_distance(xs, ys, space_offsets) 计算所有空间对之间的有向 Hausdorff 距离。 参数: xs: x 坐标列 ys: y 坐标列 space_offsets: 每个空格的开始索引,加上最后一个空格的结束偏移量。 返回: result:cudf.DataFrame 每个输入空间一行一列的成对有向距离矩阵;第 i 行第 j 列的...
Breadcrumbs cuspatial /cpp /cuproj / README.mdTop File metadata and controls Preview Code Blame 38 lines (27 loc) · 1.76 KB Raw cuProj: GPU-Accelerated Coordinate Projection Overview cuProj is a generic coordinate transformation library that transforms geospatial coordinates from one coordinate re...