RasterFactory.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/grib/RasterFactory.h
22 
23  \brief This is the concrete factory for GRIB.
24 */
25 
26 #ifndef __TERRALIB_GRIB_INTERNAL_RASTERFACTORY_H
27 #define __TERRALIB_GRIB_INTERNAL_RASTERFACTORY_H
28 
29 // TerraLib
30 #include "../raster/RasterFactory.h"
31 #include "Config.h"
32 
33 namespace te
34 {
35  namespace grib
36  {
37  /*!
38  \class RasterFactory
39 
40  \brief This is the abstract factory for Rasters.
41 
42  \sa te::rst::RasterFactory
43  */
45  {
46  public:
47 
48  ~RasterFactory();
49 
50  const std::string& getType() const;
51 
52  void getCreationalParameters(std::vector< std::pair<std::string, std::string> >& params) const;
53 
54  /*! \brief It initializes the factory: the singleton instance will be registered in the abstract factory DataSourceFactory. */
55  static void initialize();
56 
57  /*! \brief It finalizes the factory: the singleton instance will be destroyed and will be unregistered from the abstract factory DataSourceFactory. */
58  static void finalize();
59 
60  /*! \brief It return a map (string, string) containing all supported formats. */
61  std::map<std::string, std::string> getCapabilities() const;
62 
63  protected:
64 
65  RasterFactory();
66 
67  te::rst::Raster* create(te::rst::Grid* g, const std::vector<te::rst::BandProperty*> bands, const std::map<std::string, std::string>& rinfo, void* h = 0, void (*deleter)(void*) = 0);
68 
69  te::rst::Raster* build();
70 
71  private:
72 
74  };
75 
76  } // end namespace grib
77 } // end namespace te
78 
79 #endif // __TERRALIB_GRIB_INTERNAL_RASTERFACTORY_H
80 
An abstract class for raster data strucutures.
Definition: Raster.h:71
URI C++ Library.
static RasterFactory * sm_factory
Definition: RasterFactory.h:73
Configuration flags for GRIB.
This is the abstract factory for Rasters.
Definition: RasterFactory.h:44
#define TEGRIBEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:110
This is the abstract factory for Rasters.
Definition: RasterFactory.h:50
A rectified grid is the spatial support for raster data.
Definition: Grid.h:68