mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
14 lines
268 B
Plaintext
14 lines
268 B
Plaintext
netcdf tmp_jsonconvention {
|
|
dimensions:
|
|
d1 = 1 ;
|
|
variables:
|
|
int v(d1) ;
|
|
v:varconvention = "{\n\"key1\": [1,2,3], \"key2\": {\"key3\": \"abc\"}}" ;
|
|
|
|
// global attributes:
|
|
:grpconvention = "{\"key1\": [1,2,3], \n\"key2\": {\"key3\": \"abc\"}}" ;
|
|
data:
|
|
|
|
v = _ ;
|
|
}
|