Changes between Version 4 and Version 5 of ProcessingOutput


Ignore:
Timestamp:
09/10/13 10:40:36 (11 years ago)
Author:
dubos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProcessingOutput

    v4 v5  
    11= Processing DYNAMICO output = 
    22 
    3 DYNAMICO outputs data on the native icasohedral grid in NetCDF-CF format, one file per field. Most fields are associated to hexagons, but some are associated to triangles. 
    4 Native files can be visualized with the VTKMapper tool developed by Patrick Brockmann. Recently ParaView has become able to visualize NetCDF-CF files too. For quantitative post-processing it is probably best to interpolate to Cartesian curvilinear coordinates such as lat-lon. 
     3DYNAMICO outputs data on the native icasohedral grid in NetCDF-CF format, one file per field. Each file contains the data and metadata describing the grid. Most fields are associated to hexagons, but some are associated to triangles. 
     4Native files can be visualized with the VTKMapper tool developed by Patrick Brockmann. Recently !ParaView has become able to visualize NetCDF-CF files too. For quantitative post-processing it is probably best to interpolate to Cartesian curvilinear coordinates such as lat-lon. 
    55 
    66== Visualization with VTKMapper == 
     
    2424}}} 
    2525 
    26 At this point merged.nc contains the surface pressure data (ps.nc) and the metadata expected by NCO. Additional fields provided they are associated hexagons. This includes potential temperature (theta.nc), surface geopotential (phis.nc), geopotential (phi.nc). 
     26At 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). 
    2727 
    28 Then nco can be invoked to interpolate all fields to a lat-lon grid : 
     28CDO needs a text file describing the target grid :  
    2929 
    3030{{{ 
    31 cdo remapdis,r180x90 merged.nc latlon.nc 
     31cat > mygrid << EOF 
     32gridtype = lonlat 
     33xsize    = 360 
     34ysize    = 180 
     35xfirst   = −179.5 
     36xinc     = 1 
     37yfirst   = -89.5 
     38yinc     = 1 
     39EOF 
    3240}}} 
    3341 
    34 In this example a regular mesh with 2-degree resolution is used. latlon.nc can be visualized using ncview or read/processed by standard tools. 
     42In the above example the text file mygrid describing regular mesh with 1-degree resolution is created. 
     43Finally cdo can be invoked to interpolate all fields to a lat-lon grid : 
     44 
     45{{{ 
     46cdo remapdis,mygrid merged.nc latlon.nc 
     47}}} 
     48 
     49latlon.nc can now be visualized using ncview or read/processed by standard tools. 
    3550 
    3651This procedure is an interim solution which should be replaced by built-in output to lat-lon grids in the near future.