当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cuspatial.GeoSeries用法及代码示例


用法:

class cuspatial.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 对象。我们的目标是提供与GeoPandas 相同的函数,此时仅直接支持from_geopandas 和to_geopandas。 cuspatial GIS、索引和轨迹函数取决于存储在 GeoArrowBuffers 对象中的数组,可通过 pointsmultipointslinespolygons 访问器访问。

>>> cuseries.points
    xy:
    0   -1.0
    1    0.0
    dtype: float64

属性

lines

访问底层 GeoArrowBuffersLineArray

multipoints

访问底层 GeoArrowBuffersMultiPointArray

points

访问底层 GeoArrowBuffersPointsArray

polygons

访问底层 GeoArrowBuffersPolygonArray

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cuspatial.GeoSeries。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。