netcdf-c/ncdump/ref_tst_perdimspecs.cdl
Dennis Heimbigner 62a4cc1ae0 Fix nccopy -c dim/x to actually use the dim/x value.
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();
2020-09-01 13:44:24 -06:00

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) ;
}