将 geopandas 与 python 一起使用时,如何使形状文件中的线条变粗?

How to make line thicker in shape file when using geopandas with python?

我正在使用此处找到的形状文件:https://www.arcgis.com/home/item.html?id=f7f805eb65eb4ab787a0a3e1116ca7e5

当我在 ipython 中绘制它时,它看起来如图所示 below.My 目标是添加或使状态线更加可见,以便我知道该点显示在什么状态。

您可以使用参数"edgecolor"。这将突出显示状态线。

usa.plot(ax=ax, alpha=.4, color='gray', edgecolor='black')

结果: