netcdf-c/ncdump/cdl4/ref_tst_unlim2.cdl
Dennis Heimbigner 99eef24bc2 - Fix NCF-158 to modify ncgen flag defaults.
- Fix NCF-157 to modify DAP code to support
  partial variable retrieval.
- Fix of NCF-154 to solve problem of ncgen
  improperly processing data lists for variables
  of size greater than 2**18 bytes.
- Fix ncgen processing of char variables that have
  multiple unlimited dimensions.
- Partly fix Jira issue: NCF-145 (vlen issues).
- Benchmark program nc_test4/tst_ar4_*) requires arguments
  and should only be invoked inside a shell
  script; fixed so that they terminate cleanly
  if invoked with no arguments.
- Fix the Doxygen processing so it will work
  with make distcheck.
- Begin switchover to using an alternative to ncio.
- Begin support for in-memory (diskless) files.
2012-03-14 23:26:48 +00:00

18 lines
389 B
Plaintext

netcdf ref_tst_unlim2 {
dimensions:
D2 = 2 ;
U1 = UNLIMITED ; // (1 currently)
U2 = UNLIMITED ; // (2 currently)
UU3 = UNLIMITED ; // (4 currently)
UUU2 = UNLIMITED ; // (2 currently)
UUU3 = UNLIMITED ; // (6 currently)
variables:
char cuu(U1,D2,UU3);
char cuuu(U2,UUU2,UUU3);
data:
cuu = {"a","def"},{"xy"} ;
cuuu = {{"1", "two"}}, {{"three"},{"four","xy"}} ;
}