Skip to content
Snippets Groups Projects
Commit bcc8397c authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

example/cdi_copy: removed variable vdate and vtime

parent b488ae8c
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ int nts = 3; // Number of time steps
int main(void)
{
int taxisID, vlistID1, vlistID2, varID1, varID2, streamID1, streamID2, tsID;
int nmiss, vdate, vtime;
int nmiss;
double var1[nlon*nlat];
double var2[nlon*nlat*nlev];
......@@ -50,10 +50,6 @@ int main(void)
// Inquire the input time step
streamInqTimestep(streamID1, tsID);
// Get the verification date and time
vdate = taxisInqVdate(taxisID);
vtime = taxisInqVtime(taxisID);
// Define the output time step
streamDefTimestep(streamID2, tsID);
......
......@@ -12,7 +12,7 @@
INTEGER gridID, zaxisID1, zaxisID2, taxisID, tsID
INTEGER vlistID1, vlistID2, varID1, varID2, streamID1, streamID2
INTEGER i, nmiss, status, vdate, vtime
INTEGER i, nmiss, status
REAL*8 var1(nlon*nlat), var2(nlon*nlat*nlev)
! Open the input dataset
......@@ -48,10 +48,6 @@
! Inquire the input time step */
status = streamInqTimestep(streamID1, tsID)
! Get the verification date and time
vdate = taxisInqVdate(taxisID)
vtime = taxisInqVtime(taxisID)
! Define the output time step
status = streamDefTimestep(streamID2, tsID)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment