mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-15 08:30:11 +08:00
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
|
netcdf ref_tst_perdimspecs {
|
||
|
dimensions:
|
||
|
lon = 40 ;
|
||
|
lat = 40 ;
|
||
|
time = UNLIMITED ;
|
||
|
variables:
|
||
|
float lon(lon) ;
|
||
|
float lat(lat) ;
|
||
|
double time(time) ;
|
||
|
float tas(time, lat, lon) ;
|
||
|
}
|