8 #include "eckit/config/YAMLConfiguration.h"
10 #include "ioda/core/FileFormat.h"
14 #include "ioda/io/ObsIoFileRead.h"
25 std::string fileName = ioParams.
fileName;
27 oops::Log::trace() <<
"Constructing ObsIoFileRead: Opening file for read: "
28 << fileName << std::endl;
65 os <<
"ObsIoFileRead: " << std::endl;
85 "must be set for obs files in the ODB format.",
ioda_Here());
88 "must be set for obs files in the ODB format.",
ioda_Here());
97 backendParams.
flush =
false;
Definitions for setting up backends with file and memory I/O.
The ioda exception class.
Groups are a new implementation of ObsSpaces.
oops::Parameter< FileFormat > format
oops::Parameter< std::string > queryFile
oops::Parameter< std::string > mappingFile
oops::Parameter< bool > readFromSeparateFiles
oops::RequiredParameter< std::string > fileName
input obs file name
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
ObsIoFileRead(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)
bool eachProcessGeneratesSeparateObs() const override
return true if each process generates a separate series of observations (e.g. read from different fil...
void createObsGroupFromOdbFile(const std::string &fileName, const Parameters_ &ioParams)
Read the contents of an ODB file into obs_group_.
void createObsGroupFromHdf5File(const std::string &fileName)
Read the contents of an HDF5 file into obs_group_.
bool read_separate_files_
void print(std::ostream &os) const override
print routine for oops::Printable base class
Dimensions_t max_var_size_
maximum variable size (ie, first dimension size)
Dimensions_t nlocs_
number of locations from source (file or generator)
VarNameObjectList var_list_
list of regular variables from source (file or generator)
std::vector< std::string > obs_grouping_vars_
names of variables to be used to group observations into records
VarNameObjectList dim_var_list_
list of dimension scale variables from source (file or generator)
VarDimMap dims_attached_to_vars_
map containing variables with their attached dimension scales
ObsGroup obs_group_
ObsGroup object representing io source/destination.
oops::Parameter< ObsGroupingParameters > obsGrouping
options controlling obs record grouping
int getMpiTimeRank() const
get the MPI rank number
std::size_t getMpiRank() const
get the MPI rank number
Has_Variables vars
Use this to access variables.
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual Dimensions getDimensions() const
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
IODA_DL ObsGroup openFile(const ODC_Parameters ¶ms, Group emptyStorageGroup=ioda::Engines::ObsStore::createRootGroup())
Import an ODB file.
BackendNames
Backend names.
IODA_DL Group constructBackend(BackendNames name, BackendCreationParameters ¶ms)
This is a simple factory style function that will instantiate a different backend based on a given na...
@ Create
Create a new file.
@ Open
Open an existing file.
@ Hdf5File
HDF5 file access.
@ ObsStore
ObsStore in-memory.
@ Truncate_If_Exists
If the file already exists, overwrite it.
@ Read_Only
Open the file in read-only mode.
static DistributionMaker< AtlasDistribution > maker(DIST_NAME)
std::string uniquifyFileName(const std::string &fileName, const std::size_t rankNum, const int timeRankNum)
uniquify the output file name
void collectVarDimInfo(const ObsGroup &obsGroup, VarNameObjectList &varObjectList, VarNameObjectList &dimVarObjectList, VarDimMap &dimsAttachedToVars, Dimensions_t &maxVarSize0)
collect variable and dimension information from a ioda ObsGroup
FileFormat determineFileFormat(const std::string &filePath, FileFormat hint)
Determine the format of an observation file.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Used to specify backend creation-time properties.
BackendFileActions action
BackendCreateModes createMode
BackendOpenModes openMode
Encapsulate the parameters to make calling simpler.
std::string filename
The name of the database "file" to open.