Changes between Initial Version and Version 3 of Ticket #81


Ignore:
Timestamp:
Oct 20, 2012, 1:54:07 PM (12 years ago)
Author:
mrusu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #81 – Description

    initial v3  
    11The netcdf converter should be documented in the query language guide.
    22
    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 holds 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 variables which hold the exported data. Example:
    44{{{
    5 select netcdf(c[10:20,*:*], "Global_radiation") from Global_radiation as c
     5select netcdf(c[10:20,*:*], "vars=Global_radiation") from Global_radiation as c
    66}}}
    77
    8 ''inv_netcdf'' can be invoked without any parameters, or with "var=VARNAME" which imports only the specified VARNAME 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:
    99{{{
    10 insert into Coll values inv_netcdf($1, "var=Global_radiation")
     10insert into Coll values inv_netcdf($1, "vars=Global_radiation:Snow")
    1111}}}