我正在尝试构建一个简单的函数,该函数采用子图实例 ( matplotlib.axes._subplots.AxesSubplot
) 并将其投影转换为另一个投影,例如,转换为其中一个cartopy.crs.CRS
投影。
这个想法看起来像这样
import cartopy.crs as ccrs
import matplotlib.pyplot as plt
def make_ax_map(ax, projection=ccrs.PlateCarree()):
# set ax projection to the specified projection
...
# other fancy formatting
ax2.coastlines()
...
# Create a grid of plots
fig, (ax1, ax2) = plt.subplots(ncols=2)
# the first subplot remains unchanged
ax1.plot(np.random.rand(10))
# the second one gets another projection
make_ax_map(ax2)
当然,我可以只使用fig.add_subplot()
函数:
fig = plt.figure(figsize=(10,5))
ax1 = fig.add_subplot(121)
ax1.plot(np.random.rand(10))
ax2 = fig.add_subplot(122,projection=ccrs.PlateCarree())
ax2.coastlines()
matplotlib
但我想知道在定义子图轴投影后是否有适当的方法来更改它。不幸的是,阅读 matplotlib API 并没有帮助。