文档
返回点几何在GeoSeries中的z位置
参见
GeoSeries.x
GeoSeries.y
示例
>>> from shapely.geometry import Point >>> s = geopandas.GeoSeries([Point(1, 1, 1), Point(2, 2, 2), Point(3, 3, 3)]) >>> s.z 0 1.0 1 2.0 2 3.0 dtype: float64
上一页
geopandas.GeoSeries.y
下一页
geopandas.GeoSeries.is_empty