gpt4 book ai didi

python - 绘制 GeoDataFrame 一行的几何图形

转载 作者:太空宇宙 更新时间:2023-11-03 14:46:04 28 4
gpt4 key购买 nike

我想绘制 geopandas 数据框的单行中包含的几何图形,但我遇到了问题。举个例子

import geopandas as gpd
import numpy as np
from shapely.geometry import Polygon

p1 = Polygon([(0, 0), (1, 0), (1, 1)])
p2 = Polygon([(2, 0), (3, 0), (3, 1), (2, 1)])
p3 = Polygon([(1, 1), (2, 1), (2, 2), (1, 2)])
index = np.random.random(3)
df = gpd.GeoDataFrame()
df['index'] = index
df['geometry'] = [p1,p2,p3]
df = df.set_geometry('geometry')

现在,如果我使用命令 df.plot() 绘图我明白了

enter image description here

但如果我尝试只绘制一行,df.loc[:,0].plot()

我得到以下错误

TypeError: Empty 'DataFrame': no numeric data to plot ,

如果我尝试的话

df.loc[:,'geometry'].plot()

我得到 AttributeError: 'Polygon' object has no attribute 'plot'

这样做的正确方法是什么?

最佳答案

这样试试:

df.loc[[0],'geometry'].plot()
# ^ ^

说明:shapely.geometry.polygon.Polygon 没有 .plot() 方法:

In [19]: type(df.loc[0,'geometry'])
Out[19]: shapely.geometry.polygon.Polygon

geopandas.geoseries.GeoSeries .plot() 方法:

In [20]: type(df.loc[[0],'geometry'])
Out[20]: geopandas.geoseries.GeoSeries

关于python - 绘制 GeoDataFrame 一行的几何图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49323439/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com