Questions tagged «geopandas»

一个开放源代码项目,可简化在Python中使用地理空间数据的工作。

1
使用GeoPandas更改绘图中的标记大小
我有一个带有点和一些关联数据的地理数据框。我想使用geopandas将其绘制在地图上,并使点的大小与geodataframe中的列之一相对应。 到目前为止,我有以下代码: base = world.plot(color='white', figsize=(20,10)) geo_df.plot(ax=base, marker='.', color='red', markersize = geo_df['Pop_2005']) plt.xlim([-85, -60]) plt.ylim([-5, 12.5]); 但我收到以下错误: TypeError: cannot convert the series to <class 'float'> 有任何想法吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.