IDTM.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/Vector.hpp>
6 #include <opals/GridLimit.hpp>
7 #include <opals/GridFeature.hpp>
8 #include <opals/GridInterpolator.hpp>
9 
10 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
11  #if defined _DEBUG && !defined OPALS_NO_DEBUG
12  #pragma comment(lib, "opalsDTM_d.lib")
13  #else
14  #pragma comment(lib, "opalsDTM.lib")
15  #endif
16 #endif
17 
18 namespace opals {
19 
20  namespace opts
21  {
22  /// Options of \ref ModuleDTM
23  namespace DTM
24  {
25  /// Options of \ref ModuleDTM
26  using Options =
27  IGroup< Names::_, false,
41  >;
42  }
43  }
44 
45  /// Calculates a high quality Digital Terrain Model in hybrid grid structure (i.e. regular grid + structure lines).
46  /** The aim of opalsDTM is to calculate a high quality Digital Terrain Model (DTM) in hybrid grid structure " "based on mass points, individual spotheight point, structure lines, and border lines bo stored in one or " "more OPALS datamanager (ODM) files. The resulting DTM is stored as a hybrid grid consisting of a regular " "height raster including line and spotheight point information. */
47  /// \see \ref ModuleDTM
48  class OPALS_API IDTM : virtual public IModuleBase
49  {
50 
51  public:
52  static IDTM* New();
53  static IDTM* New( IControlObject &controlObject );
54  static IDTM* New( const IModuleBase &parent );
55  static IDTM* New( const IModuleBase &parent, IControlObject &controlObject );
56 
57  virtual ~IDTM() {}
58 
59  /// \name Access to module-specific options.
60  ///@{
62  virtual Options& opts() = 0;
63  virtual const Options& opts() const = 0;
64  ///@}
65 
66  };
67 
68 };
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Contains the public interface of OPALS.
Definition: ApplyTrafo.hpp:5
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
A group of options.
Definition: IOption.hpp:108
Calculates a high quality Digital Terrain Model in hybrid grid structure (i.e. regular grid + structu...
Definition: IDTM.hpp:48
IGroup< Names::_, false, ILeaf< Names::inFile, false, Vector< Path > >, ILeaf< Names::outFile, false, Path >, ILeaf< Names::tileSize, false, unsigned >, ILeaf< Names::gridSize, false, double >, ILeaf< Names::interpolation, false, GridInterpolator >, ILeaf< Names::neighbours, false, int >, ILeaf< Names::searchRadius, false, double >, ILeaf< Names::weightFunc, false, Vector< String > >, ILeaf< Names::feature, false, Vector< opals::GridFeature::Enum > >, ILeaf< Names::filter, false, String >, ILeaf< Names::limit, false, GridLimit >, ILeaf< Names::multiBand, false, bool >, ILeaf< Names::extrapolationCheck, false, bool > > Options
Options of Module DTM.
Definition: IDTM.hpp:41