使用wgrib2插值GRIB2数据

目录

重采样grib2数据

使用 wgrib2 可以将现有 grib2 数据转码成参数不同的 grib2 数据,例如修改投影方式、修改经纬度范围、插值等。 wgrib2 使用 -new_grid 参数提供上述功能。

详情参见:http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/new_grid.html

安装

必须开启 makefile 中的 USE_IPOLATES 编译 wgrib2 才可以使用插值功能。我在 cygwin 下编译通过。

使用

摘抄自官网

-new_grid_winds W -new_grid A B C outfile
W = earth or grid
earth means that the U wind goes eastward
grid means that U wind goes from grid (i,j) to (i+1,j)
which is not eastward in a Lambert-conformal or polar stereographic grids
A, B, C are the output grid description
outfile is an output file. The grib-2 interpolated records are written in outfile

示例

将经纬度分辨率改为 1 度,经度从 0 到 359,纬度从 -90 到 +89

wgrib2 60.t.grb2 -set_grib_type same -new_grid_winds earth -new_grid latlon 0:360:1 -90:180:1 60.out.t.grb2