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
FileFormat
Observation file format.
@ HDF5
HDF5 file format.
@ ODB
ODB file format.
FileFormat determineFileFormat(const std::string &filePath, FileFormat hint)
Determine the format of an observation file.
Definition: FileFormat.cc:13