All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
raster.h
Go to the documentation of this file.
1 /* Copyright (C) 2001-2009 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 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 General Public License for more details.
14 
15  You should have received a copy of the GNU 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 raster_h.h
22 
23  \brief This file contains include headers for the Raster module.
24  */
25 
26 #ifndef __TERRALIB_RASTER_INTERNAL_RASTER_H_H
27 #define __TERRALIB_RASTER_INTERNAL_RASTER_H_H
28 
29 // TerraLib
30 #include "raster/Band.h"
31 #include "raster/BandProperty.h"
32 #include "raster/Exception.h"
33 #include "raster/Grid.h"
34 #include "raster/Raster.h"
35 #include "raster/RasterFactory.h"
36 #include "raster/RasterProperty.h"
37 #include "raster/Utils.h"
38 
39 /*!
40  \defgroup rst Raster
41 
42  \brief This module can be used to manage geographical data with raster representation.
43 
44  The TerraLib Raster module provides the base classes foundation for handling geographical data such as remote sensing imagery data.
45  The raster data structure can be viewed as a matrix of cells or pixels associated with spatial locations forming a regular grid.
46  By design each cell can be viewed, individually, as a multi-dimensional data.
47 
48  This module defines only the abstract classes and therefore implementations must be provided.
49  We call these implementations: raster drivers. TerraLib provides raster drivers on top of other libraries (e.g. GDAL), DBMS (e.g. PostGIS Raster)
50  and an In-Memory implementation.
51 
52  The main classes/concepts in this module are listed here. The namespace associated to the Raster module is te::rst.
53  To know more about it, see the te::rst namespace documentation.
54 */
55 
56 namespace te
57 {
58  /*!
59  \brief Namespace for the Raster module of TerraLib.
60  */
61  namespace rst
62  {
63  } // end namespace rst
64 } // end namespa
65 
66 #endif // __TERRALIB_RASTER_INTERNAL_RASTER_H_H
67 
It gives access to values in one band (dimension) of a raster.
It describes one band (or dimension) of a raster.
A rectified grid is the spatial support for raster data.
An exception class for the Raster module.
Raster property.
This is the abstract factory for Rasters.
Utility functions for the raster module.
An abstract class for raster data strucutures.