Salome HOME
Merge branch 'BR_quadtree' into V7_dev
[modules/hydro.git] / src / HYDROData / HYDROData_Bathymetry.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROData_Bathymetry_HeaderFile
20 #define HYDROData_Bathymetry_HeaderFile
21
22 #include "HYDROData_IAltitudeObject.h"
23 #include "HYDROData_QuadtreeNode.hxx"
24 #include <vtkPolyData.h>
25 #include <vtkIdList.h>
26
27 class QFile;
28 class gp_XYZ;
29 class gp_XY;
30 class Handle_HYDROData_PolylineXY;
31
32
33 DEFINE_STANDARD_HANDLE(HYDROData_Bathymetry, HYDROData_IAltitudeObject)
34
35
36 /**\class HYDROData_Bathymetry
37  * \brief Class that stores/retreives information about the Bathymetry.
38  *
39  * The Bathymetry represents measurement of the altitude of points on the terrain.
40  */
41 class HYDROData_Bathymetry : public HYDROData_IAltitudeObject
42 {
43 public:
44
45   typedef gp_XYZ                              AltitudePoint;
46   typedef NCollection_Sequence<AltitudePoint> AltitudePoints;
47
48 protected:
49
50   /**
51    * Enumeration of tags corresponding to the persistent object parameters.
52    */
53   enum DataTag
54   {
55     DataTag_First = HYDROData_IAltitudeObject::DataTag_First + 100, ///< first tag, to reserve
56     DataTag_AltitudePoints,    ///< altitude points, array of reals
57     DataTag_FilePath,          ///< bathymetry imported file path
58     DataTag_AltitudesInverted, ///< flag to invert z values
59   };
60
61 public:
62
63   DEFINE_STANDARD_RTTI(HYDROData_Bathymetry);
64
65   /**
66    * Returns the kind of this object. Must be redefined in all objects of known type.
67    */
68   HYDRODATA_EXPORT virtual const ObjectKind GetKind() const { return KIND_BATHYMETRY; }
69
70
71   /**
72    * Dump Bathymetry object to Python script representation.
73    */
74   HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath,
75                                                      MapOfTreatedObjects& theTreatedObjects ) const;
76
77 public:      
78   // Public methods to work with Bathymetry altitudes.
79
80   /**
81    * Replace current altitude points by new one.
82    * \param thePoints the altitude points list
83    */
84   HYDRODATA_EXPORT virtual void             SetAltitudePoints( const AltitudePoints& thePoints );
85
86   /**
87    * Returns altitude points list.
88    * \return points list
89    */
90   HYDRODATA_EXPORT virtual AltitudePoints   GetAltitudePoints(bool IsConvertToGlobal = false) const;
91   HYDRODATA_EXPORT virtual HYDROData_QuadtreeNode* GetQuadtreeNodes() const;
92
93   HYDRODATA_EXPORT virtual vtkPolyData* GetVtkDelaunay2D() const;
94   //HYDRODATA_EXPORT bool interpolZtriangle(const gp_XY& point, vtkIdList* triangle, double* z);
95
96   /**
97    * Remove all altitude points.
98    */
99   HYDRODATA_EXPORT virtual void             RemoveAltitudePoints();
100
101   /**
102    * Returns altitude for given point.
103    * \param thePoint the point to examine
104    * \param theMethod interpolation model, default 0 = nearest point
105    * \return altitude value
106    */
107   HYDRODATA_EXPORT virtual double           GetAltitudeForPoint( const gp_XY& thePoint, int theMethod=0 ) const;
108
109 public:
110   // Public methods to work with files.
111
112   /**
113    * Stores the bathymetry file path
114    * \param theFilePath image file path
115    */
116   HYDRODATA_EXPORT void                     SetFilePath( const TCollection_AsciiString& theFilePath );
117
118   /**
119    * Returns uploaded bathymetry file path
120    */
121   HYDRODATA_EXPORT TCollection_AsciiString  GetFilePath() const;
122
123   /**
124    * Set flag indicating needs to invert altitude values
125    * \param theIsInverted new invert value
126    * \param theIsUpdate flag indicating necessity to update points
127    */
128   HYDRODATA_EXPORT void                     SetAltitudesInverted( const bool theIsInverted,
129                                                                   const bool theIsUpdate = true );
130
131   /**
132    * Returns flag indicating needs to invert altitude values.
133    */
134   HYDRODATA_EXPORT bool                     IsAltitudesInverted() const;
135
136   /**
137    * Imports Bathymetry data from file. The supported file types:
138    *  - xyz
139    * \param theFileName the path to file
140    * \return \c true if file has been successfully read
141    */
142   HYDRODATA_EXPORT virtual bool             ImportFromFile( const TCollection_AsciiString& theFileName );
143
144   HYDRODATA_EXPORT Handle_HYDROData_PolylineXY CreateBoundaryPolyline() const;
145
146   HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
147
148 private:
149
150   /**
151    * Imports Bathymetry data from 'XYZ' file.
152    */
153   bool                                      importFromXYZFile( QFile&          theFile,
154                                                                AltitudePoints& thePoints ) const;
155   static std::map<int, HYDROData_QuadtreeNode*> myQuadtrees;
156   static std::map<int, vtkPolyData*> myDelaunay2D;
157
158   bool                                      importFromASCFile( QFile&          theFile,
159                                                                AltitudePoints& thePoints ) const;
160
161 protected:
162
163   friend class HYDROData_Iterator;
164
165   /**
166    * Creates new object in the internal data structure. Use higher level objects 
167    * to create objects with real content.
168    */
169   HYDRODATA_EXPORT HYDROData_Bathymetry();
170
171   /**
172    * Destructs properties of the object and object itself, removes it from the document.
173    */
174   HYDRODATA_EXPORT ~HYDROData_Bathymetry();
175 };
176
177 #endif