0

我的风显示有问题,我目前正在使用 GrADS,我有两个来自 AMPS 和 ERA5 的数据,显示南极半岛地区的风速和大小。

但是,在尝试找到问题后,我无法检测到为什么我的 AMPS 显示器显示的方向与右侧应显示的方向(西风)相反,我的 ERA5 显示器没有问题。

AMPS 数据;https://drive.google.com/file/d/1uNh6QqbXrP66NO1nbqDWsxZ0zTn7JGDS/view?usp=sharing

ERA5 数据;https://drive.google.com/file/d/17y7kJaYtZu5-RMMEUkIkBkQT9zLrdS1r/view?usp=sharing(u10_0001和 v10_0001)

当我用 NCL 对 AMPS 数据进行插值以获得我想要的区域时,它有什么关系吗?

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/esmf/ESMF_regridding.ncl"
OutFileName = "scrip_grid.nc"
f = addfile ("200603-200810_WRF_d6_UGRD_10m_mon.nc", "r")
lat2d = f->LAT
lon2d = f->LON
Opt = True
Opt@InterpMethod = "bilinear" ; default
Opt@ForceOverwrite = True
Opt@PrintTimings = True
curvilinear_to_SCRIP(OutFileName,lat2d,lon2d,Opt)

连同此,请在附件中找到我为 AMPS 和 ERA5 获得的显示器上的文件。我应该为 AMPS 配备的显示器就像 ERA5(后来)。

这些是使用 GrADS 的命令;

'define wspd=ave(mag(ugrd,vgrd),t=1,t=50)'
'set gxout shaded'
'set mpdset hires'
'run wind.gs'
'set mproj sps'
'set mpt 0 1 1 1.0'
'set grid on 3 1 0.5'
'd wspd'
'd skip(ugrd,20);vgrd'
'run cbarn'
4

0 回答 0