gpt4 book ai didi

pandas - Geopandas 绘图作为子图

转载 作者:行者123 更新时间:2023-12-04 01:53:23 29 4
gpt4 key购买 nike

假设我有以下包含 3 个多边形对象的地理数据框。

import geopandas as gpd
from shapely.geometry import Polygon

p1=Polygon([(0,0),(0,1),(1,1),(1,0)])
p2=Polygon([(3,3),(3,6),(6,6),(6,3)])
p3=Polygon([(3,.5),(4,2),(5,.5)])

gdf=gpd.GeoDataFrame(geometry=[p1,p2,p3])
gdf['Value1']=[1,10,20]
gdf['Value2']=[300,200,100]
gdf内容:
>>> gdf
geometry Value1 Value2
0 POLYGON ((0 0, 0 1, 1 1, 1 0, 0 0)) 1 300
1 POLYGON ((3 3, 3 6, 6 6, 6 3, 3 3)) 10 200
2 POLYGON ((3 0.5, 4 2, 5 0.5, 3 0.5)) 20 100
>>>

我可以通过调用 geopandas.plot() 为每个图制作一个单独的图形两次。但是,有没有办法让我在同一个图中将这两个 map 彼此相邻绘制为子图?

enter image description here

enter image description here

最佳答案

永远永远总是 提前创建您的 matplotlib 对象并将它们传递给绘图方法(或直接使用它们)。这样做,您的代码将变为:

from matplotlib import pyplot
import geopandas
from shapely import geometry

p1 = geometry.Polygon([(0,0),(0,1),(1,1),(1,0)])
p2 = geometry.Polygon([(3,3),(3,6),(6,6),(6,3)])
p3 = geometry.Polygon([(3,.5),(4,2),(5,.5)])

gdf = geopandas.GeoDataFrame(dict(
geometry=[p1, p2, p3],
Value1=[1, 10, 20],
Value2=[300, 200, 100],
))

fig, (ax1, ax2) = pyplot.subplots(ncols=2, sharex=True, sharey=True)
gdf.plot(ax=ax1, column='Value1')
gdf.plot(ax=ax2, column='Value2')

这给了我:

enter image description here

关于pandas - Geopandas 绘图作为子图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38253948/

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