Changes between Version 8 and Version 9 of ProcessingOutput


Ignore:
Timestamp:
09/30/14 15:31:36 (10 years ago)
Author:
dubos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProcessingOutput

    v8 v9  
    2121== Visualization with Paraview == 
    2222 
    23 Paraview requires some data and metadata that are not currently provided in the NetCDF output. Yann has done the required modifications and will commit them soon. 
     23DYNAMICO, with or without XIOS, now produces files that can be directly read and visualized by Paraview. 
    2424 
    25 == Interpolation to lat-lon with nco and cdo == 
    26  
    27 [https://code.zmaw.de/projects/cdo cdo] can interpolate from unstructured meshes to lat-lon grids. However it also needs in a single file data and metadata that are current split in separate files. The following commands will merge the necessary data in a single file that can be processed by cdo. 
     25== Grouping fields together for nco and cdo post-processing == 
     26[https://code.zmaw.de/projects/cdo cdo] can interpolate from unstructured meshes to lat-lon grids. However it also needs in a single file data and metadata that are currently split in separate files, unless XIOS output is used. The following commands will merge the necessary data in a single file that can be processed by cdo. 
    2827 
    2928{{{ 
     
    3332}}} 
    3433 
    35 At this point merged.nc contains the surface pressure data (ps.nc) and the metadata expected by CDO. Additional fields can be merged into the same file using 'ncks -A' provided they are associated hexagons. This includes potential temperature (theta.nc), surface geopotential (phis.nc), geopotential (phi.nc). 
     34At this point merged.nc contains the surface pressure data (ps.nc) and the metadata expected by CDO. Additional fields can be merged into the same file using 'ncks -A' provided they are associated to hexagons. This includes potential temperature (theta.nc), surface geopotential (phis.nc), geopotential (phi.nc). 
     35 
     36The above manipulations are not needed on files written through XIOS. These files can directly be used with cdo. 
     37 
     38== Interpolation to lat-lon with nco and cdo == 
    3639 
    3740CDO needs a text file describing the target grid :  
    38  
    3941{{{ 
    4042cat > mygrid << EOF 
     
    5153In the above example the text file mygrid describing regular mesh with 1-degree resolution is created. 
    5254Finally cdo can be invoked to interpolate all fields to a lat-lon grid : 
    53  
    5455{{{ 
    5556cdo remapdis,mygrid merged.nc latlon.nc 
     
    5960 
    6061This procedure is an interim solution which should be replaced by built-in output to lat-lon grids in the near future. 
    61