卡托皮县寄宿生

时间:2018-06-29 17:25:33

标签: python cartopy

您如何在Cartopy中绘制美国县边界?

绘制州和国家/地区边界非常简单

ax.add_feature(cfeature.BORDERS.with_scale('50m'))
ax.add_feature(cfeature.STATES.with_scale('50m'))

但是我似乎找不到增加郡县边界的类似方法。这是底图的优点之一。

1 个答案:

答案 0 :(得分:3)

考虑到cartopy绘制shapefile的能力,这个问题本质上可以归结为“我在哪里可以找到美国的县轮廓?”。

http://www.naturalearthdata.com/forums/topic/u-s-county-shape-file/的“自然地球”论坛上提出了类似的问题。它指向http://nationalatlas.gov/mld/countyp.html处的一个位置,很不幸,该位置有一点点腐烂。快速的Google建议您现在可以在以下位置找到它:

https://nationalmap.gov/small_scale/atlasftp.html?openChapters=chpbound#chpbound

我决定下载其中一个县shapefile:

https://prd-tnm.s3.amazonaws.com/StagedProducts/Small-scale/data/Boundaries/countyl010g_shp_nt00964.tar.gz

安装好后,我使用了cartopy的shapereader来获取几何图形,并创建了一个自定义功能,然后可以将其添加到轴上:

import cartopy.crs as ccrs
import cartopy.feature as cfeature
import cartopy.io.shapereader as shpreader
import matplotlib.pyplot as plt


reader = shpreader.Reader('countyl010g.shp')

counties = list(reader.geometries())

COUNTIES = cfeature.ShapelyFeature(counties, ccrs.PlateCarree())

plt.figure(figsize=(10, 6))
ax = plt.axes(projection=ccrs.PlateCarree())

ax.add_feature(cfeature.LAND.with_scale('50m'))
ax.add_feature(cfeature.OCEAN.with_scale('50m'))
ax.add_feature(cfeature.LAKES.with_scale('50m'))
ax.add_feature(COUNTIES, facecolor='none', edgecolor='gray')

ax.coastlines('50m')

ax.set_extent([-83, -65, 33, 44])
plt.show()

US counties

这是从https://scitools.org.uk/cartopy/docs/v0.14/examples/feature_creation.html处的示例派生而来的,该示例构造了NaturalEarthFeature而不是ShapelyFeature,但除此之外,原理几乎相同。

希望对您有用。