RasterType.hpp
1 #ifndef OPALS_RASTER_TYPE_HPP_INCLUDED
2 #define OPALS_RASTER_TYPE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator defining different data selection modes
9  namespace RasterType
10  {
11  enum Type
12  {
13  point , ///< pixel (center) represents a point, mainly used for DTM grids
14  area , ///< pixel represents area, mainly used for rater images like hill shading, etc.
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif