Salome HOME
corrections after merge
[modules/hydro.git] / src / HYDROData / HYDROData_LandCoverMap.cxx
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 #include <HYDROData_LandCoverMap.h>
20 #include <HYDROData_Object.h>
21 #include <HYDROData_PolylineXY.h>
22 #include <HYDROData_Tool.h>
23 #include <HYDROData_ShapeFile.h>
24
25 #include <BOPAlgo_BOP.hxx>
26 #include <BOPAlgo_Builder.hxx>
27 #include <BOPAlgo_PaveFiller.hxx>
28 #include <BOPCol_ListOfShape.hxx>
29 #include <BRep_Builder.hxx>
30 #include <BRepAdaptor_Curve.hxx>
31 #include <BRepAlgoAPI_Fuse.hxx>
32 #include <BRepBuilderAPI_MakeFace.hxx>
33 #include <GCPnts_QuasiUniformDeflection.hxx>
34 #include <TopoDS.hxx>
35 #include <TopoDS_Compound.hxx>
36 #include <TopoDS_Edge.hxx>
37 #include <TopoDS_Face.hxx>
38 #include <TopoDS_Iterator.hxx>
39 #include <TopoDS_Shell.hxx>
40 #include <TopExp_Explorer.hxx>
41 #include <TopTools_ListIteratorOfListOfShape.hxx>
42 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
43 #include <BOPAlgo_PaveFiller.hxx>
44 #include <BRepTools.hxx>
45 #include <TopExp_Explorer.hxx>
46 #include <ShapeUpgrade_UnifySameDomain.hxx>
47 #include <TopExp.hxx>
48 #include <TDataStd_Real.hxx>
49 #include <TopTools_IndexedMapOfShape.hxx>
50 #include <ShapeBuild_ReShape.hxx>
51 #include <ShapeFix_Shape.hxx>
52 #include <BRepCheck_Shell.hxx>
53 #include <BRepCheck_ListOfStatus.hxx>
54
55
56 #include <QFile>
57 #include <QString>
58 #include <QTextStream>
59
60 const char TELEMAC_FORMAT = 'f';
61 const int TELEMAC_PRECISION = 3;
62
63
64 IMPLEMENT_STANDARD_HANDLE(HYDROData_LandCoverMap, HYDROData_Entity)
65 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_LandCoverMap, HYDROData_Entity)
66
67 /**
68   Constructor
69   @param theMap the land cover map to iterate through
70 */
71 HYDROData_LandCoverMap::Explorer::Explorer( const HYDROData_LandCoverMap& theMap )
72 {
73   Init( theMap );
74 }
75
76 HYDROData_LandCoverMap::Explorer::Explorer( const Handle( HYDROData_LandCoverMap )& theMap )
77 {
78   if( theMap.IsNull() )
79   {
80     myExplorer = 0;
81     myIndex = -1;
82   }
83   else
84     Init( *theMap );
85 }
86
87 /**
88   Initialize the iterator
89   @param theMap the land cover map to iterate through
90 */
91 void HYDROData_LandCoverMap::Explorer::Init( const HYDROData_LandCoverMap& theMap )
92 {
93   TopoDS_Shape aShape = theMap.GetShape();
94   if( aShape.IsNull() )
95     myExplorer = 0;
96   else
97   {
98     myExplorer = new TopExp_Explorer();
99     myExplorer->Init( aShape, TopAbs_FACE );
100   }
101   
102   theMap.myLab.FindChild( DataTag_Types ).FindAttribute( TDataStd_ExtStringArray::GetID(), myArray );
103   if( myArray.IsNull() )
104     myIndex = -1;
105   else
106     myIndex = myArray->Lower();
107 }
108
109 /**
110   Destructor
111 */
112 HYDROData_LandCoverMap::Explorer::~Explorer()
113 {
114   delete myExplorer;
115 }
116
117 /**
118   Return the current 0-based index of the iterator
119   @return the current index
120 */
121 int HYDROData_LandCoverMap::Explorer::Index() const
122 {
123   if( myArray.IsNull() )
124     return -1;
125   else
126     return myIndex - myArray->Lower();
127 }
128
129 /**
130   Return if the iterator has more elements
131   @return if the iterator has more elements
132 */
133 bool HYDROData_LandCoverMap::Explorer::More() const
134 {
135   return !myArray.IsNull() && myExplorer && myExplorer->More();
136 }
137
138 /**
139   Move iterator to the next element
140 */
141 void HYDROData_LandCoverMap::Explorer::Next()
142 {
143   if( myExplorer )
144   {
145     myExplorer->Next();
146     myIndex++;
147   }
148 }
149
150 /**
151   Get the current land cover (face)
152   @return the land cover's face
153 */
154 TopoDS_Face HYDROData_LandCoverMap::Explorer::Face() const
155 {
156   if( myExplorer )
157     return TopoDS::Face( myExplorer->Current() );
158   else
159     return TopoDS_Face();
160 }
161
162 /**
163   Get the current land cover's Strickler type 
164   @return the land cover's Strickler type 
165 */
166 QString HYDROData_LandCoverMap::Explorer::StricklerType() const
167 {
168   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
169     return "";
170   else
171     return HYDROData_Tool::toQString( myArray->Value( myIndex ) );
172 }
173
174 /**
175   Set the Strickler type for the current land cover
176   @param theType the Strickler type
177 */
178 void HYDROData_LandCoverMap::Explorer::SetStricklerType( const QString& theType )
179 {
180   if( myArray.IsNull() || myIndex < myArray->Lower() || myIndex > myArray->Upper() )
181     return;
182   else
183     myArray->SetValue( myIndex, HYDROData_Tool::toExtString( theType ) );
184 }
185
186 /**
187   Constructor
188 */
189 HYDROData_LandCoverMap::HYDROData_LandCoverMap()
190   : HYDROData_Entity( Geom_No )
191 {
192 }
193
194 /**
195   Destructor
196 */
197 HYDROData_LandCoverMap::~HYDROData_LandCoverMap()
198 {
199 }
200
201 /**
202   Get object's kind
203   @return object's kind
204 */
205 const ObjectKind HYDROData_LandCoverMap::GetKind() const
206 {
207   return KIND_LAND_COVER_MAP;
208 }
209
210 int HYDROData_LandCoverMap::GetLCCount() const
211 {
212   Explorer anIt( *this );
213   int i = 0;
214   for( ; anIt.More(); anIt.Next() )
215     i++;
216   return i;
217 }
218
219 bool HYDROData_LandCoverMap::IsEmpty() const
220 {
221   Explorer anIt( *this );
222   if ( !anIt.More() )
223     return true;
224   else
225     return false;
226 }
227
228 /**
229   Load attributes from DBF File
230 ///
231 */
232 HYDROData_LandCoverMap::DBFStatus HYDROData_LandCoverMap::ImportDBF( const QString& theDBFFileName, 
233                                                                      const QString& theFieldName, 
234                                                                      const QStringList& theDBFValues,
235                                                                      const QStringList& theStricklerTypes,
236                                                                      const QList<int>& theIndices )
237 {
238   if (theDBFValues.size() != theStricklerTypes.size())
239     return DBFStatus_DIFF_SIZE_ERROR;
240   HYDROData_ShapeFile aDBFImporter;
241   if (!aDBFImporter.DBF_OpenDBF(theDBFFileName))
242     return DBFStatus_OPEN_FILE_ERROR; //cant open file
243
244   QStringList FieldList = aDBFImporter.DBF_GetFieldList();
245   int FieldNameIndex = FieldList.indexOf(theFieldName);
246   if (FieldNameIndex == -1)
247     return DBFStatus_NO_SUCH_FIELD_ERROR; //no such field
248
249   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
250   aDBFImporter.DBF_GetAttributeList(FieldNameIndex, theAttrV ); 
251
252   bool allOK = true;
253   Explorer anIt( *this );
254   for( ; anIt.More(); anIt.Next() )
255   {
256     int CurIndex = anIt.Index();
257     HYDROData_ShapeFile::DBF_AttrValue AValue = theAttrV[theIndices[CurIndex]];
258     int StricklerTypesInd = theDBFValues.indexOf(QString(AValue.myStrVal));
259     if ( StricklerTypesInd != -1)
260       anIt.SetStricklerType(theStricklerTypes[StricklerTypesInd]);
261     else
262       allOK = false;
263   }
264   if (allOK)
265     return DBFStatus_OK;
266   else
267     return DBFStatus_NO_DBFVALUES_CORRESPONDENCE_WARNING;
268 }
269
270 /**
271   Export attributes to DBF File
272 ///
273 */
274 void HYDROData_LandCoverMap::ExportDBF( const QString& theDBFFileName, 
275                                         const QString& theFieldName, 
276                                         const QStringList& theDBFValues,
277                                         const QStringList& theStricklerTypes) const
278 {
279   if (theDBFValues.size() != theStricklerTypes.size())
280     return;
281   HYDROData_ShapeFile anExporter; 
282   std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
283   Explorer anIt( *this );
284   for( ; anIt.More(); anIt.Next() )
285   {
286     QString CurST = anIt.StricklerType();
287     HYDROData_ShapeFile::DBF_AttrValue aCurAttrV;
288     aCurAttrV.myIsNull = false;
289     int StricklerTypesInd = theStricklerTypes.indexOf(CurST);
290     if (StricklerTypesInd != -1)
291     {
292       aCurAttrV.myStrVal = theDBFValues[StricklerTypesInd];
293       aCurAttrV.myFieldType = HYDROData_ShapeFile::DBF_FieldType_String;
294       theAttrV.push_back(aCurAttrV);
295     }
296     else
297       aCurAttrV.myIsNull = true;
298   }
299   //use actual str value; not the raw value
300   anExporter.DBF_WriteFieldAndValues(theDBFFileName, theFieldName, HYDROData_ShapeFile::DBF_FieldType_String, theAttrV, false);
301
302 }
303
304 int HashCode( const gp_Pnt& thePoint, const Standard_Integer theUpper )
305 {
306   int aHashX = HashCode( thePoint.X(), theUpper );
307   int aHashY = HashCode( thePoint.Y(), theUpper );
308   return (aHashX^aHashY)%theUpper;
309 }
310
311 bool operator == ( const gp_Pnt& thePoint1, const gp_Pnt& thePoint2 )
312 {
313   return thePoint1.IsEqual( thePoint2, Precision::Confusion() );
314 }
315
316 bool EdgeDiscretization( const TopoDS_Edge& theEdge, 
317                          Standard_Real theDeflection,
318                          NCollection_IndexedMap<gp_Pnt>& theVerticesMap,
319                          QList<int>& theVerticesIds )
320 {
321   BRepAdaptor_Curve aCurve( theEdge );
322   GCPnts_QuasiUniformDeflection aDiscrete( aCurve, theDeflection );
323   if( !aDiscrete.IsDone() )
324     return false;
325
326   int n = aDiscrete.NbPoints();
327   for( int i=1; i<=n; i++ )
328   {
329     gp_Pnt aPnt = aDiscrete.Value( i );
330     int anId;
331     if( theVerticesMap.Contains( aPnt ) )
332       anId = theVerticesMap.FindIndex( aPnt );
333     else
334     {
335       anId = theVerticesMap.Size();
336       theVerticesMap.Add( aPnt );
337     }
338     theVerticesIds.append( anId );
339   }
340   return true;
341 }
342
343 /**
344   Export the land cover map for the solver (Telemac)
345   @param theFileName the name of file
346   @return if the export is successful
347 */
348 bool HYDROData_LandCoverMap::ExportTelemac( const QString& theFileName, Standard_Real theDeflection ) const
349 {
350   TopoDS_Shape aLandCoverMapShape = GetShape();
351   TopTools_ListOfShape aListOfFaces;
352   Explorer anIt( *this );
353   QMap<Handle(TopoDS_TShape), QString> aTypesMap;
354   for( ; anIt.More(); anIt.Next() )
355   {
356     aListOfFaces.Append( anIt.Face() );
357     aTypesMap.insert( anIt.Face().TShape(), anIt.StricklerType() );
358   }
359
360   TopoDS_Shape aShape = MergeFaces( aListOfFaces, false );
361
362   NCollection_IndexedMap<gp_Pnt> aVerticesMap;
363   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> > anEdgesMap;
364   typedef QPair< QString, QList<int> > FaceData;
365   NCollection_IndexedDataMap< TopoDS_Face, FaceData > aFacesMap;
366
367   // add into the map all edges existing in the shell
368   TopExp_Explorer anExp1( aShape, TopAbs_EDGE );
369   for( ; anExp1.More(); anExp1.Next() )
370   {
371     TopoDS_Edge anEdge = TopoDS::Edge( anExp1.Current() );
372     QList<int> aVerticesIdsList;
373     if( EdgeDiscretization( anEdge, theDeflection, aVerticesMap, aVerticesIdsList ) )
374       anEdgesMap.Add( anEdge, aVerticesIdsList );
375   }
376
377   // add into the map all faces existing in the shell and correspondence between face and edges ids
378   TopExp_Explorer anExp2( aShape, TopAbs_FACE );
379   for( ; anExp2.More(); anExp2.Next() )
380   {
381     TopoDS_Face aFace = TopoDS::Face( anExp2.Current() );
382     TopExp_Explorer anExp3( aFace, TopAbs_EDGE );
383     QList<int> anEdgesIdsList;
384     for( ; anExp3.More(); anExp3.Next() )
385     {
386       TopoDS_Edge anEdge = TopoDS::Edge( anExp3.Current() );
387       int anEdgeId = anEdgesMap.FindIndex( anEdge );
388       anEdgesIdsList.append( anEdgeId );
389     }
390
391     FaceData aData;
392     aData.first = aTypesMap[aFace.TShape()];
393     aData.second = anEdgesIdsList;
394     aFacesMap.Add( aFace, aData );
395   }
396
397   QFile aFile( theFileName );
398   if( !aFile.open( QFile::WriteOnly | QFile::Text ) )
399     return false;
400
401   QTextStream aStream( &aFile );
402   aStream << "# nodes\n";
403   NCollection_IndexedMap<gp_Pnt>::Iterator anIt1( aVerticesMap );
404   for( ; anIt1.More(); anIt1.Next() )
405   {
406     gp_Pnt aPnt = anIt1.Value();
407     aStream << QString::number( aPnt.X(), TELEMAC_FORMAT, TELEMAC_PRECISION );
408     aStream << " ";
409     aStream << QString::number( aPnt.Y(), TELEMAC_FORMAT, TELEMAC_PRECISION );
410     aStream << " ";
411     aStream << QString::number( aPnt.Z(), TELEMAC_FORMAT, TELEMAC_PRECISION );
412     aStream << "\n";
413   }
414   aStream << "\n";
415
416   aStream << "# edges\n";
417   NCollection_IndexedDataMap< TopoDS_Edge, QList<int> >::Iterator anIt2( anEdgesMap );
418   for( ; anIt2.More(); anIt2.Next() )
419   {
420     QList<int> aVerticesIds = anIt2.Value();
421     foreach( int anId, aVerticesIds )
422       aStream << anId << " ";
423     aStream << "\n";
424   }
425   aStream << "\n";
426
427   aStream << "# faces\n";
428   NCollection_IndexedDataMap< TopoDS_Face, FaceData >::Iterator anIt3( aFacesMap );
429   for( ; anIt3.More(); anIt3.Next() )
430   {
431     QString aType = anIt3.Value().first;
432     QList<int> anEdgesIds = anIt3.Value().second;
433     aStream << "\"" << aType << "\" ";
434     foreach( int anId, anEdgesIds )
435       aStream << anId << " ";
436     aStream << "\n";
437   }
438   aStream << "\n";
439
440   aFile.close();
441   return true;
442 }
443
444 /**
445   Add a new object as land cover
446   @param theObject the object to add as land cover
447   @param theType the Strickler type for the new land cover
448   @return if the addition is successful
449 */
450 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_Object )& theObject, const QString& theType )
451 {
452   if( theObject.IsNull() )
453     return false;
454
455   TopoDS_Shape aShape = theObject->GetTopShape();
456   if( aShape.ShapeType()!=TopAbs_FACE )
457     return false;
458
459   TopoDS_Face aFace = TopoDS::Face( aShape );
460   return LocalPartition( aFace, theType );
461 }
462
463 bool HYDROData_LandCoverMap::Add( const TopoDS_Wire& theWire, const QString& theType )
464 {
465   if( !theWire.Closed() )
466     return false;
467
468   TopoDS_Face aFace = BRepBuilderAPI_MakeFace( theWire, Standard_True ).Face();
469   return LocalPartition( aFace, theType );
470 }
471
472 /**
473   Add a new polyline as land cover
474   @param thePolyline the polyline to add as land cover
475   @param theType the Strickler type for the new land cover
476   @return if the addition is successful
477 */
478 bool HYDROData_LandCoverMap::Add( const Handle( HYDROData_PolylineXY )& thePolyline, const QString& theType )
479 {
480   if( thePolyline.IsNull() )
481     return false;
482
483   TopoDS_Shape aShape = thePolyline->GetShape();
484   if( aShape.ShapeType()==TopAbs_WIRE )
485     return Add( TopoDS::Wire( aShape ), theType );
486
487   if( aShape.ShapeType()==TopAbs_COMPOUND )
488   {
489     TopExp_Explorer anExp( aShape, TopAbs_WIRE );
490     for( ; anExp.More(); anExp.Next() )
491     {
492       TopoDS_Wire aPart = TopoDS::Wire( anExp.Current() );
493       if( !Add( aPart, theType ) )
494         return false;
495     }
496     return true;
497   }
498
499   return false;
500 }
501
502 /**
503   Remove the given face from land cover map
504   @param theFace the face to be removed
505   @return if the removing is successful
506 */
507 bool HYDROData_LandCoverMap::Remove( const TopoDS_Face& theFace )
508 {
509   TopTools_ListOfShape aList;
510   aList.Append( theFace );
511   return Remove( aList );
512 }
513
514 /**
515   Remove the given faces from land cover map
516   @param theFacesToRemove the face list to be removed
517   @return if the removing is successful
518 */
519 bool HYDROData_LandCoverMap::Remove( const TopTools_ListOfShape& theFacesToRemove )
520 {
521   HYDROData_MapOfFaceToStricklerType aFacesToRemove, aNewFaces;
522   TopTools_ListIteratorOfListOfShape aFIt( theFacesToRemove );
523   for( ; aFIt.More(); aFIt.Next() )
524   {
525     TopoDS_Shape aShape = aFIt.Value();
526     if( aShape.ShapeType()==TopAbs_FACE )
527       aFacesToRemove.Add( TopoDS::Face( aShape ), "" );
528   }
529
530   Explorer anIt( *this );
531   for( ; anIt.More(); anIt.Next() )
532     if( !aFacesToRemove.Contains( anIt.Face() ) )
533       aNewFaces.Add( anIt.Face(), anIt.StricklerType() );
534
535   if ( aNewFaces.IsEmpty() )
536     return false;
537
538   StoreLandCovers( aNewFaces );
539   return true;
540 }
541
542 /**
543   Split the land cover map by the given polyline
544   @param thePolyline the tool polyline to split the land cover map
545   @return if the removing is successful
546 */
547 bool HYDROData_LandCoverMap::Split( const Handle( HYDROData_PolylineXY )& thePolyline )
548 {
549   if( thePolyline.IsNull() )
550     return false;
551
552   TopoDS_Shape aShape = thePolyline->GetShape();
553   return Split( aShape );
554 }
555
556
557 /**
558   Split the land cover map by the given polyline
559   @param theShape the tool polyline to split the land cover map
560   @return if the removing is successful
561 */
562 bool HYDROData_LandCoverMap::Split( const TopoDS_Shape& theShape )
563 {
564   return LocalPartition( theShape, "" );
565 }
566
567
568 /**
569   Merge the given faces in the land cover
570   @param theFaces the faces to merge in the land cover map
571   @param theType the Strickler type for the merged land cover
572   @return if the merge is successful
573 */
574 bool HYDROData_LandCoverMap::Merge( const TopTools_ListOfShape& theFaces, const QString& theType )
575 {
576   // 1. to fuse the faces into the new face
577   TopoDS_Shape aMergedFace = MergeFaces( theFaces, true );
578   if( !aMergedFace.IsNull() && aMergedFace.ShapeType()==TopAbs_FACE )
579   {
580     // 2. to remove the merged faces from the current map
581     Remove( theFaces );
582
583     // 3. to add the face into the map
584     return LocalPartition( TopoDS::Face( aMergedFace ), theType );
585   }
586   return false;
587 }
588
589 /**
590   Merge the given faces into the shell/face
591   @param theFaces the faces to merge
592   @param IsToUnify if the common edges should be removed (fused)
593   @param theTolerance the operation's tolerance
594   @return result shape (face or shell)
595 */
596 TopoDS_Shape HYDROData_LandCoverMap::MergeFaces( const TopTools_ListOfShape& theFaces,
597                                                  bool IsToUnify, double theTolerance )
598 {
599   int anError;
600   TopTools_ListIteratorOfListOfShape anIt;
601   BOPCol_ListOfShape aLC;
602   anIt.Initialize(theFaces);
603   for( ; anIt.More(); anIt.Next() )
604   {
605     if (anIt.Value().ShapeType() != TopAbs_FACE)
606       return TopoDS_Shape();
607     aLC.Append( anIt.Value() );
608   }
609
610   BOPAlgo_PaveFiller aPF;
611   aPF.SetArguments( aLC );
612   aPF.SetRunParallel( Standard_False );
613   aPF.SetFuzzyValue( theTolerance );
614
615   aPF.Perform();
616   anError = aPF.ErrorStatus();
617   if( anError )
618     return TopoDS_Shape();
619
620   BOPAlgo_Builder anAlgo;
621   anIt.Initialize( theFaces );
622   for( ; anIt.More(); anIt.Next() )
623     anAlgo.AddArgument( anIt.Value() );
624
625   anAlgo.PerformWithFiller( aPF ); 
626   anError = anAlgo.ErrorStatus();
627   if( anError )
628     return TopoDS_Shape();
629
630   const TopoDS_Shape& aMergedShape = anAlgo.Shape();
631
632   BRep_Builder aBuilder;
633   TopoDS_Shell aShell; 
634   aBuilder.MakeShell( aShell ); 
635   aShell.Closed( Standard_False );
636   TopExp_Explorer anExplorer( aMergedShape, TopAbs_FACE );
637   for( ; anExplorer.More(); anExplorer.Next() ) 
638   {
639     const TopoDS_Face& aFace = TopoDS::Face(anExplorer.Current());
640     if( aFace.IsNull() ) 
641       continue;
642     if( aFace.ShapeType() == TopAbs_FACE )
643     {
644       aBuilder.Add( aShell, aFace );
645       aShell.Closed( Standard_False );
646     }
647   }
648
649   TopoDS_Shape aResult;
650   if( IsToUnify )
651   {
652     ShapeUpgrade_UnifySameDomain aUSD;
653     aUSD.Initialize( aShell );
654     aUSD.Build();
655     aResult = aUSD.Shape();
656   }
657   else
658     aResult = aShell;
659
660   anExplorer.Init( aResult, TopAbs_FACE );
661   int n = 0;
662   TopoDS_Face anOneFace;
663   for( ; anExplorer.More(); anExplorer.Next(), n++ ) 
664     anOneFace = TopoDS::Face( anExplorer.Current() );
665
666   if (n == 1)
667     aResult = anOneFace;
668   else if (aResult.ShapeType() == TopAbs_SHELL)
669   {
670     BRepCheck_Shell aBCS(TopoDS::Shell(aResult));
671     if (aBCS.Status().First() != BRepCheck_NoError)
672     {
673       ShapeFix_Shell aFixer;
674       aFixer.FixFaceOrientation(TopoDS::Shell(aResult), 1);
675       aResult = aFixer.Shape();
676     }
677   }
678
679   return aResult;
680 }
681
682 /**
683   Change Strickler type for the list of faces to the given one
684   @param theFaces the faces to change type
685   @param theType the Strickler type for the given land cover(s)
686   @return if the change type operation is successful
687 */
688 bool HYDROData_LandCoverMap::ChangeType( const TopTools_ListOfShape& theFaces, const QString& theType )
689 {
690   HYDROData_MapOfFaceToStricklerType aFacesToChangeType;
691   TopTools_ListIteratorOfListOfShape aFIt( theFaces );
692   for( ; aFIt.More(); aFIt.Next() )
693   {
694     TopoDS_Shape aShape = aFIt.Value();
695     if( aShape.ShapeType()==TopAbs_FACE )
696       aFacesToChangeType.Add( TopoDS::Face( aShape ), "" );
697   }
698
699   int aNbChanges = 0;
700   Explorer anIt( *this );
701   for( ; anIt.More(); anIt.Next() )
702     if( aFacesToChangeType.Contains( anIt.Face() ) )
703     {
704       anIt.SetStricklerType( theType );
705       aNbChanges++;
706     }
707   if ( aNbChanges != theFaces.Extent() )
708     return false;
709
710   return true;
711 }
712
713 /**
714   Get the shape of the land cover map
715 */
716 TopoDS_Shape HYDROData_LandCoverMap::GetShape() const
717 {
718   return HYDROData_Entity::GetShape( DataTag_Shape );
719 }
720
721 /**
722   Get Strickler type of the given land cover
723   @param theLandCover the land cover to get Strickler type of
724   @return name of Strickler type
725 */
726 QString HYDROData_LandCoverMap::StricklerType( const TopoDS_Face& theLandCover ) const
727 {
728   QString aType = "";
729
730   Explorer anIt( *this );
731   for( ; anIt.More(); anIt.Next() )
732     if( anIt.Face().IsEqual( theLandCover) )
733     {
734       aType = anIt.StricklerType();
735       break;
736     }
737
738   return aType;
739 }
740
741 /**
742   Set the shape of the land cover map
743   @param theShape the new shape for the land cover map
744 */
745 void HYDROData_LandCoverMap::SetShape( const TopoDS_Shape& theShape )
746 {
747   HYDROData_Entity::SetShape( DataTag_Shape, theShape );
748 }
749
750 /**
751   Perform the local partition algorithm on the land cover
752   @param theNewShape the new shape to add into the land cover
753   @param theNewType the new Strickler type for the new land cover
754   @return if the local partition is successful
755 */
756 bool HYDROData_LandCoverMap::LocalPartition( const TopoDS_Shape& theNewShape, const QString& theNewType )
757 {
758   if( theNewShape.IsNull() )
759     return false;
760
761   BOPCol_ListOfShape aShapesList;
762   BOPAlgo_PaveFiller aPaveFiller;
763   HYDROData_MapOfFaceToStricklerType aNewFaces;
764
765   // add faces to shapes list
766   Explorer anIt( *this );
767   for( ; anIt.More(); anIt.Next() )
768     aShapesList.Append( anIt.Face() );
769   aShapesList.Append( theNewShape );
770
771   if( aShapesList.Size()==1 && theNewShape.ShapeType()==TopAbs_FACE )
772   {
773     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
774     StoreLandCovers( aNewFaces );
775     return true;
776   }
777
778   // prepare pave filler
779   aPaveFiller.SetArguments( aShapesList );
780   aPaveFiller.Perform();
781   Standard_Integer anError = aPaveFiller.ErrorStatus();
782   if( anError )
783     return false;
784
785   // add faces to builder
786   BOPAlgo_Builder aBuilder;
787   anIt.Init( *this );
788   for( ; anIt.More(); anIt.Next() )
789     aBuilder.AddArgument( anIt.Face() );
790   aBuilder.AddArgument( theNewShape );
791
792   // perform the partition with the pave filler
793   aBuilder.PerformWithFiller( aPaveFiller );
794   anError = aBuilder.ErrorStatus();
795   if( anError )
796     return false;
797
798   //std::cout << "History:" << std::endl;
799   // analysis of the history
800   //     a. to fill map of shapes which come from the new face
801   NCollection_IndexedMap<int> aShapesFromNewFace;
802   //std::cout << "from NEW " << theNewShape << ":" << theNewType << std::endl;
803   TopTools_ListOfShape aModified = aBuilder.Modified( theNewShape );
804   TopTools_ListIteratorOfListOfShape aMIt( aModified );
805   for( ; aMIt.More(); aMIt.Next() )
806   {
807     //std::cout << "   " << aMIt.Value() << std::endl;
808     int aKey = (int)(uintptr_t)aMIt.Value().TShape().operator->();
809     aShapesFromNewFace.Add( aKey );
810   }
811
812   //     b. to fill map of parts except parts from new face
813   anIt.Init( *this );
814   for( ; anIt.More(); anIt.Next() )
815   {
816     QString aSType = anIt.StricklerType();
817     //std::cout << "from " << anIt.Face() << ": " << anIt.StricklerType() << std::endl;
818     TopTools_ListOfShape aModified = aBuilder.Modified( anIt.Face() );
819     if( aModified.Extent() == 0 )
820       aModified.Append( anIt.Face() );
821
822     TopTools_ListIteratorOfListOfShape aMIt( aModified );
823     for( ; aMIt.More(); aMIt.Next() )
824     {
825       TopoDS_Shape aShape = aMIt.Value();
826       bool isFace = aShape.ShapeType()==TopAbs_FACE;
827       int aKey = (int)(uintptr_t)aShape.TShape().operator->();
828       bool isAlsoFromNew = aShapesFromNewFace.Contains( aKey );
829       //std::cout << "   " << aShape << " " << isAlsoFromNew << std::endl;
830       if( isFace && !isAlsoFromNew )
831         aNewFaces.Add( TopoDS::Face( aShape ), aSType );
832     }
833   }
834
835   //     c. add the new shape if it is face with its type
836   if( theNewShape.ShapeType()==TopAbs_FACE )
837     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
838   
839   // convert map of shape to type to compound and list of types
840   StoreLandCovers( aNewFaces );
841   return true;
842 }
843
844 /**
845   Replace the set of land covers in the land cover map
846   @param theMap the map of shape (face) to Strickler type (string)
847 */
848 void HYDROData_LandCoverMap::StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& theMap )
849 {
850   TopTools_ListOfShape aListOfFaces;
851
852   int n = theMap.Size();
853
854   Handle( TDataStd_ExtStringArray ) aTypes = 
855     TDataStd_ExtStringArray::Set( myLab.FindChild( DataTag_Types ), 0, n-1, Standard_True );
856
857   HYDROData_MapOfFaceToStricklerType::Iterator aNFIt( theMap );
858   for( int i=0; aNFIt.More(); aNFIt.Next(), i++ )
859   {
860     TopoDS_Face aFace = aNFIt.Key();
861     if( aFace.IsNull() )
862       continue;
863     QString aType = aNFIt.Value();
864     aListOfFaces.Append(aFace);
865     aTypes->SetValue( i, HYDROData_Tool::toExtString( aType ) );
866   }
867
868   TopoDS_Shape aResult;
869   if( aListOfFaces.Extent() == 1 )
870     aResult = aListOfFaces.First();
871   else if( aListOfFaces.Extent() > 1 )
872     aResult = MergeFaces( aListOfFaces, false );
873
874   //remove internal edges
875   aResult = RemoveInternal(aResult);
876   SetShape( aResult );
877 }
878
879 /**
880    Checks that object has 2D presentation. Reimlemented to retun true.
881 */
882 bool HYDROData_LandCoverMap::IsHas2dPrs() const
883 {
884   return true;
885 }
886
887 /**
888   Find the land cover for the given point
889   @param thePoint the point laying in some land cover
890   @param theType the returned type
891   @return the found land cover's face
892 */
893 TopoDS_Face HYDROData_LandCoverMap::FindByPoint( const gp_Pnt2d& thePoint, QString& theType ) const
894 {
895   //TODO: some more optimal algorithm
896   Explorer anIt( *this );
897   for( ; anIt.More(); anIt.Next() )
898     if( HYDROData_Tool::ComputePointState( thePoint.XY(), anIt.Face() ) == TopAbs_IN )
899     {
900       theType = anIt.StricklerType();
901       return anIt.Face();
902     }
903
904   theType = "";
905   return TopoDS_Face();
906 }
907
908 /**
909   Dump to Python
910   @param theTreatedObjects the map of treated objects
911 */
912 QStringList HYDROData_LandCoverMap::DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const
913 {
914   QStringList aResList = dumpObjectCreation( theTreatedObjects );
915   QString aName = GetObjPyName();
916
917   //Handle(HYDROData_PolylineXY) aHydAxis = GetHydraulicAxis();
918   //setPythonReferenceObject( theTreatedObjects, aResList, aHydAxis, "SetHydraulicAxis" );
919
920   //HYDROData_SequenceOfObjects aSeqOfProfiles = GetProfiles();
921   //for ( int i = 1, aNb = aSeqOfProfiles.Size(); i <= aNb; ++i )
922   //{
923     //const Handle(HYDROData_Entity) aProfile = aSeqOfProfiles.Value( i );
924     //setPythonReferenceObject( theTreatedObjects, aResList, aProfile, "AddProfile" );
925   //}
926
927   //TODO
928
929   return aResList;
930 }
931
932 TopoDS_Shape HYDROData_LandCoverMap::RemoveInternal(const TopoDS_Shape& InSh)
933 {
934   //Shape must be topologically correct
935   TopExp_Explorer anExp(InSh, TopAbs_EDGE);
936   TopTools_ListOfShape anEdgesToRemove;
937
938   for(; anExp.More(); anExp.Next() )
939   {
940     TopoDS_Edge CurEdge = TopoDS::Edge(anExp.Current());
941     if (CurEdge.Orientation() == TopAbs_INTERNAL)
942       anEdgesToRemove.Append(CurEdge);
943   }
944  
945   Handle_ShapeBuild_ReShape aReshape = new ShapeBuild_ReShape();
946   TopoDS_Shape OutSh = aReshape->Apply(InSh);
947   TopTools_ListIteratorOfListOfShape aIt(anEdgesToRemove);
948   for (; aIt.More(); aIt.Next()) 
949     aReshape->Remove(aIt.Value());
950   OutSh = aReshape->Apply(InSh);
951
952   Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape;
953   sfs->Init(OutSh);
954   sfs->Perform();
955   return sfs->Shape();
956
957 }
958
959 void HYDROData_LandCoverMap::SetTransparency( double theTransparency )
960 {
961   Handle(TDataStd_Real) anAttr;
962   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
963   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
964     aLabel.AddAttribute( anAttr = new TDataStd_Real() );
965   anAttr->Set( theTransparency );
966 }
967
968 double HYDROData_LandCoverMap::GetTransparency() const
969 {
970   Handle(TDataStd_Real) anAttr;
971   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
972   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
973     return 0.5;
974
975   return anAttr->Get();
976   
977 }