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

stream_history: added NC4 support

parent be59bb8a
No related branches found
No related tags found
No related merge requests found
2010-06-15 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
2010-06-16 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* using CGRIBEX library version 1.4.5
* Version 1.4.5 released
2010-05-16 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* stream_history: added NC4 support [report: Etienne Tourigny]
2010-05-13 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* cdfDefXYaxis: check also dimnames (bug fix) [report: Mikhail Itkin]
......
......@@ -15,7 +15,9 @@ void streamDefHistory(int streamID, int length, const char *history)
streamptr = stream_to_pointer(streamID);
if ( streamptr->filetype == FILETYPE_NC || streamptr->filetype == FILETYPE_NC2 )
if ( streamptr->filetype == FILETYPE_NC ||
streamptr->filetype == FILETYPE_NC2 ||
streamptr->filetype == FILETYPE_NC4 )
{
char *histstring;
size_t len;
......@@ -40,7 +42,9 @@ int streamInqHistorySize(int streamID)
streamptr = stream_to_pointer(streamID);
if ( streamptr->filetype == FILETYPE_NC || streamptr->filetype == FILETYPE_NC2 )
if ( streamptr->filetype == FILETYPE_NC ||
streamptr->filetype == FILETYPE_NC2 ||
streamptr->filetype == FILETYPE_NC4 )
{
size = cdfInqHistorySize(streamID);
}
......@@ -55,7 +59,9 @@ void streamInqHistoryString(int streamID, char *history)
streamptr = stream_to_pointer(streamID);
if ( streamptr->filetype == FILETYPE_NC || streamptr->filetype == FILETYPE_NC2 )
if ( streamptr->filetype == FILETYPE_NC ||
streamptr->filetype == FILETYPE_NC2 ||
streamptr->filetype == FILETYPE_NC4 )
{
cdfInqHistoryString(streamID, history);
}
......
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