mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
netcdf test {
|
|
dimensions:
|
|
person = 5 ;
|
|
variables:
|
|
int person.age(person) ;
|
|
|
|
// global attributes:
|
|
:Facility.PrincipleInvestigator = "Mark Abbott\n",
|
|
"Ph.D" ;
|
|
:Facility.DataCenter = "COAS Environmental Computer Facility" ;
|
|
:Facility.DrifterType = "MetOcean WOCE/OCM" ;
|
|
data:
|
|
|
|
person.age = 1, 2, 3, 5, 8 ;
|
|
}
|