我在使用 Cartopy 重新投影图像时遇到问题。
我有以下代码(从此处找到的示例修改):
import os
import matplotlib.pyplot as plt
from cartopy import config
import cartopy.crs as ccrs
import cartopy.feature as cfeature
fig = plt.figure(figsize=(8, 10))
img_extent = (-120.67660000000001, -106.32104523100001, 13.2301484511245, 30.766899999999502)
img = plt.imread('/tmp/Miriam.A2012270.2050.2km.jpg')
ax = plt.axes(projection=ccrs.PlateCarree())
plt.title('Hurricane Miriam from the Aqua/MODIS satellite\n'
'2012 09/26/2012 20:50 UTC')
ax.set_extent([-125, -105, 10, 35], ccrs.Geodetic())
ax.imshow(img, origin='upper', extent=img_extent, transform=ccrs.PlateCarree())
ax.coastlines(resolution='50m', color='black', linewidth=1)
ax.gridlines()
plt.show()
生成以下图像
但是,当我尝试选择不同的投影时,比如 Lambert Conformal,通过替换
ax = plt.axes(projection=ccrs.PlateCarree())
和
ax = plt.axes(projection=ccrs.LambertConformal())
我得到以下图像:
如您所见,此图像有问题。我究竟做错了什么?是否可以在不同的投影中显示此图像?