Cloned library NetCDF-C-4.9.2 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
466 B

2 years ago
netcdf tmp_jsonconvention {
dimensions:
d1 = 1 ;
variables:
int v(d1) ;
v:varjson1 = "{\"key1\": [1,2,3], \"key2\": {\"key3\": \"abc\"}}" ;
v:varjson2 = "[[1.0,0.0,0.0],[0.0,1.0,0.0],[0.0,0.0,1.0]]" ;
v:varvec1 = "1.0, 0.0, 0.0" ;
v:varvec2 = "[0.,0.,1.]" ;
// global attributes:
:globalfloat = 1. ;
:globalfloatvec = 1., 2. ;
:globalchar = "abc" ;
:globalillegal = "[ [ 1.0, 0.0, 0.0 ], [ 0.0, 1.0, 0.0 ], [ 0.0, 0.0, 1.0 " ;
data:
v = _ ;
}