IODA
ObsIo.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 UCAR
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 "oops/util/abor1_cpp.h"
9 
10 #include "ioda/io/ObsIo.h"
12 
13 ////////////////////////////////////////////////////////////////////////
14 // Implementation of ObsIo base class
15 ////////////////////////////////////////////////////////////////////////
16 
17 namespace ioda {
18 
19 //--------------------------- public functions ---------------------------------------
20 //------------------------------------------------------------------------------------
22  oops::Log::trace() << "Constructing ObsIo" << std::endl;
23 }
24 
25 //------------------------------------------------------------------------------------
26 bool ObsIo::isVarDimByNlocs(const std::string & varName) const {
27  bool isDimByNlocs = false;
28  auto ivar = dims_attached_to_vars_.find(varName);
29  if (ivar != dims_attached_to_vars_.end()) {
30  if (ivar->second[0] == "nlocs") {
31  isDimByNlocs = true;
32  }
33  }
34  return isDimByNlocs;
35 }
36 
37 //------------------------------------------------------------------------------------
41 }
42 
43 //------------------------ protected functions ---------------------------------------
44 void ObsIo::print(std::ostream & os) const {}
45 
46 } // namespace ioda
Interfaces for ioda::Variable and related classes.
Dimensions_t max_var_size_
maximum variable size (ie, first dimension size)
Definition: ObsIo.h:97
void updateVarDimInfo()
update the variable and dimension information
Definition: ObsIo.cc:38
virtual void print(std::ostream &os) const =0
print() for oops::Printable base class
Definition: ObsIo.cc:44
VarNameObjectList var_list_
list of regular variables from source (file or generator)
Definition: ObsIo.h:103
VarNameObjectList dim_var_list_
list of dimension scale variables from source (file or generator)
Definition: ObsIo.h:106
VarDimMap dims_attached_to_vars_
map containing variables with their attached dimension scales
Definition: ObsIo.h:109
bool isVarDimByNlocs(const std::string &varName) const
return true if variable's first dimension is nlocs
Definition: ObsIo.cc:26
ObsGroup obs_group_
ObsGroup object representing io source/destination.
Definition: ObsIo.h:94
void collectVarDimInfo(const ObsGroup &obsGroup, VarNameObjectList &varObjectList, VarNameObjectList &dimVarObjectList, VarDimMap &dimsAttachedToVars, Dimensions_t &maxVarSize0)
collect variable and dimension information from a ioda ObsGroup
Definition: IodaUtils.cc:125