【发布时间】:2021-02-25 04:10:53
【问题描述】:
我正在使用cartopy 来显示覆盖在世界地图上的 KDE。最初,我使用ccrs.PlateCarree 投影没有问题,但是当我尝试使用另一个投影时,它似乎爆炸了投影的比例。作为参考,我在下面提供了一个示例,您可以在自己的机器上进行测试(只需注释掉两行 projec 即可在投影之间切换)
from scipy.stats import gaussian_kde
import numpy as np
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
import cartopy.feature as cfeature
projec = ccrs.PlateCarree()
#projec = ccrs.InterruptedGoodeHomolosine()
fig = plt.figure(figsize=(12, 12))
ax = fig.add_subplot(projection=projec)
np.random.seed(1)
discrete_points = np.random.randint(0,10,size=(2,400))
kde = gaussian_kde(discrete_points)
x, y = discrete_points
# https://www.oreilly.com/library/view/python-data-science/9781491912126/ch04.html
resolution = 1
x_step = int((max(x)-min(x))/resolution)
y_step = int((max(y)-min(y))/resolution)
xgrid = np.linspace(min(x), max(x), x_step+1)
ygrid = np.linspace(min(y), max(y), y_step+1)
Xgrid, Ygrid = np.meshgrid(xgrid, ygrid)
Z = kde.evaluate(np.vstack([Xgrid.ravel(), Ygrid.ravel()]))
Zgrid = Z.reshape(Xgrid.shape)
ext = [min(x)*5, max(x)*5, min(y)*5, max(y)*5]
earth = plt.cm.gist_earth_r
ax.add_feature(cfeature.NaturalEarthFeature('physical', 'land', '50m',
edgecolor='black', facecolor="none"))
ax.imshow(Zgrid,
origin='lower', aspect='auto',
extent=ext,
alpha=0.8,
cmap=earth, transform=projec)
ax.axis('on')
ax.get_xaxis().set_visible(True)
ax.get_yaxis().set_visible(True)
ax.set_xlim(-30, 90)
ax.set_ylim(-60, 60)
plt.show()
您会注意到,使用ccrs.PlateCarree() 投影时,KDE 很好地放置在非洲上空,但是使用ccrs.InterruptedGoodeHomolosine() 投影时,您根本看不到世界地图。这是因为世界地图的规模很大。下面是两个示例的图片:
中断的 Goode Homolosine 投影(标准缩放):
中断的Goode Homolosine投影(缩小):
如果有人能解释为什么会发生这种情况,以及如何解决它,以便我可以在不同的投影上绘制相同的数据,那将不胜感激。
编辑:
我还想说明我尝试在我包含的示例中将transform=projec 添加到第 37 行,即:
ax.add_feature(cfeature.NaturalEarthFeature('physical', 'land', '50m',
edgecolor='black', facecolor="none", transform=projec))
但这并没有帮助。事实上,添加这个后,世界地图似乎根本不再出现。
编辑:
响应 JohanC 的回答,这是我使用该代码时得到的情节:
并缩小:
【问题讨论】:
标签: python matplotlib scipy kde cartopy