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
libcdi
Commits
9b08aa33
Commit
9b08aa33
authored
Jun 06, 2012
by
Uwe Schulzweida
Browse files
Docu update
parent
7ab7bb49
Changes
7
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
9b08aa33
2012-06-06 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* added support for grib_api key stepType [request: Drte Liermann]
* changed TIME_CONSTANT and TIME_VARIABLE to TSTEP_CONSTANT and TSTEP_XXX
* renamed vlistInqVarTime() vlistInqVarTsteptype()
2012-06-01 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
...
...
doc/tex/c_ref.tex
View file @
9b08aa33
...
...
@@ -1018,7 +1018,7 @@ vlistDefVar
\fi
}
\begin{verbatim}
int vlistDefVar(int vlistID, int gridID, int zaxisID, int t
imeID
);
int vlistDefVar(int vlistID, int gridID, int zaxisID, int t
steptype
);
\end{verbatim}
Define a Variable
...
...
doc/tex/c_vlist.tex
View file @
9b08aa33
...
...
@@ -21,7 +21,7 @@ and add a variable with {\tt vlistDefVar}.
int vlistID, varID;
...
vlistID = vlistCreate();
varID = vlistDefVar(vlistID, gridID, zaxisID, T
IME
_
VARIABLE
);
varID = vlistDefVar(vlistID, gridID, zaxisID, T
STEP
_
INSTANT
);
...
streamDefVlist(streamID, vlistID);
...
...
...
doc/tex/c_vlist_var.tex
View file @
9b08aa33
...
...
@@ -9,20 +9,20 @@ The function {\tt vlistDefVar} adds a new variable to vlistID.
\subsubsection*
{
Usage
}
\begin{verbatim}
int vlistDefVar(int vlistID, int gridID, int zaxisID, int t
imeID
);
int vlistDefVar(int vlistID, int gridID, int zaxisID, int t
steptype
);
\end{verbatim}
\hspace*
{
4mm
}
\begin{minipage}
[]
{
15cm
}
\begin{deflist}
{
\tt
vlistID
\
}
\begin{deflist}
{
\tt
tsteptype
\
}
\item
[{\tt vlistID}]
Variable list ID, from a previous call to
{
\htmlref
{
\tt
vlistCreate
}{
vlistCreate
}}
.
\item
[{\tt gridID}]
Grid ID, from a previous call to
{
\htmlref
{
\tt
gridCreate
}{
gridCreate
}}
.
\item
[{\tt zaxisID}]
Z-axis ID, from a previous call to
{
\htmlref
{
\tt
zaxisCreate
}{
zaxisCreate
}}
.
\item
[{\tt t
imeID
}]
One of the set of predefined
{
\CDI
}
time
identifier
s.
The valid
{
\CDI
}
time
identifier
s are
{
\tt
T
IME
\_
CONSTANT
}
and
{
\tt
T
IME
\_
VARIABLE
}
.
\item
[{\tt t
steptype
}]
One of the set of predefined
{
\CDI
}
time
step type
s.
The valid
{
\CDI
}
time
step type
s are
{
\tt
T
STEP
\_
CONSTANT
}
and
{
\tt
T
STEP
\_
INSTANT
}
.
\end{deflist}
\end{minipage}
...
...
@@ -44,7 +44,7 @@ and add a variable with {\tt vlistDefVar}.
int vlistID, varID;
...
vlistID = vlistCreate();
varID = vlistDefVar(vlistID, gridID, zaxisID, TIME
_
VARIABLE
);
varID = vlistDefVar(vlistID, gridID, zaxisID, TIME
_
INSTANT
);
...
streamDefVlist(streamID, vlistID);
...
...
...
doc/tex/f_ref.tex
View file @
9b08aa33
...
...
@@ -1026,7 +1026,7 @@ vlistDefVar
}
\begin{verbatim}
INTEGER FUNCTION vlistDefVar(INTEGER vlistID, INTEGER gridID, INTEGER zaxisID,
INTEGER t
imeID
)
INTEGER t
steptype
)
\end{verbatim}
Define a Variable
...
...
doc/tex/f_vlist.tex
View file @
9b08aa33
...
...
@@ -21,7 +21,7 @@ and add a variable with {\tt vlistDefVar}.
INTEGER vlistID, varID
...
vlistID = vlistCreate()
varID = vlistDefVar(vlistID, gridID, zaxisID, T
IME
_
VARIABLE
)
varID = vlistDefVar(vlistID, gridID, zaxisID, T
STEP
_
INSTANT
)
...
streamDefVlist(streamID, vlistID)
...
...
...
doc/tex/f_vlist_var.tex
View file @
9b08aa33
...
...
@@ -10,20 +10,20 @@ The function {\tt vlistDefVar} adds a new variable to vlistID.
\begin{verbatim}
INTEGER FUNCTION vlistDefVar(INTEGER vlistID, INTEGER gridID, INTEGER zaxisID,
INTEGER t
imeID
)
INTEGER t
steptype
)
\end{verbatim}
\hspace*
{
4mm
}
\begin{minipage}
[]
{
15cm
}
\begin{deflist}
{
\tt
vlistID
\
}
\begin{deflist}
{
\tt
tsteptype
\
}
\item
[{\tt vlistID}]
Variable list ID, from a previous call to
{
\htmlref
{
\tt
vlistCreate
}{
vlistCreate
}}
.
\item
[{\tt gridID}]
Grid ID, from a previous call to
{
\htmlref
{
\tt
gridCreate
}{
gridCreate
}}
.
\item
[{\tt zaxisID}]
Z-axis ID, from a previous call to
{
\htmlref
{
\tt
zaxisCreate
}{
zaxisCreate
}}
.
\item
[{\tt t
imeID
}]
One of the set of predefined
{
\CDI
}
time
identifier
s.
The valid
{
\CDI
}
time
identifier
s are
{
\tt
T
IME
\_
CONSTANT
}
and
{
\tt
T
IME
\_
VARIABLE
}
.
\item
[{\tt t
steptype
}]
One of the set of predefined
{
\CDI
}
time
step type
s.
The valid
{
\CDI
}
time
step type
s are
{
\tt
T
STEP
\_
CONSTANT
}
and
{
\tt
T
STEP
\_
INSTANT
}
.
\end{deflist}
\end{minipage}
...
...
@@ -45,7 +45,7 @@ and add a variable with {\tt vlistDefVar}.
INTEGER vlistID, varID
...
vlistID = vlistCreate()
varID = vlistDefVar(vlistID, gridID, zaxisID, TIME
_
VARIABLE
)
varID = vlistDefVar(vlistID, gridID, zaxisID, TIME
_
INSTANT
)
...
streamDefVlist(streamID, vlistID)
...
...
...
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