Loading...
Searching...
No Matches
GeostatisticalMethodSemivariogram.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/core/GeostatisticalMethodSemivariogram.h
22
23 \brief This file contains a class that represents the geostatistical semivariogram method.
24
25 \reference Adapted from TerraLib4.
26*/
27
28#ifndef __TERRALIB_SA_INTERNAL_GEOSTATISTICALMETHODSEMIVARIOGRAM_H
29#define __TERRALIB_SA_INTERNAL_GEOSTATISTICALMETHODSEMIVARIOGRAM_H
30
31// Terralib Includes
33
34namespace te
35{
36 namespace sa
37 {
38 /*!
39 \class GeostatisticalMethodSemivariogram
40
41 \brief Semivariogram is a function describing the degree of spatial dependence of a spatial random field.
42 It is defined as the variance of the difference between field values at two locations (x and y)
43 across realizations of the field.
44
45 */
47 {
48 public:
49
50 /*! \brief Default constructor. */
52
53 /*! \brief Virtual destructor. */
55
56 public:
57
58 /*! \brief Function to calculate the geostatistical information. */
59 virtual boost::numeric::ublas::matrix<double> calculate();
60 };
61 } // end namespace sa
62} // end namespace te
63
64#endif //__TERRALIB_SA_INTERNAL_GEOSTATISTICALMETHODSEMIVARIOGRAM_H
This file contains a virtual class that represents the geostatistical method.
Semivariogram is a function describing the degree of spatial dependence of a spatial random field....
virtual boost::numeric::ublas::matrix< double > calculate()
Function to calculate the geostatistical information.
GeostatisticalMethodSemivariogram()
Default constructor.
virtual ~GeostatisticalMethodSemivariogram()
Virtual destructor.
Geostatistics is used for modelling spatial data. It provides accurate and reliable estimations of ph...
TerraLib.
#define TESAEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:133