You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
606 B
24 lines
606 B
netcdf test {
|
|
dimensions:
|
|
maxStrlen64 = 64 ;
|
|
person = 5 ;
|
|
variables:
|
|
char person.name(person, maxStrlen64) ;
|
|
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.name =
|
|
"This is a data test string (pass 0).",
|
|
"This is a data test string (pass 1).",
|
|
"This is a data test string (pass 2).",
|
|
"This is a data test string (pass 3).",
|
|
"This is a data test string (pass 4)." ;
|
|
|
|
person.age = 1, 2, 3, 5, 8 ;
|
|
}
|
|
|