Shapefile缩放以使用Geopandas进行绘图

时间:2019-03-21 15:02:31

标签: pandas plot shapefile geopandas

我有一个意大利的shapefile,并且正在上面绘制GIS数据。问题是我在城市(罗马)内行驶的公共汽车有一条小轨迹,当我绘图时,它看起来像一个点。我猜是因为我的地图。

如何缩放地图(.shp)?

street_map = gpd.read_file("roads.shp")
...
...
fig,ax = plt.subplots(figsize = (20,15))
street_map.plot(ax = ax, alpha = 0.4, color = "grey")
geo_df[geo_df['Perc_'] > 25].plot(ax = ax, markersize = 20, color = "blue", 
marker = "o", label = "Neg")
geo_df[geo_df['Perc_'] < 25].plot(ax = ax, markersize = 20, color = "red", 
marker = "^", label = "Pos")
plt.legend(prop={'size':15})

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

根据您的第一张图片,可以通过指定适当的x和y限制来获取放大图。

...
ax.set_ylim([40.4, 47.2])
ax.set_xlim([7.0, 14.4])

(将此代码放在plt.legend()之前。

希望这很有用。