mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
|
netcdf ref_tst_perdimspecs {
|
||
|
dimensions:
|
||
|
lon = 40 ;
|
||
|
lat = 41 ;
|
||
|
time = 42;
|
||
|
variables:
|
||
|
float lon(lon) ;
|
||
|
float lat(lat) ;
|
||
|
double time(time) ;
|
||
|
float tas(time, lat, lon) ;
|
||
|
}
|