|
Last change
on this file since 471 was
1,
checked in by lfita, 11 years ago
|
- -- --- Opening of the WRF+LMDZ coupling repository --- -- -
WRF: version v3.3
LMDZ: version v1818
More details in:
|
|
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 */ |
|---|
| 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.