Python - 地理数据



许多开源 Python 库现已创建用于表示地理地图。它们具备高度可定制性,并提供多种形状和颜色的地图,描绘不同区域。Cartopy 就是其中之一。你可以从 Cartopy 下载并在自己本地环境中安装此软件包。你可以在其图库中找到许多示例。

在下例中,我们展示了世界地图的一部分,显示了亚洲和澳大利亚的部分地区。你可以调整方法 set_extent 中的参数值,以定位世界地图的不同区域。

import matplotlib.pyplot as plt
import cartopy.crs as ccrs    

fig = plt.figure(figsize=(15, 10))
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())

    # make the map global rather than have it zoom in to
    # the extents of any plotted data

ax.set_extent((60, 150, 55, -25))

ax.stock_img()
ax.coastlines()

ax.tissot(facecolor='purple', alpha=0.8)

plt.show()

它的输出如下 -

geographic.png
广告