Changes between Version 3 and Version 4 of Ticket #81


Ignore:
Timestamp:
Oct 25, 2012, 8:46:03 AM (12 years ago)
Author:
mrusu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #81 – Description

    v3 v4  
    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 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:
    44{{{
    55select 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 "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:
    99{{{
    1010insert into Coll values inv_netcdf($1, "vars=Global_radiation:Snow")