地理预测#

这显示了 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秒)

由 Sphinx-Gallery 生成的画廊