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
c6c638ae
Commit
c6c638ae
authored
Dec 05, 2014
by
Uwe Schulzweida
Browse files
netCDF absolute time axis with units month: change day from 0 to 1
parent
b8a408b1
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c6c638ae
...
...
@@ -2,6 +2,10 @@
* Version 1.6.7 released
2014-12-05 Uwe Schulzweida
* netCDF absolute time axis with units month: change day from 0 to 1
2014-12-03 Uwe Schulzweida
* gribapi: time dependent metadata [Feature #4720]
...
...
NEWS
View file @
c6c638ae
CDI NEWS
--------
Version 1.6.7 (5 December 2014):
Fixed bugs:
* GRIB2 output does not work
Version 1.6.6 (27 November 2014):
New features:
...
...
src/taxis.c
View file @
c6c638ae
...
...
@@ -1194,6 +1194,7 @@ void splitTimevalue(double timevalue, int timeunit, int *date, int *time)
else
if
(
timeunit
==
TUNIT_MONTH
)
{
vdate
=
(
int
)
timevalue
*
100
;
vdate
+=
1
;
vtime
=
0
;
}
else
if
(
timeunit
==
TUNIT_YEAR
)
...
...
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