read_grib_r4

所属分类:Windows CE
开发工具:matlab
文件大小:3938KB
下载次数:75
上传日期:2014-12-16 14:21:14
上 传 者haohan_wei
说明:  读取GRIB格式的数据,例如NCEP数据,ECMWF数据等。
(read grib data by matlab code.)

文件列表:
read_grib_r4\read_grib.r4\BDS_unpack_mex5.c (3904, 2010-02-06)
read_grib_r4\read_grib.r4\BDS_unpack_mex5.mexglx (6578, 2008-11-26)
read_grib_r4\read_grib.r4\BDS_unpack_mex5.mexmac (9720, 2008-11-26)
read_grib_r4\read_grib.r4\BDS_unpack_mex5.mexmaci (12804, 2008-11-26)
read_grib_r4\read_grib.r4\BDS_unpack_mex5.mexmaci64 (9000, 2010-02-05)
read_grib_r4\read_grib.r4\BDS_unpack_mex5.mexw64 (8704, 2011-02-03)
read_grib_r4\read_grib.r4\ECMWF128.tab (7119, 2008-11-26)
read_grib_r4\read_grib.r4\ECMWF160.tab (4203, 2008-11-26)
read_grib_r4\read_grib.r4\NCEPOPER.tab (9850, 2008-11-26)
read_grib_r4\read_grib.r4\NCEPREAN.tab (10083, 2008-11-26)
read_grib_r4\read_grib.r4\private\bitshift2.m (221, 2008-11-26)
read_grib_r4\read_grib.r4\private\bitshift3.m (237, 2008-11-26)
read_grib_r4\read_grib.r4\private\extract_grib.m (1960, 2008-11-26)
read_grib_r4\read_grib.r4\private\find_grib_marker.m (820, 2012-04-03)
read_grib_r4\read_grib.r4\private\get_bds.m (453, 2008-11-26)
read_grib_r4\read_grib.r4\private\get_bms.m (527, 2010-02-05)
read_grib_r4\read_grib.r4\private\get_gds.m (6871, 2012-04-03)
read_grib_r4\read_grib.r4\private\Get_Parameter.m (272, 2008-11-26)
read_grib_r4\read_grib.r4\private\get_pds.m (1908, 2008-11-26)
read_grib_r4\read_grib.r4\private\gribhelp.m (4974, 2008-11-26)
read_grib_r4\read_grib.r4\private\ibm2flt.m (1201, 2008-11-26)
read_grib_r4\read_grib.r4\private\int2.m (439, 2008-11-26)
read_grib_r4\read_grib.r4\private\int3.m (1765, 2008-11-26)
read_grib_r4\read_grib.r4\private\is_grib_file.m (457, 2008-11-26)
read_grib_r4\read_grib.r4\private\levels.m (1858, 2008-11-26)
read_grib_r4\read_grib.r4\private\Set_Parameter_Table.m (64366, 2012-04-03)
read_grib_r4\read_grib.r4\private\table0.m (1248, 2008-11-26)
read_grib_r4\read_grib.r4\private\table1.m (353, 2008-11-26)
read_grib_r4\read_grib.r4\private\table3a.m (3181, 2008-11-26)
read_grib_r4\read_grib.r4\private\table4.m (299, 2008-11-26)
read_grib_r4\read_grib.r4\private\table5.m (505, 2008-11-26)
read_grib_r4\read_grib.r4\private\table6.m (1287, 2008-11-26)
read_grib_r4\read_grib.r4\private\tableA.m (3588, 2008-11-26)
read_grib_r4\read_grib.r4\read_grib.m (15595, 2012-04-17)
read_grib_r4\read_grib.r4\testfiles\CMC_reg_DSWRF_SFC_0_ps15km_2008110600_P015.grib (224982, 2008-11-26)
read_grib_r4\read_grib.r4\testfiles\eta.grb (106368, 2008-11-26)
read_grib_r4\read_grib.r4\testfiles\get_UV_fcast.sh (1330, 2008-11-26)
read_grib_r4\read_grib.r4\testfiles\grib_pr_255_200207_reduced_gaussian (407718, 2008-11-26)
read_grib_r4\read_grib.r4\testfiles\ncep_rean_test_file.grb (106368, 2008-11-26)
... ...

To: read_grib users From: Brian O. Blanton (brian_blanton@renci.org) Date: 06 November, 2008 Re: OPNML/MATLAB WMO GRiB Edition 1 reader, read_grib.m Version: 1.4.3 release V1.4.3 Changes: 1) added gds code for Polar Stereographic grids V1.4.0 Changes/Fixes/Improvements: 1) Gaussian grid codes removed from distribution 2) moved some functions to private subdirectory (int2,int3,bitshift2,...) 3) ibm2fltmex5.c moved into matlab code (private/ibm2flt.m) 4) fixed memory leak in BDS_unpack code, that manifests itself in R14. See code for details. Thanks to Felipe Nievinski and Julien Choisnard. 5) General cleanup of code 6) Online documentation improved. (not yet!!) V1.3.0 Changes/Fixes/Improvements: 1) added flexibility for different parameter tables 2) added NCEP operational (NCEPOPER) and ECMWF tables 128 and 160. 3) changed input arguments to varargin. This was necessary to make future enhancements easier. Calling read_grib is now done with property/value pairs. E.g., >> grib_struct=read_grib(gribname,irec,'HeaderFlag',0,'ParamTable','ECMWF128'); MANIFEST: The tar file for read_grib.m contains the following: README.read_grib (this file) BDS_unpack_mex5.c (BDS section decoder, mex file) read_grib.m (MATLAB function, actually gets called) private/ (directory of functions private to read_grib) testfiles/ (directory of GRiBs from various places. INSTALLATION: The tar file contents untar into the directory read_grib1.4.0. The files can be left here and the path to read_grib be included in the startup.m file. It might be a good idea to make a soft link from read_grib1.4.0 to read_grib, and put the directory "read_grib" in the MATLABPATH. COMPILATION: There is now only 1 mex file, written in c, that needs to be compiled. Fire up MATLAB in the read_grib directory and type the following: >> mex BDS_unpack_mex5.c All should go well. This code is known to work on Linux, DEC-alpha, IBM, SGI, and MACs!!!. The code is standard, and should work on most other platforms. Binaries are available for some platforms, and are shipped with the distribution. BINARIES: There are binaries for MAC OS X and i386 (glx) in the distribution.

近期下载者

相关文件


收藏者