mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
6d8809100f
1. When running under windows (as opposed to cygwin) we need to make sure to not user /cygdrive/ file paths. This was ocurring in libdap4/d4read.c, but may occur elsewhere. 2. Shell scripts in the git repo are not being checked-out with the executable mode set. Had core.filemode set to false. Was a major hassle to fix.
20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
netcdf ref_tst_comp2 {
|
|
types:
|
|
compound vecmat_t {
|
|
char day ;
|
|
char mnth(3) ;
|
|
short vect(3) ;
|
|
float matr(2, 3) ;
|
|
}; // vecmat_t
|
|
dimensions:
|
|
n = 3 ;
|
|
variables:
|
|
vecmat_t obs(n) ;
|
|
vecmat_t obs:_FillValue = {"?", {"---"}, {-1, -2, -3}, {-4, -5, -6, -7, -8, -9}} ;
|
|
data:
|
|
|
|
obs = {"S", {"jan"}, {1, 2, 3}, {4, 5, 6, 7, 8, 9}},
|
|
{"M", {"feb"}, {11, 12, 13}, {4.25, 5.25, 6.25, 7.25, 8.25, 9.25}},
|
|
{"T", {"mar"}, {21, 22, 23}, {4.5, 5.5, 6.5, 7.5, 8.5, 9.5}} ;
|
|
}
|