IODA
FileFormat.cc
Go to the documentation of this file.
1
/*
2
* * (C) Crown copyright 2021, Met Office
3
*
4
* This software is licensed under the terms of the Apache Licence Version 2.0
5
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6
*/
7
8
#include "eckit/utils/StringTools.h"
9
#include "ioda/core/FileFormat.h"
10
11
namespace
ioda
{
12
13
FileFormat
determineFileFormat
(
const
std::string &filePath,
FileFormat
hint) {
14
if
(hint !=
FileFormat::AUTO
)
15
return
hint;
16
if
(eckit::StringTools::endsWith(eckit::StringTools::lower(filePath),
".odb"
))
17
return
FileFormat::ODB
;
18
return
FileFormat::HDF5
;
19
}
20
21
}
// namespace ioda
ioda
Definition:
FileFormat.cc:11
ioda::FileFormat
FileFormat
Observation file format.
Definition:
src/core/FileFormat.h:19
ioda::FileFormat::HDF5
@ HDF5
HDF5 file format.
ioda::FileFormat::ODB
@ ODB
ODB file format.
ioda::FileFormat::AUTO
@ AUTO
ioda::determineFileFormat
FileFormat determineFileFormat(const std::string &filePath, FileFormat hint)
Determine the format of an observation file.
Definition:
FileFormat.cc:13
mpas-bundle
ioda
src
core
FileFormat.cc
Generated on Wed Sep 8 2021 16:47:02 for IODA by
1.9.1