mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-06 15:34:44 +08:00
18 lines
371 B
Plaintext
18 lines
371 B
Plaintext
|
netcdf test_zerodim {
|
||
|
dimensions:
|
||
|
lon = 4 ;
|
||
|
time = UNLIMITED ; // (0 currently)
|
||
|
lat = 6 ;
|
||
|
unlim = UNLIMITED ; // (0 currently)
|
||
|
variables:
|
||
|
float var(unlim) ;
|
||
|
var:_ChunkSizes = 1024U ;
|
||
|
float lon(lon) ;
|
||
|
string lon:units = "degrees_east" ;
|
||
|
float lat(lat) ;
|
||
|
string lat:units = "degrees_north" ;
|
||
|
|
||
|
// global attributes:
|
||
|
string :title = "example for workshop" ;
|
||
|
}
|