mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
62a4cc1ae0
As it was, nccopy -c dim/x was sometimes being ignored. So modify nccopy to properly take into account. This also required a change to the nczarr code because it was not applying default chunking in the same way as libhdf5. Modify ncdump/tst_nccopy4.sh to test this feature properly. Also add a similar test to nczarr_test. Additionally, fix some other things that were causing Visual Studio builds with testing to not work. * fix curl testing under CMake to properly handle case where DAP is disabled, but byterange support is enabled. * properly test and/or define uintptr_t * Convert _O_XXX to O_XXX flags used by open();
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
netcdf ref_tst_perdimspecs {
|
|
dimensions:
|
|
lon = 40 ;
|
|
lat = 40 ;
|
|
time = UNLIMITED ;
|
|
variables:
|
|
float lon(lon) ;
|
|
float lat(lat) ;
|
|
double time(time) ;
|
|
float tas(time, lat, lon) ;
|
|
}
|