Loading [MathJax]/extensions/tex2jax.js
IODA
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ObsStore-selection.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 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 /*! \addtogroup ioda_internals_engines_obsstore
8  *
9  * @{
10  * \file ObsStore-selection.h
11  * \brief Functions for transfering ioda::Selection to ObsStore
12  */
13 #pragma once
14 
15 #include <vector>
16 
17 #include "./Selection.hpp"
19 #include "ioda/defs.h"
20 
21 namespace ioda {
22 namespace Engines {
23 namespace ObsStore {
24 /// \brief translate a ioda::Selection to and ObsStore Selection
25 /// \ingroup ioda_internals_engines_obsstore
27  const std::vector<Dimensions_t>& dim_sizes);
28 
29 /// \brief generate the dimension selection structure from hyperslab specs
30 /// \ingroup ioda_internals_engines_obsstore
32  const Selection::VecDimensions_t& stride,
33  const Selection::VecDimensions_t& block,
34  std::vector<ioda::ObsStore::SelectSpecs>& selects);
35 
36 /// \brief generate the dimension selection structure from point specs
37 /// \ingroup ioda_internals_engines_obsstore
38 void genDimSelects(const std::vector<Selection::VecDimensions_t>& points,
39  std::vector<ioda::ObsStore::SelectSpecs>& selects);
40 
41 /// \brief generate the dimension selection structure from dimension index specs
42 /// \ingroup ioda_internals_engines_obsstore
43 void genDimSelects(const std::vector<Selection::SingleSelection>& actions,
44  const std::vector<Dimensions_t>& dim_sizes,
45  std::vector<ioda::ObsStore::SelectSpecs>& selects);
46 } // namespace ObsStore
47 } // namespace Engines
48 } // namespace ioda
49 
50 /// @}
Dataspace selections for reading and writing ioda::Variable data.
Functions for ObsStore Selection.
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
std::vector< Dimensions_t > VecDimensions_t
Definition: Selection.h:50
void genDimSelects(const Selection::VecDimensions_t &start, const Selection::VecDimensions_t &count, const Selection::VecDimensions_t &stride, const Selection::VecDimensions_t &block, std::vector< ioda::ObsStore::SelectSpecs > &selects)
generate the dimension selection structure from hyperslab specs
ioda::ObsStore::Selection createObsStoreSelection(const ioda::Selection &selection, const std::vector< Dimensions_t > &dim_sizes)
translate a ioda::Selection to and ObsStore Selection