Changes between Version 3 and Version 4 of Ticket #81
- Timestamp:
- Oct 25, 2012, 8:46:03 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #81 – Description
v3 v4 1 1 The netcdf converter should be documented in the query language guide. 2 2 3 ''netcdf'' can be invoked without any parameters in which case the data is saved under a variable with name "data" for primitive types and using the attribute names as variables for struct types, or with "vars=VAR1 :VAR2:...:VARN" which specifies the names of the variables which hold the exported data. Example:3 ''netcdf'' can be invoked without any parameters in which case the data is saved under a variable with name "data" for primitive types and using the attribute names as variables for struct types, or with "vars=VAR1;VAR2;...;VARN" which specifies the names of the struct attributes which hold the exported data. Example: 4 4 {{{ 5 5 select netcdf(c[10:20,*:*], "vars=Global_radiation") from Global_radiation as c 6 6 }}} 7 7 8 ''inv_netcdf'' can be invoked without any parameters, or with "vars=VAR1 :VAR2:...:VARN" which imports only the specified VARi from the file, e.g:8 ''inv_netcdf'' can be invoked without any parameters, or with "vars=VAR1;VAR2;...;VARN" which imports only the specified VARi from the file, e.g: 9 9 {{{ 10 10 insert into Coll values inv_netcdf($1, "vars=Global_radiation:Snow")