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
a9965aa3
Commit
a9965aa3
authored
Jul 05, 2012
by
Uwe Schulzweida
Browse files
grib scan timestep: changed Error() to Warning() for inconsistent timesteps
parent
397f76ae
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
a9965aa3
...
...
@@ -3,6 +3,10 @@
* Version 1.5.6 released
* using CGRIBEX library version 1.5.3
2012-07-04 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* grib scan timestep: changed Error() to Warning() for inconsistent timesteps
2012-07-04 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* stream_cdf::define_all_grids: modify check for same x and y varids
...
...
configure
View file @
a9965aa3
This diff is collapsed.
Click to expand it.
src/config.h.in
View file @
a9965aa3
...
...
@@ -185,11 +185,6 @@
/* Version number of package */
#undef VERSION
/* Enable large inode numbers on Mac OS X 10.5. */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS
...
...
src/stream_cgribex.c
View file @
a9965aa3
...
...
@@ -1140,8 +1140,8 @@ int cgribexScanTimestep(int streamID)
rstatus
=
gribRead
(
fileID
,
gribbuffer
,
&
readsize
);
if
(
rstatus
)
{
Error
(
"Inconsistent timestep %d (GRIB record %d/%d)!"
,
tsID
+
1
,
rindex
+
1
,
streamptr
->
tsteps
[
tsID
].
recordSize
);
Warning
(
"Inconsistent timestep %d (GRIB record %d/%d)!"
,
tsID
+
1
,
rindex
+
1
,
streamptr
->
tsteps
[
tsID
].
recordSize
);
break
;
}
...
...
src/stream_gribapi.c
View file @
a9965aa3
...
...
@@ -1618,8 +1618,8 @@ int gribapiScanTimestep(int streamID)
rstatus
=
gribRead
(
fileID
,
gribbuffer
,
&
readsize
);
if
(
rstatus
)
{
Error
(
"Inconsistent timestep %d (GRIB record %d/%d)!"
,
tsID
+
1
,
rindex
+
1
,
streamptr
->
tsteps
[
tsID
].
recordSize
);
Warning
(
"Inconsistent timestep %d (GRIB record %d/%d)!"
,
tsID
+
1
,
rindex
+
1
,
streamptr
->
tsteps
[
tsID
].
recordSize
);
break
;
}
...
...
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