地理的予測#

これは、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 によって生成されたギャラリー