我正在尝试使用 matplotlib 绘制 CMC grib2 压力预测文件来绘制压力等值线。grib2 网格的描述可以在这里找到:https ://weather.gc.ca/grib/grib2_reg_10km_e.html 。grib2 文件位于以下目录中:http : //dd.weather.gc.ca/model_gem_regional/10km/grib2/00/000/,以 CMC_reg_PRMSL_MSL_0_ps10km 开头,后跟日期。它是一个包含平均海平面压力的 grib 文件。
我的问题是我最终得到了一些直线等高线,这些直线等高线沿着实际压力等高线之上的纬度线。我认为这可能是因为我在 PlateCarree 而不是 Geodetic 中绘图,但等高线图不允许使用 Geodetic。我的情节的结果是:
代码如下:
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import datetime as dt
import cartopy
import cartopy.crs as ccrs
import Nio
gr = Nio.open_file('./data/CMC_reg_PRMSL_MSL_0_ps10km_2018111800_P000.grib2', 'r')
print(gr)
names = gr.variables.keys()
print("Variable Names:", names)
dims = gr.dimensions
print("Dimensions: ", dims)
attr = gr.attributes.keys()
print("Attributes: ", attr)
obs = gr.variables['PRMSL_P0_L101_GST0'][:]
lats = gr.variables["gridlat_0"][:]
lons = gr.variables["gridlon_0"][:]
fig = plt.figure(figsize=(15, 2))
intervals = range(95000, 105000, 400)
ax=plt.axes([0.,0.,1.,1.],projection=ccrs.PlateCarree())
obsobj = plt.contour(lons, lats, obs, intervals, cmap='jet',transform=ccrs.PlateCarree())
states_provinces = cartopy.feature.NaturalEarthFeature(
category='cultural',
name='admin_1_states_provinces_lines',
scale='50m',
facecolor='none')
ax.add_feature(cartopy.feature.BORDERS)
ax.coastlines(resolution='10m')
ax.add_feature(states_provinces,edgecolor='gray')
obsobj.clabel()
colbar =plt.colorbar(obsobj)
任何建议,将不胜感激。
更新
对于没有 PyNIO 的任何人,可以使用评论部分中的转储文件来重现以下内容。
只需删除对 NIO 的所有引用并将 lats、lons、obs 分配替换为以下内容。
lats = np.load('lats.dump')
lons = np.load('lons.dump')
obs = np.load('obs.dump')