HYDROData_LCM_FaceClassifier FC(this);
FC.Classify(thePoints, theTypes, NULL);
}
+
+void HYDROData_LandCoverMap::ClassifyPoints( const std::vector<gp_Pnt2d>& thePoints,
+ Handle(HYDROData_StricklerTable) theTable,
+ std::vector<double>& theCoeffs, double DefValue, bool UseMax ) const
+{
+ std::vector<std::set <QString> > Types;
+ HYDROData_LCM_FaceClassifier FC(this);
+ FC.Classify(thePoints, Types, NULL);
+ theCoeffs.resize(thePoints.size());
+ for (size_t i = 0; i < Types.size(); i++)
+ {
+ const std::set<QString>& SStr = Types[i];
+ if (SStr.empty())
+ theCoeffs[i] = DefValue;
+ else
+ {
+ std::set<QString>::const_iterator it;
+ std::vector<double> C1(SStr.size());
+ for (it = SStr.begin(); it != SStr.end(); ++it)
+ C1.push_back(theTable->Get( *it, DefValue ));
+ double Val;
+ if (UseMax)
+ Val = *(std::max_element(std::begin(C1), std::end(C1)));
+ else
+ Val = *(std::min_element(std::begin(C1), std::end(C1)));
+ theCoeffs[i] = Val;
+ }
+ }
+}
#include <BRepTools.hxx>
#include <BRep_Builder.hxx>
#include <BRepCheck_Analyzer.hxx>
+#include <OSD_Timer.hxx>
#define _DEVDEBUG_
#include "HYDRO_trace.hxx"
aDoc->Close();
}
-void test_HYDROData_LandCoverMap::test_shp_clc_classification()
+void test_HYDROData_LandCoverMap::test_shp_clc_classification_perf()
{
Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
QString aFileName = REF_DATA_PATH + "/CLC_decoupe.shp";
Handle(HYDROData_LandCoverMap) LCM = Handle(HYDROData_LandCoverMap)::DownCast( aDoc->CreateObject( KIND_LAND_COVER_MAP ) );
HYDROData_MapOfFaceToStricklerType aMapFace2ST;
- for ( int i = 100; i <= 300; i++ )
+#ifdef NDEBUG
+ int SI = 100;
+ int EI = 300;
+#else
+ int SI = 150;
+ int EI = 200;
+#endif
+
+ for ( int i = SI; i <= EI; i++ )
{
TopoDS_Shape aShape = PolygonFaces(i);
if ( aShape.IsNull() )
}
LCM->StoreLandCovers(aMapFace2ST);
- //TopoDS_Shape aSh = LCM->GetShape();
std::vector<gp_Pnt2d> pnts;
- int N = 100000;
+#ifdef NDEBUG
+ int N = 1000; //1000*1000 points; uniform distribution for release mode
+#else
+ int N = 100;
+#endif
+
pnts.reserve(N);
double x0 = 448646.91897505691;
double x1 = 487420.3990381231;
double y1 = 6392203.4117361344;
for (size_t i=0; i < N; i++)
{
- double px = x0 + (x1-x0)/(double)N;
- double py = y0 + (y1-y0)/(double)N;
- pnts.push_back(gp_Pnt2d(px,py));
+ for (size_t j=0; j < N; j++)
+ {
+ double px = x0 + (x1-x0)*((double)i/(double)N);
+ double py = y0 + (y1-y0)*((double)j/(double)N);
+ pnts.push_back(gp_Pnt2d(px,py));
+ }
}
- std::vector<std::set <QString> > TRes;
+ OSD_Timer aTimer;
+ std::vector<std::set <QString> > TRes;
+ aTimer.Start();
LCM->ClassifyPoints(pnts, TRes);
+ aTimer.Stop();
+#ifdef NDEBUG
+ CPPUNIT_ASSERT( aTimer.ElapsedTime() < 1.4);
+ aTimer.Show();
+#endif
}
+
+void test_HYDROData_LandCoverMap::test_shp_clc_classification_check()
+{
+ Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
+ QString aFileName = REF_DATA_PATH + "/CLC_decoupe.shp";
+ HYDROData_ShapeFile anImporter;
+ QStringList PolygonList;
+ TopTools_SequenceOfShape PolygonFaces;
+ int Type = -1;
+ int aStat = anImporter.ImportPolygons(aDoc, aFileName, PolygonList, PolygonFaces, Type);
+ CPPUNIT_ASSERT(aStat == 1);
+ Handle(HYDROData_LandCoverMap) LCM = Handle(HYDROData_LandCoverMap)::DownCast( aDoc->CreateObject( KIND_LAND_COVER_MAP ) );
+ HYDROData_MapOfFaceToStricklerType aMapFace2ST;
+
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(172) ), "Tissu urbain continu" );
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(179) ), "Aéroports" );
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(185) ), "Rizières" );
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(187) ), "Vignobles" );
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(190) ), "Oliveraies" );
+ aMapFace2ST.Add( TopoDS::Face( PolygonFaces(196) ), "Estuaires" );
+
+ LCM->StoreLandCovers(aMapFace2ST);
+
+ TopoDS_Shape Sh = LCM->GetShape();
+
+ std::vector<gp_Pnt2d> pnts;
+ pnts.push_back(gp_XY(0,0));
+
+ pnts.push_back(gp_XY(468380, 6382300));
+ pnts.push_back(gp_XY(468380, 6382900));
+ pnts.push_back(gp_XY(468380, 6383200));
+ pnts.push_back(gp_XY(468250, 6384700));
+ pnts.push_back(gp_XY(470350, 6384700));
+ pnts.push_back(gp_XY(469279.642874048, 6385132.45048612 ));
+
+ std::vector<std::set <QString> > TRes;
+ LCM->ClassifyPoints(pnts, TRes);
+
+ CPPUNIT_ASSERT (TRes[0].empty());
+ CPPUNIT_ASSERT (TRes[1].empty());
+ CPPUNIT_ASSERT (TRes[2].empty());
+ CPPUNIT_ASSERT_EQUAL (*TRes[3].begin(), QString("Estuaires"));
+ CPPUNIT_ASSERT_EQUAL (*TRes[4].begin(), QString("Oliveraies"));
+ CPPUNIT_ASSERT_EQUAL (*TRes[5].begin(), QString("Vignobles"));
+
+ //std::less comparator; so compare first and second elem safely
+ CPPUNIT_ASSERT_EQUAL (*TRes[6].begin(), QString("Estuaires"));
+ CPPUNIT_ASSERT_EQUAL (*(++TRes[6].begin()), QString("Tissu urbain continu"));
+
+ ///
+ Handle(HYDROData_StricklerTable) aTable = Handle(HYDROData_StricklerTable)::DownCast( aDoc->CreateObject( KIND_STRICKLER_TABLE ) );
+ CPPUNIT_ASSERT_EQUAL( true, aTable->Import( DEF_STR_PATH ) );
+ std::vector<double> coeffs;
+ LCM->ClassifyPoints(pnts, aTable, coeffs, 0.0, true);
+
+ CPPUNIT_ASSERT_EQUAL (coeffs[0], 0.0);
+ CPPUNIT_ASSERT_EQUAL (coeffs[1], 0.0);
+ CPPUNIT_ASSERT_EQUAL (coeffs[2], 0.0);
+ CPPUNIT_ASSERT_EQUAL (coeffs[3], 1.0522);
+ CPPUNIT_ASSERT_EQUAL (coeffs[4], 1.0223);
+ CPPUNIT_ASSERT_EQUAL (coeffs[5], 1.0221);
+ CPPUNIT_ASSERT_EQUAL (coeffs[6], 1.0522);
+
+}
+