8 #ifndef IO_OBSFRAMEWRITE_H_
9 #define IO_OBSFRAMEWRITE_H_
11 #include "eckit/config/LocalConfiguration.h"
13 #include "ioda/distribution/Distribution.h"
14 #include "ioda/io/ObsFrame.h"
15 #include "ioda/ObsSpaceParameters.h"
17 #include "oops/util/Logger.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
37 static const std::string
classname() {
return "ioda::ObsFrameWrite";}
50 const VarDimMap & varDimMap,
const Dimensions_t maxVarSize)
override;
68 Dimensions_t
frameCount(
const std::string & varName)
override;
77 const std::vector<int> & varData);
79 const std::vector<float> & varData);
81 const std::vector<std::string> & varData);
113 void print(std::ostream & os)
const override;
118 template<
typename DataType>
120 const std::vector<DataType> & varData) {
131 frameVar.
write<DataType>(varData, varDataSelect, frameSelect);
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
Selection createMemSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount)
create selection object for accessing a memory buffer
virtual void frameNext()
move to the next frame for a read frame object
virtual void frameInit()
initialize frame for a read frame object
Selection createEntireFrameSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount)
create selection object for accessing the entire frame variable
ObsGroup obs_frame_
ObsGroup object (temporary storage for a single frame)
Implementation of ObsFrameWrite class.
ObsFrameWrite(const ObsSpaceParameters ¶ms)
void writeFrameVar(const std::string &varName, const std::vector< int > &varData)
write a frame variable
void print(std::ostream &os) const override
print routine for oops::Printable base class
static const std::string classname()
classname method for object counter
void writeFrameVarHelper(const std::string &varName, const std::vector< DataType > &varData)
write variable data into frame helper function
Dimensions_t frameCount(const std::string &varName) override
return current frame count for variable
void createObsIoVariables(const Has_Variables &srcVarContainer, Has_Variables &destVarContainer, const VarDimMap &dimsAttachedToVars)
create set of variables from source variables and lists in the ObsIo backend
void copyObsIoDimCoords(const Has_Variables &srcVarContainer, Has_Variables &destVarContainer, const VarNameObjectList &dimVarList)
copy dimension coordinate values from the frame to the ObsIo backend
void createFrameSelection(const std::string &varName, Selection &feSelect, Selection &beSelect)
set up frontend and backend selection objects for the given variable
bool frameAvailable() override
true if a frame is available (not past end of frames)
Dimensions_t frameStart() override
return current frame starting index
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
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
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
std::vector< std::pair< std::string, Variable > > VarNameObjectList
typedef for holding list of variable names with associated variable object
std::map< std::string, std::vector< std::string > > VarDimMap
typedef for holding dim names attached to variables
std::vector< Dimensions_t > dimsCur
The dimensions of the data.