8 #ifndef IO_OBSFRAMEREAD_H_
9 #define IO_OBSFRAMEREAD_H_
11 #include "eckit/config/LocalConfiguration.h"
13 #include "ioda/core/IodaUtils.h"
14 #include "ioda/distribution/Distribution.h"
15 #include "ioda/io/ObsFrame.h"
16 #include "ioda/ObsSpaceParameters.h"
18 #include "oops/util/Logger.h"
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
38 static const std::string
classname() {
return "ioda::ObsFrameRead";}
45 std::vector<std::size_t>
index()
const override {
return indx_;}
69 Dimensions_t
frameCount(
const std::string & varName)
override;
89 bool readFrameVar(
const std::string & varName, std::vector<int> & varData);
90 bool readFrameVar(
const std::string & varName, std::vector<float> & varData);
91 bool readFrameVar(
const std::string & varName, std::vector<std::string> & varData);
100 std::shared_ptr<Distribution>
dist_;
156 void print(std::ostream & os)
const override;
180 std::vector<Dimensions_t> & frameIndex);
187 std::vector<Dimensions_t> & frameIndex);
193 std::vector<Dimensions_t> & records);
200 const std::vector<Dimensions_t> & frameIndex,
201 std::vector<Dimensions_t> & records);
208 const std::vector<Dimensions_t> & frameIndex,
209 std::vector<std::string> & groupingKeys);
215 const std::vector<Dimensions_t> & locIndex,
216 const std::vector<Dimensions_t> & records);
225 template<
typename DataType>
227 bool frameVarAvailable;
239 if (
obs_io_->isVarDimByNlocs(varName)) {
251 frameVar.
read<DataType>(varData, memSelect, frameSelect);
253 frameVarAvailable =
true;
255 frameVarAvailable =
false;
257 return frameVarAvailable;
std::shared_ptr< ObsIo > obs_io_
ObsIo object.
Selection createMemSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount)
create selection object for accessing a memory buffer
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 ObsFrameRead class.
bool readFrameVarHelper(const std::string &varName, std::vector< DataType > &varData)
read variable data from frame helper function
std::map< std::string, std::size_t > obs_grouping_
map for obs grouping via string keys
Dimensions_t adjusted_nlocs_frame_start_
current frame start for variable dimensioned along nlocs
Selection createIndexedFrameSelection(const std::vector< Dimensions_t > &varShape)
set up frontend and backend selection objects for the given variable
std::vector< std::size_t > index() const override
return list of indices indicating which locations were selected from ObsIo
void frameNext() override
move to the next frame
void applyMpiDistribution(const std::shared_ptr< Distribution > &dist, const std::vector< Dimensions_t > &locIndex, const std::vector< Dimensions_t > &records)
apply MPI distribution
Dimensions_t adjusted_nlocs_frame_count_
current frame count for variable dimensioned along nlocs
Dimensions_t frameCount(const std::string &varName) override
return current frame count for variable
Dimensions_t adjNlocsFrameCount() const override
return adjusted nlocs frame count
std::size_t rec_num_increment_
spacing between record numbers assigned on this process.
VarDimMap dims_attached_to_vars_
map showing association of dim names with each variable name
std::size_t next_rec_num_
next available record number
std::string distname_
\Brief Distribution Name
bool frameAvailable() override
true if a frame is available (not past end of frames)
void frameInit() override
initialize for walking through the frames
bool each_process_reads_separate_obs_
true if obs_io_ produces a different series of observations on each process, false if they are all th...
Dimensions_t basicFrameCount(const Variable &var)
return current frame count for variable
std::set< std::size_t > unique_rec_nums_
unique record numbers
static const std::string classname()
classname method for object counter
bool readFrameVar(const std::string &varName, std::vector< int > &varData)
read a frame variable
void print(std::ostream &os) const override
print routine for oops::Printable base class
std::shared_ptr< Distribution > dist_
MPI distribution object.
void buildObsGroupingKeys(const std::vector< std::string > &obsGroupVarList, const std::vector< Dimensions_t > &frameIndex, std::vector< std::string > &groupingKeys)
generate string keys for record number assignment
void genRecordNumbersGrouping(const std::vector< std::string > &obsGroupVarList, const std::vector< Dimensions_t > &frameIndex, std::vector< Dimensions_t > &records)
generate record numbers considering obs grouping
std::map< std::vector< std::string >, Selection > known_frame_selections_
cache for frame selection
void genRecordNumbersAll(const std::vector< Dimensions_t > &locIndex, std::vector< Dimensions_t > &records)
generate record numbers where each location is a unique record (no grouping)
std::map< std::vector< std::string >, Selection > known_mem_selections_
cache for memory buffer selection
ObsFrameRead(const ObsSpaceParameters ¶ms)
Dimensions_t frameStart() override
return current frame starting index
void genFrameLocationsAll(std::vector< Dimensions_t > &locIndex, std::vector< Dimensions_t > &frameIndex)
generate indices for all locations in current frame
bool insideTimingWindow(const util::DateTime &ObsDt)
Dimensions_t adjNlocsFrameStart() const override
return adjusted nlocs frame start
std::vector< std::size_t > recnums_
record numbers associated with the location indexes
std::vector< std::size_t > indx_
indexes of locations to extract from the input obs file
void genFrameLocationsTimeWindow(std::vector< Dimensions_t > &locIndex, std::vector< Dimensions_t > &frameIndex)
generate indices for locations in current frame after filtering out obs outside DA timing window
std::shared_ptr< const Distribution > distribution()
return the MPI distribution
std::vector< Dimensions_t > frame_loc_index_
location indices for current frame
std::vector< std::size_t > recnums() const override
return list of record numbers from ObsIo
void genFrameIndexRecNums(std::shared_ptr< Distribution > &dist)
generate frame indices and corresponding record numbers
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 read(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read the Variable - as char array. Ordering is row-major.
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.