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  {
108  Attribute
109  };
110 
111  /*!
112  \enum SamplePointsGeneratorType
113 
114  \brief Generator types used to create sample of points.
115  */
117  {
119  Stratified
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  {
141  Gaussian
142  };
143 
144  /*!
145  \enum SkaterAggregationType
146 
147  \brief Skater aggregation types used to partition the spanning tree
148  */
150  {
153  Both
154  };
155  }
156 }
157 
158 #endif // __TERRALIB_SA_ENUMS_H
SamplePointsGeneratorType
Generator types used to create sample of points.
Definition: Enums.h:117
@ Stratified
Definition: Enums.h:119
@ Random
Definition: Enums.h:118
KernelFunctionType
Definition: Enums.h:64
@ Normal
Definition: Enums.h:66
@ Uniform
Definition: Enums.h:68
@ Negative_Exp
Definition: Enums.h:69
@ Triangular
Definition: Enums.h:67
@ Quartic
Definition: Enums.h:65
KernelOutputType
Defines the kernel result storage mode.
Definition: Enums.h:105
@ Attribute
Definition: Enums.h:108
@ Grid
Definition: Enums.h:106
@ GridOnArea
Definition: Enums.h:107
GPMConstructorStrategyType
Strategies to construc a GPM.
Definition: Enums.h:40
@ AdjacencyStrategy
Definition: Enums.h:41
@ DistanceStrategy
Definition: Enums.h:42
@ NearestNeighbor
Definition: Enums.h:43
KernelEstimationType
Definition: Enums.h:78
@ Probability
Definition: Enums.h:81
@ Spatial_Moving_Average
Definition: Enums.h:80
@ Density
Definition: Enums.h:79
GeostatisticalModelType
Geostatistical models for measure of Spatial Variability.
Definition: Enums.h:138
@ Gaussian
Definition: Enums.h:141
@ Exponential
Definition: Enums.h:140
@ Spherical
Definition: Enums.h:139
GPMWeightsStrategyType
Strategies to calculate the weight for a GPM.
Definition: Enums.h:52
@ NoWeightStrategy
Definition: Enums.h:53
@ SquaredInverseDistanceStrategy
Definition: Enums.h:55
@ InverseDistanceStrategy
Definition: Enums.h:54
GeostatisticalMethodType
Geostatistical methods for measure of Spatial Variability.
Definition: Enums.h:128
@ Semivariogram
Definition: Enums.h:129
KernelCombinationType
Types of kernel combination.
Definition: Enums.h:90
@ Log_Ratio
Definition: Enums.h:92
@ Ratio
Definition: Enums.h:91
@ Abs_Sum
Definition: Enums.h:95
@ Relative_Difference
Definition: Enums.h:94
@ Abs_Difference
Definition: Enums.h:93
@ Relative_Sum
Definition: Enums.h:96
SkaterAggregationType
Skater aggregation types used to partition the spanning tree.
Definition: Enums.h:150
@ Clusters
Definition: Enums.h:151
@ Both
Definition: Enums.h:153
@ Population
Definition: Enums.h:152
TerraLib.