Last change
on this file since 3532 was
2759,
checked in by aslmd, 3 years ago
|
adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size
|
File size:
603 bytes
|
Rev | Line | |
---|
[2759] | 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 */ |
---|
| 21 | char *k5toa(unsigned char *pds); |
---|
| 22 | char *k5_comments(unsigned char *pds); |
---|
| 23 | int setup_user_table(int center, int subcenter, int ptable); |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | struct ParmTable { |
---|
| 27 | char *name, *comment; |
---|
| 28 | }; |
---|
| 29 | |
---|
Note: See
TracBrowser
for help on using the repository browser.