mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
15 lines
245 B
Plaintext
15 lines
245 B
Plaintext
|
netcdf tst_ncml {
|
||
|
dimensions:
|
||
|
m = 2 ;
|
||
|
t = UNLIMITED ; // (0 currently)
|
||
|
variables:
|
||
|
float var(t, m) ;
|
||
|
var:tatt = "text attribute value" ;
|
||
|
var:natt = 1, 2 ;
|
||
|
|
||
|
// global attributes:
|
||
|
:gtatt = "<, >, \', \", and &" ;
|
||
|
:gnatt = 3, 4 ;
|
||
|
data:
|
||
|
}
|