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

streamFilesuffix: bug fix for IEG

parent 4b6092d5
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@
* add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds
* cdfReadVarSliceDP: add swapxy support
* cdfInqContents: support of grid stdname 'longitude' and 'latitude'
* streamFilesuffix: bug fix for IEG [report: Class Teichmann]
* netcdf: support of timeunit 'year'
* Version 1.2.1 released
......
......@@ -465,7 +465,7 @@ int streamInqByteorder(int streamID)
char *streamFilesuffix(int filetype)
{
static char *fileSuffix[] = {"", ".grb", ".g2", ".nc", ".nc2", ".nc4", ".srv", ".ext", ".h5", ".ieg"};
static char *fileSuffix[] = {"", ".grb", ".g2", ".nc", ".nc2", ".nc4", ".srv", ".ext", ".ieg", ".h5"};
int size = (int) (sizeof(fileSuffix)/sizeof(char *));
if ( filetype > 0 && filetype < size )
......
......@@ -38,8 +38,8 @@ char *Filetypes[] = {
"netCDF4",
"SERVICE",
"EXTRA",
"HDF5",
"IEG",
"HDF5",
};
#undef UNDEFID
......
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