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