Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
beca600e
Commit
beca600e
authored
Dec 16, 2008
by
Uwe Schulzweida
Browse files
Docu update
parent
cdcf604a
Changes
11
Hide whitespace changes
Inline
Side-by-side
doc/cdo_refcard.pdf
View file @
beca600e
No preview for this file type
doc/tex/mod/Enlarge
View file @
beca600e
...
...
@@ -16,7 +16,7 @@
@BeginDescription
Enlarge all fields of @file{ifile} to a user given grid. Normally only the last
field element is used for the enlargement. If however the input and output
grid are re
ctan
gular, a zonal or meridional enlargement is possible.
grid are regular
lon/lat grids
, a zonal or meridional enlargement is possible.
Zonal enlargement takes place, if the xsize of the input field is 1 and
the ysize of both grids are the same. For meridional enlargement the ysize
have to be 1 and the xsize of both grids should have the same size.
...
...
doc/tex/mod/Genweights
View file @
beca600e
...
...
@@ -28,7 +28,7 @@ Each operator is using a different interpolation method.
@BeginDescription
Generates bilinear interpolation weights and writes the result to a file.
This interpolation method only works on re
ctan
gular grids.
This interpolation method only works on regular
quadrilateral
grids.
@EndDescription
@EndOperator
...
...
@@ -40,7 +40,7 @@ This interpolation method only works on rectangular grids.
@BeginDescription
Generates bicubic interpolation weights and writes the result to a file.
This interpolation method only works on re
ctan
gular grids.
This interpolation method only works on regular
quadrilateral
grids.
@EndDescription
@EndOperator
...
...
@@ -91,7 +91,7 @@ not to SCRIP!
@BeginExample
Say @file{ifile} contains fields on a re
ctan
gular grid.
Say @file{ifile} contains fields on a regular
quadrilateral
grid.
To remap all fields bilinear to a T42 Gaussian grid use:
@BeginVerbatim
cdo genbil,t42grid ifile remapweights.nc
...
...
doc/tex/mod/Info
View file @
beca600e
...
...
@@ -47,7 +47,7 @@ number to identify the variables.
@BeginDescription
Prints information, simple statistics and a map for each field of all input
datasets. The map will be printed only for fields on a re
ctan
gular grid.
datasets. The map will be printed only for fields on a regular
lon/lat
grid.
@EndDescription
@EndOperator
...
...
doc/tex/mod/Intgrid
View file @
beca600e
...
...
@@ -10,7 +10,7 @@
@BeginDescription
This module contains operators to interpolate all input fields to a new grid.
All interpolation methods in this module only work on re
ctan
gular grids.
All interpolation methods in this module only work on regular
lon/lat
grids.
@EndDescription
@EndModule
...
...
@@ -76,7 +76,7 @@ STRING Target grid description file or name
@BeginExample
Say @file{ifile} contains fields on a re
ctan
gular grid.
Say @file{ifile} contains fields on a regular
lon/lat
grid.
To interpolate all fields bilinear to a T42 Gaussian grid use:
@BeginVerbatim
cdo intgridbil,t42grid ifile ofile
...
...
doc/tex/mod/Invert
View file @
beca600e
...
...
@@ -8,8 +8,7 @@
@Operators = invertlat
@BeginDescription
This operator inverts the latitudes of all fields with a regular
rectangular grid.
This operator inverts the latitudes of all fields with a regular lon/lat grid.
@C This module inverts 2D fields on a rectangular grid. Depending on the chosen
@C operator the field, only the data or only the grid description is inverted.
@EndDescription
...
...
doc/tex/mod/Merstat
View file @
beca600e
...
...
@@ -12,7 +12,7 @@
This module computes meridional statistical values of the input fields.
According to the chosen operator the meridional minimum, maximum,
sum, average, variance, standard deviation or a certain percentile is
written to @file{ofile}. All input fields need to have the same re
ctan
gular
written to @file{ofile}. All input fields need to have the same regular
lon/lat
grid.
@EndDescription
@EndModule
...
...
doc/tex/mod/Remapgrid
View file @
beca600e
...
...
@@ -23,7 +23,7 @@ methods see @cite{SCRIP}.
@BeginDescription
Performs a bilinear interpolation on all input fields.
This interpolation method only works on re
ctan
gular grids.
This interpolation method only works on regular
quadrilateral
grids.
@EndDescription
@EndOperator
...
...
@@ -35,7 +35,7 @@ This interpolation method only works on rectangular grids.
@BeginDescription
Performs a bicubic interpolation on all input fields.
This interpolation method only works on re
ctan
gular grids.
This interpolation method only works on regular
quadrilateral
grids.
@EndDescription
@EndOperator
...
...
@@ -86,7 +86,7 @@ not to SCRIP!
@BeginExample
Say @file{ifile} contains fields on a re
ctan
gular grid.
Say @file{ifile} contains fields on a regular
quadrilateral
grid.
To remap all fields bilinear to a T42 Gaussian grid type:
@BeginVerbatim
cdo remapbil,t42grid ifile ofile
...
...
doc/tex/mod/Zonstat
View file @
beca600e
...
...
@@ -12,7 +12,7 @@ This module computes zonal statistical values of the input fields.
According to the chosen operator the zonal minimum, maximum,
sum, average, variance, standard deviation or a certain percentile
is written to @file{ofile}. All input fields need to have the same
re
ctan
gular grid.
regular
quadrilateral
grid.
@EndDescription
@EndModule
...
...
src/Smooth9.c
View file @
beca600e
...
...
@@ -2,7 +2,7 @@
This file is part of CDO. CDO is a collection of Operators to
manipulate and analyse Climate model Data.
Copyright (C) 2003-200
7
Uwe Schulzweida, Uwe.Schulzweida@zmaw.de
Copyright (C) 2003-200
8
Uwe Schulzweida, Uwe.Schulzweida@zmaw.de
See COPYING file for copying and redistribution conditions.
This program is free software; you can redistribute it and/or modify
...
...
src/operator_help.h
View file @
beca600e
...
...
@@ -25,7 +25,7 @@ static char *InfoHelp[] = {
" number to identify the variables."
,
" map Dataset information and simple map"
,
" Prints information, simple statistics and a map for each field of all input"
,
" datasets. The map will be printed only for fields on a re
ctan
gular grid."
,
" datasets. The map will be printed only for fields on a regular
lon/lat
grid."
,
NULL
};
...
...
@@ -846,8 +846,7 @@ static char *InvertHelp[] = {
" invertlat ifile ofile"
,
""
,
"DESCRIPTION"
,
" This operator inverts the latitudes of all fields with a regular"
,
" rectangular grid. "
,
" This operator inverts the latitudes of all fields with a regular lon/lat grid. "
,
NULL
};
...
...
@@ -967,7 +966,7 @@ static char *EnlargeHelp[] = {
"DESCRIPTION"
,
" Enlarge all fields of ifile to a user given grid. Normally only the last "
,
" field element is used for the enlargement. If however the input and output"
,
" grid are re
ctan
gular, a zonal or meridional enlargement is possible."
,
" grid are regular
lon/lat grids
, a zonal or meridional enlargement is possible."
,
" Zonal enlargement takes place, if the xsize of the input field is 1 and "
,
" the ysize of both grids are the same. For meridional enlargement the ysize"
,
" have to be 1 and the xsize of both grids should have the same size."
,
...
...
@@ -1367,7 +1366,7 @@ static char *ZonstatHelp[] = {
" According to the chosen operator the zonal minimum, maximum, "
,
" sum, average, variance, standard deviation or a certain percentile"
,
" is written to ofile. All input fields need to have the same"
,
" re
ctan
gular grid. "
,
" regular
quadrilateral
grid. "
,
""
,
"OPERATORS"
,
" zonmin Zonal minimum"
,
...
...
@@ -1411,7 +1410,7 @@ static char *MerstatHelp[] = {
" This module computes meridional statistical values of the input fields."
,
" According to the chosen operator the meridional minimum, maximum,"
,
" sum, average, variance, standard deviation or a certain percentile is"
,
" written to ofile. All input fields need to have the same re
ctan
gular"
,
" written to ofile. All input fields need to have the same regular
lon/lat
"
,
" grid. "
,
""
,
"OPERATORS"
,
...
...
@@ -2539,10 +2538,10 @@ static char *RemapgridHelp[] = {
"OPERATORS"
,
" remapbil Bilinear interpolation"
,
" Performs a bilinear interpolation on all input fields."
,
" This interpolation method only works on re
ctan
gular grids."
,
" This interpolation method only works on regular
quadrilateral
grids."
,
" remapbic Bicubic interpolation"
,
" Performs a bicubic interpolation on all input fields."
,
" This interpolation method only works on re
ctan
gular grids."
,
" This interpolation method only works on regular
quadrilateral
grids."
,
" remapcon Conservative remapping"
,
" Performs a first order conservative remapping on all input fields."
,
" remapdis Distance-weighted average remapping"
,
...
...
@@ -2582,10 +2581,10 @@ static char *GenweightsHelp[] = {
"OPERATORS"
,
" genbil Generate bilinear interpolation weights"
,
" Generates bilinear interpolation weights and writes the result to a file. "
,
" This interpolation method only works on re
ctan
gular grids."
,
" This interpolation method only works on regular
quadrilateral
grids."
,
" genbic Generate bicubic interpolation weights"
,
" Generates bicubic interpolation weights and writes the result to a file."
,
" This interpolation method only works on re
ctan
gular grids."
,
" This interpolation method only works on regular
quadrilateral
grids."
,
" gencon Generate conservative interpolation weights"
,
" Generates first order conservative interpolation weights and"
,
" writes the result to a file."
,
...
...
@@ -2634,7 +2633,7 @@ static char *IntgridHelp[] = {
""
,
"DESCRIPTION"
,
" This module contains operators to interpolate all input fields to a new grid."
,
" All interpolation methods in this module only work on re
ctan
gular grids."
,
" All interpolation methods in this module only work on regular
lon/lat
grids."
,
""
,
"OPERATORS"
,
" interpolate PINGO grid interpolation"
,
...
...
@@ -3026,7 +3025,7 @@ static char *Smooth9Help[] = {
" smooth9 ifile ofile"
,
""
,
"DESCRIPTION"
,
" Performs a 9 point smoothing on all fields with a re
ctan
gular grid."
,
" Performs a 9 point smoothing on all fields with a regular
quadrilateral
grid."
,
" The result at each grid point is a weighted average of the grid point plus"
,
" the 8 surrounding points. The center point receives a weight of 1.0, the "
,
" points at each side and above and below receive a weight of 0.5, and corner "
,
...
...
@@ -3313,7 +3312,7 @@ static char *ImportamsrHelp[] = {
static
char
*
ImportcmsafHelp
[]
=
{
"NAME"
,
" import_cmsaf - Import CM-SAF files"
,
" import_cmsaf - Import CM-SAF
HDF5
files"
,
""
,
"SYNOPSIS"
,
" import_cmsaf ifile ofile"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment