source: trunk/WRF.COMMON/WRFV3/external/io_grib1/WGRIB/cnames.h @ 2759

Last change on this file since 2759 was 2759, checked in by aslmd, 2 years ago

adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size

File size: 603 bytes
Line 
1/* cnames_file.c */
2
3/* search order for parameter names
4 *
5 * #define P_TABLE_FIRST
6 * look at external parameter table first
7 *
8 * otherwise use builtin NCEP-2 or ECMWF-160 first
9 */
10/* #define P_TABLE_FIRST */
11
12/* search order for external parameter table
13 * 1) environment variable GRIBTAB
14 * 2) environment variable gribtab
15 * 3) the file 'gribtab' in current directory
16 */
17
18
19/* cnames.c */
20/* then default values */
21char *k5toa(unsigned char *pds);
22char *k5_comments(unsigned char *pds);
23int setup_user_table(int center, int subcenter, int ptable);
24
25
26struct ParmTable {
27        char *name, *comment;
28};
29
Note: See TracBrowser for help on using the repository browser.