IODA
ioda::Selection::SingleSelection Struct Reference

Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action". More...

#include <Selection.h>

Public Member Functions

 SingleSelection (SelectionOperator op, const VecDimensions_t &start, const VecDimensions_t &count, const VecDimensions_t &stride={}, const VecDimensions_t &block={})
 
 SingleSelection (SelectionOperator op, const std::vector< VecDimensions_t > &points)
 
 SingleSelection (SelectionOperator op, size_t dimension, const VecDimensions_t &indices_starts, const VecDimensions_t &indices_counts={})
 
 SingleSelection ()
 

Public Attributes

SelectionOperator op_
 
VecDimensions_t start_
 
VecDimensions_t count_
 
VecDimensions_t stride_
 
VecDimensions_t block_
 
std::vector< VecDimensions_tpoints_
 
size_t dimension_
 
VecDimensions_t dimension_indices_starts_
 
VecDimensions_t dimension_indices_counts_
 

Detailed Description

Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action".

See also
SelectionOperator
Selection

There are three types of selections that you can make. 1) A hyperslab selection, where you can define the bounds using a start point, a span (count), stride, and block. For details of what these all mean, see the HDF5 documentation. 2) Individual points. 3) Axis + indices along the axis. You select a fundamental axis (e.g. location, channel), and then list the indices along that axis that you want to select.

Note
SelectionOperator can be a bit troublesome for case #3. If the result is not what you would naturally expect, please read the code and file an issue.
Case 3 might not be supported on the HDF5 backend. Requires HDF5 version >= 1.12.0.

Definition at line 67 of file Selection.h.


The documentation for this struct was generated from the following file: