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  };
109 
110  /*!
111  \enum SamplePointsGeneratorType
112 
113  \brief Generator types used to create sample of points.
114  */
116  {
119  };
120 
121  /*!
122  \enum GeostatisticalMethodType
123 
124  \brief Geostatistical methods for measure of Spatial Variability
125  */
127  {
129  };
130 
131  /*!
132  \enum GeostatisticalModelType
133 
134  \brief Geostatistical models for measure of Spatial Variability
135  */
137  {
141  };
142 
143  /*!
144  \enum SkaterAggregationType
145 
146  \brief Skater aggregation types used to partition the spanning tree
147  */
149  {
153  };
154  }
155 }
156 
157 #endif // __TERRALIB_SA_ENUMS_H
KernelEstimationType
Definition: Enums.h:77
SkaterAggregationType
Skater aggregation types used to partition the spanning tree.
Definition: Enums.h:148
KernelCombinationType
Types of kernel combination.
Definition: Enums.h:89
URI C++ Library.
GeostatisticalModelType
Geostatistical models for measure of Spatial Variability.
Definition: Enums.h:136
KernelOutputType
Defines the kernel result storage mode.
Definition: Enums.h:104
GeostatisticalMethodType
Geostatistical methods for measure of Spatial Variability.
Definition: Enums.h:126
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:115
GPMConstructorStrategyType
Strategies to construc a GPM.
Definition: Enums.h:39