grib2 code table

From: Luo, Chao <chao.luo_at_nyahnyahspammersnyahnyah>
Date: Tue Sep 18 2012 - 18:18:38 MDT

Hi all,

I'm getting this warning when trying to convert a GRIB2 file to netcdf file:

warning: NclGRIB2: codetable file "/home/cluo/lib/ncarg/grib2_codetables/ncep/4/4.2.2.4.table" not a valid GRIB2 code table".
Any idea where I can find this table?

Thanks,

CL

Here is the simple script I used:

------------------

begin

grib_in = addfile("../NOAA_HMS/burned_area_20120918_06_11_12km.grib2","r")
names = getfilevarnames(grib_in); extract all variable names

system("rm out.nc") ; remove any pre-existing file
ncdf_out = addfile("out.nc" ,"c") ; create output netCDF file

do i = 0, dimsizes(names)-1
ncdf_out->$names(i)$ = grib_in->$names(i)$
end do
end

------------------

_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Tue Sep 18 18:18:47 2012

This archive was generated by hypermail 2.1.8 : Wed Sep 26 2012 - 13:56:04 MDT