mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +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:
|
|
}
|