Enums.h
Go to the documentation of this file.
1 
2 /*!
3 \file terralib/mnt/core/Enums.h
4 
5 \brief General enumerations.
6 
7 */
8 
9 #ifndef __TERRALIB_MNT_INTERNAL_ENUMS_H
10 #define __TERRALIB_MNT_INTERNAL_ENUMS_H
11 
12 namespace te
13 {
14  namespace mnt
15  {
16  /*!
17  \enum LType
18  \brief Line types.
19  */
20  enum Ltype{
25  };
26 
27  /*!
28  \enum NType
29  \brief Node types.
30  */
31  enum Ntype
32  {
42  };
43 
44  /*!
45  \enum InputType
46  \brief Input types.
47  */
48  enum InputType
49  {
52  };
53 
55  {
56  MediaCotaQuad, /*!< Weighted Average/Z Value/Quadrant */
57  MediaQuad, /*!< Weighted Average/Quadrant */
58  MediaPonderada, /*!< Weighted Average */
59  Media, /*!< Simple Average */
60  Vizinho, /*!< Nearest Neighbor */
61  SplineBilinear, /*!< Bilinear Spline */
62  SplineBicubico, /*!< Bicubic Spline */
63  Mitasova, /*!< Mitasova Spline */
64  Bilinear, /*!< Bilinear */
65  Bicubico, /*!< Bicubic */
66  Linear, /*!< Linear */
67  QuinticoBrkLine, /*!< Quintic with breaklines */
68  Quintico /*!< Quintic without breaklines */
69  };
70 
71  enum Curve
72  {
76  };
77 
78  enum mntType
79  {
81  TIN,
85  };
86 
87  enum Simplify
88  {
93  };
94 
95  }
96 }
97 #endif
InputType
Input types.
Definition: Enums.h:48
Simplify
Definition: Enums.h:87
Interpolator
Definition: Enums.h:54
Curve
Definition: Enums.h:71
Ntype
Definition: Enums.h:31
mntType
Definition: Enums.h:78
URI C++ Library.
Ltype
Definition: Enums.h:20