笔记
单击此处 下载完整的示例代码
地理预测#
这显示了 4 种可能的地理预测。Cartopy支持更多的预测。
import matplotlib.pyplot as plt
plt.figure()
plt.subplot(projection="aitoff")
plt.title("Aitoff")
plt.grid(True)
plt.figure()
plt.subplot(projection="hammer")
plt.title("Hammer")
plt.grid(True)
plt.figure()
plt.subplot(projection="lambert")
plt.title("Lambert")
plt.grid(True)
plt.figure()
plt.subplot(projection="mollweide")
plt.title("Mollweide")
plt.grid(True)
plt.show()
脚本总运行时间:(0分1.707秒)