Salome HOME
3976299fddf3a769e6cef9c1914b846cbbe5a5d4
[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   return LocalPartition( theShape, "" );
581 }
582
583
584 /**
585   Merge the given faces in the land cover
586   @param theFaces the faces to merge in the land cover map
587   @param theType the Strickler type for the merged land cover
588   @return if the merge is successful
589 */
590 bool HYDROData_LandCoverMap::Merge( const TopTools_ListOfShape& theFaces, const QString& theType )
591 {
592   // 1. to fuse the faces into the new face
593   TopoDS_Shape aMergedFace = MergeFaces( theFaces, true );
594   if( !aMergedFace.IsNull() && aMergedFace.ShapeType()==TopAbs_FACE )
595   {
596     // 2. to remove the merged faces from the current map
597     Remove( theFaces );
598
599     // 3. to add the face into the map
600     return LocalPartition( TopoDS::Face( aMergedFace ), theType );
601   }
602   return false;
603 }
604
605 /**
606   Merge the given faces into the shell/face
607   @param theFaces the faces to merge
608   @param IsToUnify if the common edges should be removed (fused)
609   @param theTolerance the operation's tolerance
610   @return result shape (face or shell)
611 */
612 TopoDS_Shape HYDROData_LandCoverMap::MergeFaces( const TopTools_ListOfShape& theFaces,
613                                                  bool IsToUnify, double theTolerance )
614 {
615   int anError;
616   TopTools_ListIteratorOfListOfShape anIt;
617   BOPCol_ListOfShape aLC;
618   anIt.Initialize(theFaces);
619   for( ; anIt.More(); anIt.Next() )
620   {
621     if (anIt.Value().ShapeType() != TopAbs_FACE)
622       return TopoDS_Shape();
623     aLC.Append( anIt.Value() );
624   }
625
626   BOPAlgo_PaveFiller aPF;
627   aPF.SetArguments( aLC );
628   aPF.SetRunParallel( Standard_False );
629   aPF.SetFuzzyValue( theTolerance );
630
631   aPF.Perform();
632   anError = aPF.ErrorStatus();
633   if( anError )
634     return TopoDS_Shape();
635
636   BOPAlgo_Builder anAlgo;
637   anIt.Initialize( theFaces );
638   for( ; anIt.More(); anIt.Next() )
639     anAlgo.AddArgument( anIt.Value() );
640
641   anAlgo.PerformWithFiller( aPF ); 
642   anError = anAlgo.ErrorStatus();
643   if( anError )
644     return TopoDS_Shape();
645
646   const TopoDS_Shape& aMergedShape = anAlgo.Shape();
647
648   BRep_Builder aBuilder;
649   TopoDS_Shell aShell; 
650   aBuilder.MakeShell( aShell ); 
651   aShell.Closed( Standard_False );
652   TopExp_Explorer anExplorer( aMergedShape, TopAbs_FACE );
653   for( ; anExplorer.More(); anExplorer.Next() ) 
654   {
655     const TopoDS_Face& aFace = TopoDS::Face(anExplorer.Current());
656     if( aFace.IsNull() ) 
657       continue;
658     if( aFace.ShapeType() == TopAbs_FACE )
659     {
660       aBuilder.Add( aShell, aFace );
661       aShell.Closed( Standard_False );
662     }
663   }
664
665   TopoDS_Shape aResult;
666   if( IsToUnify )
667   {
668     ShapeUpgrade_UnifySameDomain aUSD;
669     aUSD.Initialize( aShell );
670     aUSD.Build();
671     aResult = aUSD.Shape();
672   }
673   else
674     aResult = aShell;
675
676   anExplorer.Init( aResult, TopAbs_FACE );
677   int n = 0;
678   TopoDS_Face anOneFace;
679   for( ; anExplorer.More(); anExplorer.Next(), n++ ) 
680     anOneFace = TopoDS::Face( anExplorer.Current() );
681
682   if (n == 1)
683     aResult = anOneFace;
684   else if (aResult.ShapeType() == TopAbs_SHELL)
685   {
686     BRepCheck_Shell aBCS(TopoDS::Shell(aResult));
687     if (aBCS.Status().First() != BRepCheck_NoError)
688     {
689       ShapeFix_Shell aFixer;
690       aFixer.FixFaceOrientation(TopoDS::Shell(aResult), 1);
691       aResult = aFixer.Shape();
692     }
693   }
694
695   return aResult;
696 }
697
698 /**
699   Change Strickler type for the list of faces to the given one
700   @param theFaces the faces to change type
701   @param theType the Strickler type for the given land cover(s)
702   @return if the change type operation is successful
703 */
704 bool HYDROData_LandCoverMap::ChangeType( const TopTools_ListOfShape& theFaces, const QString& theType )
705 {
706   HYDROData_MapOfFaceToStricklerType aFacesToChangeType;
707   TopTools_ListIteratorOfListOfShape aFIt( theFaces );
708   for( ; aFIt.More(); aFIt.Next() )
709   {
710     TopoDS_Shape aShape = aFIt.Value();
711     if( aShape.ShapeType()==TopAbs_FACE )
712       aFacesToChangeType.Add( TopoDS::Face( aShape ), "" );
713   }
714
715   int aNbChanges = 0;
716   Explorer anIt( *this );
717   for( ; anIt.More(); anIt.Next() )
718     if( aFacesToChangeType.Contains( anIt.Face() ) )
719     {
720       anIt.SetStricklerType( theType );
721       aNbChanges++;
722     }
723   if ( aNbChanges != theFaces.Extent() )
724     return false;
725
726   return true;
727 }
728
729 /**
730   Get the shape of the land cover map
731 */
732 TopoDS_Shape HYDROData_LandCoverMap::GetShape() const
733 {
734   return HYDROData_Entity::GetShape( DataTag_Shape );
735 }
736
737 /**
738   Get Strickler type of the given land cover
739   @param theLandCover the land cover to get Strickler type of
740   @return name of Strickler type
741 */
742 QString HYDROData_LandCoverMap::StricklerType( const TopoDS_Face& theLandCover ) const
743 {
744   QString aType = "";
745
746   Explorer anIt( *this );
747   for( ; anIt.More(); anIt.Next() )
748     if( anIt.Face().IsEqual( theLandCover) )
749     {
750       aType = anIt.StricklerType();
751       break;
752     }
753
754   return aType;
755 }
756
757 /**
758   Set the shape of the land cover map
759   @param theShape the new shape for the land cover map
760 */
761 void HYDROData_LandCoverMap::SetShape( const TopoDS_Shape& theShape )
762 {
763   HYDROData_Entity::SetShape( DataTag_Shape, theShape );
764 }
765
766 /**
767   Perform the local partition algorithm on the land cover
768   @param theNewShape the new shape to add into the land cover
769   @param theNewType the new Strickler type for the new land cover
770   @return if the local partition is successful
771 */
772 bool HYDROData_LandCoverMap::LocalPartition( const TopoDS_Shape& theNewShape, const QString& theNewType )
773 {
774   if( theNewShape.IsNull() )
775     return false;
776
777   BOPCol_ListOfShape aShapesList;
778   BOPAlgo_PaveFiller aPaveFiller;
779   HYDROData_MapOfFaceToStricklerType aNewFaces;
780
781   // add faces to shapes list
782   Explorer anIt( *this );
783   for( ; anIt.More(); anIt.Next() )
784     aShapesList.Append( anIt.Face() );
785   aShapesList.Append( theNewShape );
786
787   if( aShapesList.Size()==1 && theNewShape.ShapeType()==TopAbs_FACE )
788   {
789     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
790     StoreLandCovers( aNewFaces );
791     return true;
792   }
793
794   // prepare pave filler
795   aPaveFiller.SetArguments( aShapesList );
796   aPaveFiller.Perform();
797   Standard_Integer anError = aPaveFiller.ErrorStatus();
798   if( anError )
799     return false;
800
801   // add faces to builder
802   BOPAlgo_Builder aBuilder;
803   anIt.Init( *this );
804   for( ; anIt.More(); anIt.Next() )
805     aBuilder.AddArgument( anIt.Face() );
806   aBuilder.AddArgument( theNewShape );
807
808   // perform the partition with the pave filler
809   aBuilder.PerformWithFiller( aPaveFiller );
810   anError = aBuilder.ErrorStatus();
811   if( anError )
812     return false;
813
814   //std::cout << "History:" << std::endl;
815   // analysis of the history
816   //     a. to fill map of shapes which come from the new face
817   NCollection_IndexedMap<int> aShapesFromNewFace;
818   //std::cout << "from NEW " << theNewShape << ":" << theNewType << std::endl;
819   TopTools_ListOfShape aModified = aBuilder.Modified( theNewShape );
820   TopTools_ListIteratorOfListOfShape aMIt( aModified );
821   for( ; aMIt.More(); aMIt.Next() )
822   {
823     //std::cout << "   " << aMIt.Value() << std::endl;
824     int aKey = (int)(uintptr_t)aMIt.Value().TShape().operator->();
825     aShapesFromNewFace.Add( aKey );
826   }
827
828   //     b. to fill map of parts except parts from new face
829   anIt.Init( *this );
830   for( ; anIt.More(); anIt.Next() )
831   {
832     QString aSType = anIt.StricklerType();
833     //std::cout << "from " << anIt.Face() << ": " << anIt.StricklerType() << std::endl;
834     TopTools_ListOfShape aModified = aBuilder.Modified( anIt.Face() );
835
836     //
837     TopTools_ListOfShape aGen = aBuilder.Generated( anIt.Face() );
838     //
839     if( aModified.Extent() == 0 )
840       aModified.Append( anIt.Face() );
841
842     TopTools_ListIteratorOfListOfShape aMIt( aModified );
843     for( ; aMIt.More(); aMIt.Next() )
844     {
845       TopoDS_Shape aShape = aMIt.Value();
846       bool isFace = aShape.ShapeType()==TopAbs_FACE;
847       int aKey = (int)(uintptr_t)aShape.TShape().operator->();
848       bool isAlsoFromNew = aShapesFromNewFace.Contains( aKey );
849       //std::cout << "   " << aShape << " " << isAlsoFromNew << std::endl;
850       if( isFace && !isAlsoFromNew )
851         aNewFaces.Add( TopoDS::Face( aShape ), aSType );
852     }
853   }
854
855   //     c. add the new shape if it is face with its type
856   if( theNewShape.ShapeType()==TopAbs_FACE )
857     aNewFaces.Add( TopoDS::Face( theNewShape ), theNewType );
858   
859   // convert map of shape to type to compound and list of types
860   StoreLandCovers( aNewFaces );
861   return true;
862 }
863
864 /**
865   Replace the set of land covers in the land cover map
866   @param theMap the map of shape (face) to Strickler type (string)
867 */
868 void HYDROData_LandCoverMap::StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& theMap )
869 {
870   TopTools_ListOfShape aListOfFaces;
871
872   int n = theMap.Size();
873
874   Handle( TDataStd_ExtStringArray ) aTypes = 
875     TDataStd_ExtStringArray::Set( myLab.FindChild( DataTag_Types ), 0, n-1, Standard_True );
876
877   HYDROData_MapOfFaceToStricklerType::Iterator aNFIt( theMap );
878   for( int i=0; aNFIt.More(); aNFIt.Next(), i++ )
879   {
880     TopoDS_Face aFace = aNFIt.Key();
881     if( aFace.IsNull() )
882       continue;
883     QString aType = aNFIt.Value();
884     aListOfFaces.Append(aFace);
885     aTypes->SetValue( i, HYDROData_Tool::toExtString( aType ) );
886   }
887
888   TopoDS_Shape aResult;
889   if( aListOfFaces.Extent() == 1 )
890     aResult = aListOfFaces.First();
891   else if( aListOfFaces.Extent() > 1 )
892     aResult = MergeFaces( aListOfFaces, false );
893
894   //remove internal edges
895   aResult = RemoveInternal(aResult);
896   SetShape( aResult );
897 }
898
899 /**
900    Checks that object has 2D presentation. Reimlemented to retun true.
901 */
902 bool HYDROData_LandCoverMap::IsHas2dPrs() const
903 {
904   return true;
905 }
906
907 /**
908   Find the land cover for the given point
909   @param thePoint the point laying in some land cover
910   @param theType the returned type
911   @return the found land cover's face
912 */
913 TopoDS_Face HYDROData_LandCoverMap::FindByPoint( const gp_Pnt2d& thePoint, QString& theType ) const
914 {
915   //TODO: some more optimal algorithm
916   Explorer anIt( *this );
917   for( ; anIt.More(); anIt.Next() )
918     if( HYDROData_Tool::ComputePointState( thePoint.XY(), anIt.Face() ) == TopAbs_IN )
919     {
920       theType = anIt.StricklerType();
921       return anIt.Face();
922     }
923
924   theType = "";
925   return TopoDS_Face();
926 }
927
928 void Dump( const QString& theName, const QStringList& theList, QStringList& theLines )
929 {
930   theLines.append( QString( "%1 = QStringList()" ).arg( theName ) );
931   foreach( QString anItem, theList )
932     theLines.append( QString( "%1.append( u\"%2\" )" ).arg( theName ).arg( anItem ) );
933 }
934
935 /**
936   Dump to Python
937   @param theTreatedObjects the map of treated objects
938 */
939 QStringList HYDROData_LandCoverMap::DumpToPython( const QString&       thePyScriptPath,
940                                                   MapOfTreatedObjects& theTreatedObjects ) const
941 {
942   QStringList aResList = dumpObjectCreation( theTreatedObjects );
943   QString aName = GetObjPyName();
944
945   QString aShpFileName = thePyScriptPath;
946   aShpFileName.replace( ".py", ".shp" );
947   QString aDbfFileName = thePyScriptPath;
948   aDbfFileName.replace( ".py", ".dbf" );
949
950   ExportSHP( aShpFileName, true, 0.1 );
951
952   QString anAttr = "CODE_06"; //TODO: some custom choice
953   QStringList anAttrValues, aTypes;
954   HYDROData_Document::Document( myLab )->CollectQGISValues( anAttr, anAttrValues, aTypes );
955   ExportDBF( aDbfFileName, anAttr, anAttrValues, aTypes );
956
957   aResList << QString( "%1.ImportSHP( '%2' )" ).
958     arg( aName ).arg( aShpFileName );
959
960   Dump( "attr_values", anAttrValues, aResList );
961   Dump( "types", aTypes, aResList );
962   aResList << QString( "%1.ImportDBF( '%2', '%3', attr_values, types )" ).
963     arg( aName ).arg( aDbfFileName ).arg( anAttr );
964
965   return aResList;
966 }
967
968 TopoDS_Shape HYDROData_LandCoverMap::RemoveInternal(const TopoDS_Shape& InSh)
969 {
970   //Shape must be topologically correct
971   TopExp_Explorer anExp(InSh, TopAbs_EDGE);
972   TopTools_ListOfShape anEdgesToRemove;
973
974   for(; anExp.More(); anExp.Next() )
975   {
976     TopoDS_Edge CurEdge = TopoDS::Edge(anExp.Current());
977     if (CurEdge.Orientation() == TopAbs_INTERNAL)
978       anEdgesToRemove.Append(CurEdge);
979   }
980  
981   Handle_ShapeBuild_ReShape aReshape = new ShapeBuild_ReShape();
982   TopoDS_Shape OutSh = aReshape->Apply(InSh);
983   TopTools_ListIteratorOfListOfShape aIt(anEdgesToRemove);
984   for (; aIt.More(); aIt.Next()) 
985     aReshape->Remove(aIt.Value());
986   OutSh = aReshape->Apply(InSh);
987
988   Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape;
989   sfs->Init(OutSh);
990   sfs->Perform();
991   return sfs->Shape();
992
993 }
994
995 void HYDROData_LandCoverMap::SetTransparency( double theTransparency )
996 {
997   Handle(TDataStd_Real) anAttr;
998   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
999   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
1000     aLabel.AddAttribute( anAttr = new TDataStd_Real() );
1001   anAttr->Set( theTransparency );
1002 }
1003
1004 double HYDROData_LandCoverMap::GetTransparency() const
1005 {
1006   Handle(TDataStd_Real) anAttr;
1007   TDF_Label aLabel = myLab.FindChild( DataTag_Transparency );
1008   if( !aLabel.FindAttribute( TDataStd_Real::GetID(), anAttr ) )
1009     return 0.5;
1010
1011   return anAttr->Get();
1012   
1013 }
1014
1015 bool HYDROData_LandCoverMap::ImportSHP( const QString& theSHPFileName,
1016                                         const QList<int>& theIndices )
1017 {
1018   HYDROData_ShapeFile anImporter;
1019   QStringList aPolyList; 
1020   TopTools_SequenceOfShape aFaces;
1021   int aSHapeType = -1;
1022   int Stat = anImporter.ImportPolygons(theSHPFileName, aPolyList, aFaces, aSHapeType);
1023   //
1024   if (Stat != 1)
1025     return false;
1026   //
1027   HYDROData_MapOfFaceToStricklerType aMapFace2ST;
1028   int maxInd = *std::max_element(theIndices.begin(), theIndices.end());
1029   if (maxInd > aPolyList.length())
1030     return false;
1031   //
1032   if (theIndices.empty())
1033   {
1034     //import all shapes
1035     for ( int i = 1; i <=aFaces.Length(); i++ )
1036     {
1037       TopoDS_Shape aShape = aFaces(i);
1038       if ( aShape.IsNull() ) 
1039         continue;
1040       aMapFace2ST.Add( TopoDS::Face( aShape ), "" );
1041     }
1042   }
1043   else
1044   {
1045     //import given indices
1046     foreach ( int Ind, theIndices )
1047     {
1048       TopoDS_Shape aShape = aFaces(Ind + 1);
1049       if ( aShape.IsNull() ) 
1050         continue;
1051       aMapFace2ST.Add( TopoDS::Face( aShape ), "" );
1052     }
1053   }
1054   //
1055   StoreLandCovers(aMapFace2ST);
1056   return true;
1057 }
1058
1059 bool HYDROData_LandCoverMap::ExportSHP( const QString& theSHPFileName, bool bUseDiscr, double theDefl) const
1060 {
1061   HYDROData_ShapeFile anExporter;
1062   QStringList aList;
1063   anExporter.Export(theSHPFileName, this, aList, bUseDiscr, theDefl );
1064   if (aList.empty())
1065     return true;
1066   else 
1067     return false;
1068 }
1069
1070 bool HYDROData_LandCoverMap::CheckLinear()
1071 {
1072   TopoDS_Shape InpShape = GetShape();
1073   TopExp_Explorer anEdgeEx(InpShape, TopAbs_EDGE);
1074   for (; anEdgeEx.More(); anEdgeEx.Next()) 
1075   {
1076     TopoDS_Edge E = TopoDS::Edge(anEdgeEx.Current());
1077     double aFP, aLP;
1078     Handle_Geom_Curve aCur = BRep_Tool::Curve(E, aFP, aLP);
1079     Handle(Geom_Line) aLine = Handle(Geom_Line)::DownCast(aCur);
1080     if (aLine.IsNull())
1081     {
1082       Handle(Geom_TrimmedCurve) aTC = Handle(Geom_TrimmedCurve)::DownCast(aCur);
1083       if (!aTC.IsNull())
1084       {
1085         Handle(Geom_Line) aLine = Handle(Geom_Line)::DownCast(aTC->BasisCurve());
1086         if (aLine.IsNull())
1087           return false;
1088       }
1089       else
1090         return false;
1091     }
1092   }
1093   return true;
1094 }