mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
99eef24bc2
- 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.
18 lines
389 B
Plaintext
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"}} ;
|
|
}
|
|
|
|
|