Changes between Initial Version and Version 3 of Ticket #81
- Timestamp:
- Oct 20, 2012, 1:54:07 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #81 – Description
initial v3 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 variable with name "data", or with "var=VARNAME" which specifies the name of the variable which holdsthe 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 variables which hold the exported data. Example: 4 4 {{{ 5 select netcdf(c[10:20,*:*], " Global_radiation") from Global_radiation as c5 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 "var =VARNAME" which imports only the specified VARNAMEfrom 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 insert into Coll values inv_netcdf($1, "var =Global_radiation")10 insert into Coll values inv_netcdf($1, "vars=Global_radiation:Snow") 11 11 }}}