mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
33 lines
794 B
Plaintext
33 lines
794 B
Plaintext
|
netcdf nc4_strings_comp {
|
||
|
dimensions:
|
||
|
lat = 6 ;
|
||
|
lon = 5 ;
|
||
|
variables:
|
||
|
int lat(lat) ;
|
||
|
int lon(lon) ;
|
||
|
string station(lat, lon) ;
|
||
|
string station:who = "james" ;
|
||
|
string station:names = "site_1", "site_2", "site_3" ;
|
||
|
string station:_edu.ucar.maps = "/lat", "/lon" ;
|
||
|
string scan_line(lon) ;
|
||
|
string scan_line:_edu.ucar.maps = "/lon" ;
|
||
|
string codec_name ;
|
||
|
data:
|
||
|
|
||
|
lat = 0, 10, 20, 30, 40, 50 ;
|
||
|
|
||
|
lon = -140, -118, -96, -84, -52 ;
|
||
|
|
||
|
station =
|
||
|
"one", "two", "three", "four", "five",
|
||
|
"one_b", "two_b", "three_b", "four_b", "five_b",
|
||
|
"one_c", "two_c", "three_c", "four_c", "five_c",
|
||
|
"one", "two", "three", "four", "five",
|
||
|
"one", "two", "three", "four", "five",
|
||
|
"one_f", "two_f", "three_f", "four_f", "five_f" ;
|
||
|
|
||
|
scan_line = "r", "r1", "r2", "r3", "r4" ;
|
||
|
|
||
|
codec_name = "mp3" ;
|
||
|
}
|