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.
18 lines
327 B
18 lines
327 B
netcdf test {
|
|
dimensions:
|
|
maxStrlen64 = 64 ;
|
|
variables:
|
|
char person1.name(maxStrlen64) ;
|
|
int person1.age ;
|
|
char person2.name(maxStrlen64) ;
|
|
int person2.age ;
|
|
data:
|
|
|
|
person1.name = "This is a data test string (pass 0)." ;
|
|
|
|
person1.age = 1 ;
|
|
|
|
person2.name = "This is a data test string (pass 1)." ;
|
|
|
|
person2.age = 2 ;
|
|
}
|
|
|