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
2b256d10
Commit
2b256d10
authored
Mar 06, 2006
by
Uwe Schulzweida
Browse files
Release version 0.9.6
parent
2b37ef79
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
2b256d10
2006-03-
??
Uwe Schulzweida <schulzweida@dkrz.de>
2006-03-
08
Uwe Schulzweida <schulzweida@dkrz.de>
* using GRIB library version 0.6.5
* vlist_var: Add function vlistChangeVarGrid
* program cdi: add option -s for short info
* cdfInqContents: improve GRID_CELL support
...
...
src/griblib.c
View file @
2b256d10
/* Generated automatically from m214003 on
Thu Feb 23 15:07:53
CET 2006 */
/* Generated automatically from m214003 on
Mon Mar 6 09:23:26
CET 2006 */
#if defined (HAVE_CONFIG_H)
# include "config.h"
...
...
@@ -2628,7 +2628,7 @@ void gribPrintSec4Wave(int *isec4)
/* #define HAVE_LIBZ 1 */
/* #define HAVE_LIBJASPER 1 */
int
BitsPerInt
=
sizeof
(
int
)
*
8
;
int
BitsPerInt
=
(
int
)
(
sizeof
(
int
)
*
8
)
;
/* GRIB block 0 - indicator block */
...
...
@@ -3055,7 +3055,7 @@ int encodeBDS(GRIBPACK *lGrib, int *gribLen, int decscale, int *isec2, int *isec
int
byte_per_value
;
int
nbpv
;
/* ibits = BitsPerInt; */
int
max_nbpv_pow2
;
double
max_nbpv_pow2
;
int
exponent
,
mantissa
;
int
fill_bytes
=
0
;
double
fpval
;
...
...
@@ -3098,7 +3098,7 @@ int encodeBDS(GRIBPACK *lGrib, int *gribLen, int decscale, int *isec2, int *isec
if
(
decscale
)
{
double
scale
=
pow
(
10
.
0
,
decscale
);
double
scale
=
pow
(
10
.
0
,
(
double
)
decscale
);
for
(
i
=
PackStart
;
i
<
datasize
;
++
i
)
data
[
i
]
*=
scale
;
}
...
...
@@ -3192,7 +3192,7 @@ int encodeBDS(GRIBPACK *lGrib, int *gribLen, int decscale, int *isec2, int *isec
else
factor
=
1
.
0
/
intpow2
(
binscale
);
}
max_nbpv_pow2
=
(
int
)
intpow2
(
nbpv
)
-
1
;
max_nbpv_pow2
=
(
double
)
(
intpow2
(
nbpv
)
-
1
)
;
ref2ibm
(
&
zref
,
BitsPerInt
);
...
...
@@ -4069,7 +4069,7 @@ static int decodeBDS(int decscale, unsigned char *bds, int *isec2, int *isec4, d
if
(
decscale
)
{
double
scale
;
scale
=
pow
(
10
.
0
,
-
decscale
);
scale
=
pow
(
10
.
0
,
(
double
)
-
decscale
);
fmin
*=
scale
;
zscale
*=
scale
;
}
...
...
@@ -7394,7 +7394,7 @@ int gribUnzip(unsigned char *dbuf, long dbufsize, unsigned char *sbuf, long sbu
return
(
gribLen
);
}
static
const
char
grb_libvers
[]
=
"0.6.5"
" of ""
Feb 23
2006"" ""
15:07:53
"
;
static
const
char
grb_libvers
[]
=
"0.6.5"
" of ""
Mar 6
2006"" ""
09:23:26
"
;
...
...
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