Enums.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18 */
19 
20 /*!
21  \file terralib/sa/Enums.h
22 
23  \brief Enumerations related to Spatial Analysis module.
24 */
25 
26 
27 #ifndef __TERRALIB_SA_ENUMS_H
28 #define __TERRALIB_SA_ENUMS_H
29 
30 namespace te
31 {
32  namespace sa
33  {
34  /*!
35  \enum GPMConstructorStrategyType
36 
37  \brief Strategies to construc a GPM.
38  */
40  {
44  };
45 
46  /*!
47  \enum GPMWeightsStrategyType
48 
49  \brief Strategies to calculate the weight for a GPM.
50  */
52  {
56  };
57 
58  /*!
59  \enum KernelFunction
60 
61  \brief Types of kernel function.
62  */
64  {
70  };
71 
72  /*!
73  \enum KernelFunction
74 
75  \brief Types of kernel estimation.
76  */
78  {
82  };
83 
84  /*!
85  \enum KernelCombinationType
86 
87  \brief Types of kernel combination.
88  */
90  {
97  };
98 
99  /*!
100  \enum KernelOutputType
101 
102  \brief Defines the kernel result storage mode.
103  */
105  {
109  };
110 
111  /*!
112  \enum SamplePointsGeneratorType
113 
114  \brief Generator types used to create sample of points.
115  */
117  {
120  };
121 
122  /*!
123  \enum GeostatisticalMethodType
124 
125  \brief Geostatistical methods for measure of Spatial Variability
126  */
128  {
130  };
131 
132  /*!
133  \enum GeostatisticalModelType
134 
135  \brief Geostatistical models for measure of Spatial Variability
136  */
138  {
142  };
143 
144  /*!
145  \enum SkaterAggregationType
146 
147  \brief Skater aggregation types used to partition the spanning tree
148  */
150  {
154  };
155  }
156 }
157 
158 #endif // __TERRALIB_SA_ENUMS_H
KernelEstimationType
Definition: Enums.h:77
SkaterAggregationType
Skater aggregation types used to partition the spanning tree.
Definition: Enums.h:149
KernelCombinationType
Types of kernel combination.
Definition: Enums.h:89
TerraLib.
GeostatisticalModelType
Geostatistical models for measure of Spatial Variability.
Definition: Enums.h:137
KernelOutputType
Defines the kernel result storage mode.
Definition: Enums.h:104
GeostatisticalMethodType
Geostatistical methods for measure of Spatial Variability.
Definition: Enums.h:127
KernelFunctionType
Definition: Enums.h:63
GPMWeightsStrategyType
Strategies to calculate the weight for a GPM.
Definition: Enums.h:51
SamplePointsGeneratorType
Generator types used to create sample of points.
Definition: Enums.h:116
GPMConstructorStrategyType
Strategies to construc a GPM.
Definition: Enums.h:39