Salome HOME
Merge branch 'BR_LAND_COVER_MAP' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDROData / HYDROData_LandCoverMap.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_LANDCOVER_MAP_HeaderFile
20 #define HYDROData_LANDCOVER_MAP_HeaderFile
21
22 #include <HYDROData_Entity.h>
23 #include <TDataStd_ExtStringArray.hxx>
24
25 DEFINE_STANDARD_HANDLE( HYDROData_LandCoverMap, HYDROData_Entity )
26
27 class TopoDS_Face;
28 class TopoDS_Shape;
29 class TopoDS_Iterator;
30 class TopTools_ListOfShape;
31 class Handle( HYDROData_PolylineXY );
32 class Handle( HYDROData_Object );
33 class HYDROData_MapOfFaceToStricklerType;
34 class gp_Pnt2d;
35
36 class HYDROData_LandCoverMap : public HYDROData_Entity
37 {
38 protected:
39   friend class HYDROData_Iterator;
40
41   enum DataTag
42   {
43     DataTag_First = HYDROData_Entity::DataTag_First + 100, ///< first tag, to reserve
44     DataTag_Shape,                                         ///< the shape presentation of the land cover map
45     DataTag_Types,
46   };
47
48 public:
49   class Iterator
50   {
51   public:
52     Iterator( const HYDROData_LandCoverMap& );
53     Iterator( const Handle( HYDROData_LandCoverMap )& );
54     ~Iterator();
55
56     void Init( const HYDROData_LandCoverMap& );
57     bool More() const;
58     void Next();
59     
60     TopoDS_Face Face() const;
61     QString StricklerType() const;
62
63   private:
64     TopoDS_Iterator* myIterator;
65     int              myIndex;
66     Handle(TDataStd_ExtStringArray) myArray;
67   };
68
69   HYDROData_LandCoverMap();
70   ~HYDROData_LandCoverMap();
71
72   virtual const ObjectKind GetKind() const;
73
74   bool ImportQGIS( const QString& theFileName );
75   bool ExportQGIS( const QString& theFileName ) const;
76   bool ExportTelemac( const QString& theFileName, double theDeflection ) const;
77
78   bool Add( const Handle( HYDROData_Object )&, const QString& theType );
79   bool Add( const Handle( HYDROData_PolylineXY )&, const QString& theType );
80
81   bool Remove( const TopoDS_Face& );
82   bool Remove( const TopTools_ListOfShape& );
83
84   bool Split( const Handle( HYDROData_PolylineXY )& );
85   bool Merge( const TopTools_ListOfShape&, const QString& theType );
86
87   TopoDS_Face FindByPoint( const gp_Pnt2d&, QString& theType ) const;
88
89 protected:
90   TopoDS_Shape GetShape() const;
91   void SetShape( const TopoDS_Shape& );
92
93   bool LocalPartition( const TopoDS_Shape&, const QString& theNewType );
94   static TopoDS_Shape MergeFaces(const TopTools_ListOfShape& theFaces,
95                       bool IsToUnify, double theTolerance = 1E-3 );
96   void StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& );
97
98 public:
99   DEFINE_STANDARD_RTTI( HYDROData_LandCoverMap );
100
101 private:
102   friend class Iterator;
103   friend class test_HYDROData_LandCoverMap;
104 };
105
106 #endif