// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2010-2017 Barend Gehrels, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) //#define BOOST_GEOMETRY_DEBUG_ENRICH //#define BOOST_GEOMETRY_DEBUG_SEGMENT_IDENTIFIER #include #include #include // To check results #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(TEST_WITH_SVG) # include # include # include #endif namespace { // Simplex std::string const dissolve_1 = "POLYGON((0 0,0 4,1.5 2.5,2.5 1.5,4 0,0 0))"; // Self intersecting std::string const dissolve_2 = "POLYGON((1 2,1 1,2 1,2 2.25,3 2.25,3 0,0 0,0 3,3 3,2.75 2,1 2))"; // Self intersecting in last segment std::string const dissolve_3 = "POLYGON((0 2,2 4,2 0,4 2,0 2))"; // Self tangent - polygons are now included twice std::string const dissolve_4 = "POLYGON((0 0,0 4,4 4,4 0,2 4,0 0))"; // Self tangent in corner - polygons are now included twice std::string const dissolve_5 = "POLYGON((0 0,0 4,4 4,4 0,0 4,2 0,0 0))"; // With spike std::string const dissolve_6 = "POLYGON((0 0,0 4,4 4,4 2,6 2,4 2,4 0,0 0))"; // Many intersections std::string const dissolve_7 = "POLYGON((1 3,0 9,9 5,1 7,9 8,2 5,10 10,9 2,1 3))"; // Pentagram std::string const dissolve_8 = "POLYGON((5 0,2.5 9,9.5 3.5,0.5 3.5,7.5 9,5 0))"; // CCW pentagram std::string const dissolve_9 = "POLYGON((5 0,7.5 9,0.5 3.5,9.5 3.5,2.5 9,5 0))"; // CW, one keyhole std::string const dissolve_10 = "POLYGON((2 8,8 8,8 0,0 0,0 6,4 6,4 4,2 4,2 8))"; // CCW, one keyhole std::string const dissolve_11 = "POLYGON((2 8,2 4,4 4,4 6,0 6,0 0,8 0,8 8,2 8))"; // Non intersection, but with duplicate std::string const dissolve_d1 = "POLYGON((0 0,0 4,4 0,4 0,0 0))"; // With many duplicate points std::string const dissolve_d2 = "POLYGON((0 0,0 1,0 1,0 1,0 2,0 2,0 3,0 3,0 3,0 3,0 4,2 4,2 4,4 4,4 0,4 0,3 0,3 0,3 0,3 0,3 0,0 0))"; // Case with touching reversed interior ring inside, which should be removed std::string const dissolve_h1_a = "POLYGON((0 0,0 4,4 4,4 0,0 0),(1 2,2 4,3 2,1 2))"; // Case with correct interior ring inside, which should be stay std::string const dissolve_h1_b = "POLYGON((0 0,0 4,4 4,4 0,0 0),(1 2,3 2,2 4,1 2))"; // Hole: interior intersecting exterior std::string const dissolve_h2 = "POLYGON((0 0,0 4,4 4,4 0,0 0),(1 1,1 3,5 4,1 1))"; // Hole: two intersecting holes std::string const dissolve_h3 = "POLYGON((0 0,0 4,4 4,4 0,0 0),(1 1,1 3,3 3,3 1,1 1),(2 2,2 3.5,3.5 3.5,3.5 2,2 2))"; // Hole: self-intersecting hole std::string const dissolve_h4 = "POLYGON((0 0,0 4,4 4,4 0,0 0),(1 1,3 3,3 2.5,1 3.5,1.5 3.5,1 1))"; std::string const multi_three_triangles = "MULTIPOLYGON(((1 1,5 5,8 0,1 1)),((4 2,0 8,5 9,4 2)),((5 3,4 8,10 4,5 3)))"; std::string const multi_simplex_two = "MULTIPOLYGON(((0 0,1 4,4 1,0 0)),((2 2,3 6,6 3,2 2)))"; std::string const multi_simplex_three = "MULTIPOLYGON(((0 0,1 4,4 1,0 0)),((2 2,3 6,6 3,2 2)),((3 4,5 6,6 2,3 4)))"; std::string const multi_simplex_four = "MULTIPOLYGON(((0 0,1 4,4 1,0 0)),((2 2,3 6,6 3,2 2)),((3 4,5 6,6 2,3 4)),((5 5,7 7,8 4,5 5)))"; std::string const multi_disjoint = "MULTIPOLYGON(((0 0,1 4,4 1,0 0)),((1 6,2 10,5 7,1 6)),((3 4,5 6,6 2,3 4)),((6 5,8 7,9 4,6 5)))"; std::string const multi_new_interior = "MULTIPOLYGON(((0 0,1 4,4 1,0 0)),((2 2,3 6,6 3,2 2)),((3 4,5 6,6 2,3 4)),((3 1,5 4,8 4,3 1)))"; // Testcases sent on GGL mailing list - report Javier - 2011, March 7 std::string const ggl_list_20110307_javier_01_a = "MULTIPOLYGON(((560 -400, 600 -400, 600 -440, 560 -440, 560 -400)), ((480 -400, 520 -400, 520 -440, 480 -440, 480 -400)), ((600 -320, 640 -320, 640 -360, 600 -360, 600 -320)), ((520 -400, 560 -400, 560 -440, 520 -440, 520 -400)))"; std::string const ggl_list_20110307_javier_01_b = "POLYGON((0 0, 2000 0, 2000 -2000, 0 -2000, 0 0), (560 -400, 560 -440, 600 -440, 600 -400, 560 -400), (480 -400, 480 -440, 520 -440, 520 -400, 480 -400), (600 -320, 600 -360, 640 -360, 640 -320, 600 -320), (520 -400, 520 -440, 560 -440, 560 -400, 520 -400))"; // Testcases sent by Johan Doré at September 24, 2017: std::string const dissolve_mail_2017_09_24_a = "POLYGON((0 1, 1 0, 1 1, 0 0, 0 1))"; // two triangles std::string const dissolve_mail_2017_09_24_b = "POLYGON((1 0, 0 0, 0 4, 4 4, 4 0))"; // input is not closed std::string const dissolve_mail_2017_09_24_c = "POLYGON((0 0, 1 0, 0 -1, 0.0001 1))"; // spike and not closed std::string const dissolve_mail_2017_09_24_d = "POLYGON((0 0, 1 0, 0 -1, 0 1))"; // spike and not closed // Large polygon with self-intersections std::string const dissolve_mail_2017_09_24_e = "POLYGON((25.21475410461420 -1.19600892066955, 25.36818313598630 -1.20732820034027, 25.36953926086420 -1.20868659019470, 25.37180328369140 -1.20959210395812, 25.37451934814450 -1.21049761772155, 25.37632942199700 -1.21185600757598, 25.37904357910150 -1.21276152133941, 25.38085556030270 -1.21321427822113, 25.38221168518060 -1.21366703510284, 25.38311767578120 -1.21411991119384, 25.38447570800780 -1.21411991119384, 25.38447570800780 -1.21185600757598, 25.38492774963370 -1.21140325069427, 25.38492774963370 -1.21095049381256, 25.38945388793940 -1.21095049381256, 25.38990592956540 -1.21049761772155, 25.39035987854000 -1.21004486083984, 25.39081192016600 -1.21004486083984, 25.39081192016600 -1.20959210395812, 25.39126396179190 -1.20913934707641, 25.39171600341790 -1.20913934707641, 25.39262199401850 -1.20868659019470, 25.39262199401850 -1.20823383331298, 25.39352798461910 -1.20823383331298, 25.39398002624510 -1.20778107643127, 25.39443206787100 -1.20778107643127, 25.39443206787100 -1.20732820034027, 25.39488410949700 -1.20687544345855, 25.39443206787100 -1.20642268657684, 25.39420700073240 -1.20596992969512, 25.39386749267570 -1.20551717281341, 25.39352798461910 -1.20551717281341, 25.39352798461910 -1.20506441593170, 25.39386749267570 -1.20551717281341, 25.39398002624510 -1.20551717281341, 25.39420700073240 -1.20596992969512, 25.39488410949700 -1.20687544345855, 25.39533805847160 -1.20778107643127, 25.39579010009760 -1.20823383331298, 25.39579010009760 -1.20868659019470, 25.39624214172360 -1.20913934707641, 25.39669609069820 -1.20959210395812, 25.39669609069820 -1.21049761772155, 25.39714813232420 -1.21095049381256, 25.39760017395010 -1.21185600757598, 25.39805221557610 -1.21321427822113, 25.39850616455070 -1.21411991119384, 25.39895820617670 -1.21547818183898, 25.39895820617670 -1.21638369560241, 25.39986419677730 -1.21819484233856, 25.40031623840330 -1.21955311298370, 25.40076828002920 -1.22045862674713, 25.40076828002920 -1.22181701660156, 25.40122032165520 -1.22226977348327, 25.40122032165520 -1.22408080101013, 25.40212631225580 -1.22498643398284, 25.40212631225580 -1.22634470462799, 25.40257835388180 -1.22725021839141, 25.40257835388180 -1.22770309448242, 25.40303230285640 -1.22860860824584, 25.40303230285640 -1.23041963577270, 25.40348434448240 -1.23041963577270, 25.21475410461420 -1.19600892066955))"; // Idem but moving closing point eastwards to view self-intersections better std::string const dissolve_mail_2017_09_24_f = "POLYGON((25.35475410461420 -1.20600892066955, 25.36818313598630 -1.20732820034027, 25.36953926086420 -1.20868659019470, 25.37180328369140 -1.20959210395812, 25.37451934814450 -1.21049761772155, 25.37632942199700 -1.21185600757598, 25.37904357910150 -1.21276152133941, 25.38085556030270 -1.21321427822113, 25.38221168518060 -1.21366703510284, 25.38311767578120 -1.21411991119384, 25.38447570800780 -1.21411991119384, 25.38447570800780 -1.21185600757598, 25.38492774963370 -1.21140325069427, 25.38492774963370 -1.21095049381256, 25.38945388793940 -1.21095049381256, 25.38990592956540 -1.21049761772155, 25.39035987854000 -1.21004486083984, 25.39081192016600 -1.21004486083984, 25.39081192016600 -1.20959210395812, 25.39126396179190 -1.20913934707641, 25.39171600341790 -1.20913934707641, 25.39262199401850 -1.20868659019470, 25.39262199401850 -1.20823383331298, 25.39352798461910 -1.20823383331298, 25.39398002624510 -1.20778107643127, 25.39443206787100 -1.20778107643127, 25.39443206787100 -1.20732820034027, 25.39488410949700 -1.20687544345855, 25.39443206787100 -1.20642268657684, 25.39420700073240 -1.20596992969512, 25.39386749267570 -1.20551717281341, 25.39352798461910 -1.20551717281341, 25.39352798461910 -1.20506441593170, 25.39386749267570 -1.20551717281341, 25.39398002624510 -1.20551717281341, 25.39420700073240 -1.20596992969512, 25.39488410949700 -1.20687544345855, 25.39533805847160 -1.20778107643127, 25.39579010009760 -1.20823383331298, 25.39579010009760 -1.20868659019470, 25.39624214172360 -1.20913934707641, 25.39669609069820 -1.20959210395812, 25.39669609069820 -1.21049761772155, 25.39714813232420 -1.21095049381256, 25.39760017395010 -1.21185600757598, 25.39805221557610 -1.21321427822113, 25.39850616455070 -1.21411991119384, 25.39895820617670 -1.21547818183898, 25.39895820617670 -1.21638369560241, 25.39986419677730 -1.21819484233856, 25.40031623840330 -1.21955311298370, 25.40076828002920 -1.22045862674713, 25.40076828002920 -1.22181701660156, 25.40122032165520 -1.22226977348327, 25.40122032165520 -1.22408080101013, 25.40212631225580 -1.22498643398284, 25.40212631225580 -1.22634470462799, 25.40257835388180 -1.22725021839141, 25.40257835388180 -1.22770309448242, 25.40303230285640 -1.22860860824584, 25.40303230285640 -1.23041963577270, 25.40348434448240 -1.23041963577270, 25.35475410461420 -1.20600892066955))"; std::string const dissolve_ticket17 = "POLYGON ((-122.28139163 37.37319149,-122.28100699 37.37273669,-122.28002186 37.37303123,-122.27979681 37.37290072,-122.28007349 37.37240493,-122.27977334 37.37220360,-122.27819720 37.37288580,-122.27714184 37.37275161,-122.27678628 37.37253167,-122.27766437 37.37180973,-122.27804382 37.37121453,-122.27687664 37.37101354,-122.27645829 37.37203386,-122.27604423 37.37249110,-122.27632234 37.37343339,-122.27760980 37.37391082,-122.27812478 37.37800320,-122.26117222 37.39121007,-122.25572289 37.39566631,-122.25547269 37.39564971,-122.25366304 37.39552993,-122.24919976 37.39580268,-122.24417933 37.39366907,-122.24051443 37.39094143,-122.23246277 37.38100418,-122.23606766 37.38141338,-122.24001587 37.37738940,-122.23666848 37.37609347,-122.23057450 37.37882170,-122.22679803 37.37807143,-122.22525727 37.37448817,-122.22523229 37.37443000,-122.23083199 37.37609347,-122.23033486 37.37777891,-122.23169030 37.37732117,-122.23229178 37.37709687,-122.23237761 37.37631249,-122.23297776 37.37438834,-122.23872850 37.37165986,-122.24044511 37.36934068,-122.24671067 37.36865847,-122.24825570 37.36981819,-122.25151719 37.36947713,-122.25357721 37.36756706,-122.26001451 37.36579354,-122.25615213 37.36545239,-122.25486458 37.36245083,-122.25357721 37.36108651,-122.25194642 37.36013139,-122.24885652 37.35958557,-122.24911401 37.35849399,-122.25357721 37.35808470,-122.25675286 37.35897159,-122.25855539 37.35753887,-122.26181687 37.35828939,-122.26713837 37.35897159,-122.26782510 37.36108651,-122.26662339 37.36456559,-122.27288911 37.36722601,-122.27366159 37.36531602,-122.27168740 37.36470213,-122.27391900 37.36374701,-122.27074326 37.36245083,-122.27134408 37.35951742,-122.27426240 37.36135926,-122.27709482 37.36115474,-122.27966974 37.36231438,-122.27958391 37.36463382,-122.27572152 37.36463382,-122.27563569 37.36524779,-122.27700899 37.36593000,-122.27709482 37.36763529,-122.27554978 37.36838573,-122.27667254 37.36931478,-122.27677932 37.36932073,-122.27769362 37.36853987,-122.27942490 37.36830803,-122.28178776 37.36677917,-122.28509559 37.36443500,-122.28845129 37.36413744,-122.29194403 37.36695946,-122.29382577 37.36726817,-122.29600414 37.36898512,-122.29733083 37.36995398,-122.29593239 37.37141436,-122.29416649 37.37075898,-122.29325026 37.37108436,-122.29652910 37.37311697,-122.29584237 37.37374461,-122.29537583 37.37573372,-122.29487677 37.37752502,-122.30923212 37.37593011,-122.31122484 37.38230086,-122.31467994 37.38092472,-122.31715663 37.38252181,-122.32307970 37.38166978,-122.31985618 37.37667694,-122.32210304 37.37580220,-122.32581446 37.37589532,-122.32401730 37.37331839,-122.32960417 37.37189020,-122.33465527 37.37331906,-122.33425328 37.37623680,-122.33620676 37.37726132,-122.33397986 37.37822382,-122.33358918 37.38036590,-122.33202637 37.37986918,-122.33147954 37.38101784,-122.33394080 37.38198017,-122.33545239 37.38587943,-122.33478058 37.38785697,-122.33386050 37.38723721,-122.33350041 37.38571137,-122.33122003 37.38548891,-122.33140008 37.38650606,-122.33366042 37.38817490,-122.33244019 37.39157602,-122.33298157 37.39419201,-122.33164013 37.39477028,-122.33202017 37.39518351,-122.33358038 37.39499282,-122.33376050 37.39597811,-122.33550067 37.39734478,-122.33556069 37.39481797,-122.33344040 37.39292676,-122.33638094 37.38892189,-122.34240644 37.38852719,-122.34906293 37.38726898,-122.35072321 37.39338769,-122.34910291 37.39445252,-122.34796272 37.39410291,-122.34449043 37.39640534,-122.34500223 37.39729709,-122.34936291 37.39670910,-122.35098322 37.39531066,-122.35364623 37.39554510,-122.35434369 37.39612111,-122.35798429 37.39600988,-122.35768430 37.39478621,-122.36334519 37.39206871,-122.36604726 37.39203267,-122.36778592 37.39335592,-122.36518870 37.40022011,-122.36554552 37.40247752,-122.36370519 37.40331974,-122.36270506 37.40530591,-122.36320512 37.40670418,-122.36149849 37.40851392,-122.36730580 37.41054938,-122.37263720 37.41378932,-122.37161871 37.42076600,-122.36566153 37.42006292,-122.36520547 37.42742106,-122.37165953 37.43661157,-122.35943972 37.44459022,-122.35356359 37.44600810,-122.33792254 37.45796329,-122.35228518 37.47478091,-122.35127080 37.48181199,-122.34867342 37.48487322,-122.34359717 37.48801082,-122.33388431 37.48677650,-122.33142321 37.48429747,-122.32929580 37.48473149,-122.32609609 37.48291144,-122.32344850 37.48228229,-122.31924364 37.48410234,-122.31677299 37.48114051,-122.31431751 37.47848973,-122.31259201 37.47682190,-122.31515972 37.47568196,-122.31691389 37.47360309,-122.31292494 37.46960081,-122.31130153 37.46937743,-122.30889894 37.47124987,-122.30612839 37.47011613,-122.30149630 37.46568378,-122.30064277 37.46363784,-122.29283821 37.45922376,-122.28630141 37.45415497,-122.28883099 37.44629920,-122.28316717 37.44197138,-122.27554148 37.42297597,-122.25597410 37.40553692,-122.25196579 37.40129593,-122.25012043 37.40049143,-122.24823207 37.39897758,-122.24754551 37.39740941,-122.24778582 37.39621607,-122.24934787 37.39599102,-122.25005170 37.39871849,-122.25222328 37.39863668,-122.25342491 37.39737529,-122.25520162 37.39667289,-122.25528737 37.39522726,-122.27747460 37.37809616,-122.27977493 37.37858717,-122.28157729 37.37920106,-122.28322534 37.37952846,-122.28416939 37.38092656,-122.28621223 37.37984219,-122.28638389 37.37613857,-122.28382607 37.37843722,-122.27930278 37.37718220,-122.28196361 37.37652740,-122.28295058 37.37568167,-122.28216101 37.37523148,-122.28114822 37.37543608,-122.27934569 37.37528613,-122.27996369 37.37448121,-122.28104521 37.37454944,-122.28185197 37.37422883,-122.28290767 37.37474038,-122.28376597 37.37467224,-122.28428104 37.37399012,-122.28402346 37.37338989,-122.28610922 37.37364914,-122.28651264 37.37327388,-122.28672722 37.37207343,-122.28628398 37.37205448,-122.28574460 37.37166682,-122.28479711 37.37200981,-122.28327731 37.37137228,-122.28285511 37.37100700,-122.28279409 37.37125669,-122.28315527 37.37173756,-122.28321872 37.37220569,-122.28187007 37.37231918,-122.28193109 37.37294908,-122.28139163 37.37319149))"; std::string const dissolve_reallife = "POLYGON((170718 605997,170718 605997,170776 606016,170773 606015,170786 606020,170778 606016,170787 606021,170781 606017,170795 606028,170795 606028,170829 606055,170939 606140,170933 605968,170933 605968,170932 605908,170929 605834,170920 605866,170961 605803,170739 605684,170699 605749,170691 605766,170693 605762,170686 605775,170688 605771,170673 605794,170676 605790,170668 605800,170672 605796,170651 605818,170653 605816,170639 605829,170568 605899,170662 605943,170633 605875,170603 605961,170718 605997))"; // https://svn.boost.org/trac/boost/ticket/10713 std::string const dissolve_ticket10713 = "POLYGON((-0.7189743518829346 4.1308121681213379, 0.0831791982054710 4.1034231185913086, 0.1004156470298767 4.1107301712036133, 0.1044322624802589 4.1026973724365234, 0.0831791982054710 4.1034231185913086, -0.7711903452873230 3.7412264347076416, -0.7189743518829346 4.1308121681213379))"; } #if defined(TEST_WITH_SVG) template struct map_visitor { map_visitor(Mapper& mapper) : m_mapper(mapper) {} void print(char const* header) {} template void print(char const* header, Turns const& turns, int turn_index) { std::string style = "fill:rgb(0,0,0);font-family:Arial;font-size:6px"; stream(turns, turns[turn_index], turns[turn_index].operations[0], header, style); } template void print(char const* header, Turns const& turns, int turn_index, int op_index) { std::string style = "fill:rgb(0,0,0);font-family:Arial;font-size:6px"; stream(turns, turns[turn_index], turns[turn_index].operations[op_index], header, style); } template void visit_turns(int phase, Turns const& turns) { typedef typename boost::range_value::type turn_type; std:size_t index = 0; BOOST_FOREACH(turn_type const& turn, turns) { switch (phase) { case 1 : // after self_turns m_mapper.map(turn.point, "fill:rgb(255,128,0);" "stroke:rgb(0,0,0);stroke-width:1", 4); break; case 3 : // after enrich/traverse for union label_turn(index, turn, -5, "fill:rgb(0,0,128);"); break; case 5 : // after enrich/traverse for intersection label_turn(index, turn, 5, "fill:rgb(0,0,0);"); break; } index++; } } template void visit_clusters(Clusters const& , Turns const& ) {} template void visit_traverse(Turns const& , Turn const& , Operation const& , char const*) {} template void visit_traverse_reject(Turns const& , Turn const& , Operation const& , bg::detail::overlay::traverse_error_type ) {} private : template bool label_operation(Turn const& turn, std::size_t index, std::ostream& os) { os << bg::operation_char(turn.operations[index].operation); bool result = false; if (! turn.discarded) { if (turn.operations[index].enriched.next_ip_index != -1) { os << "->" << turn.operations[index].enriched.next_ip_index; if (turn.operations[index].enriched.next_ip_index != -1) { result = true; } } else { os << "->" << turn.operations[index].enriched.travels_to_ip_index; if (turn.operations[index].enriched.travels_to_ip_index != -1) { result = true; } } } return result; } template void label_turn(std::size_t index, Turn const& turn, int y_offset, std::string const& color) { std::ostringstream out; out << index << " "; if (turn.cluster_id != -1) { out << " c=" << turn.cluster_id << " "; } bool lab1 = label_operation(turn, 0, out); out << " / "; bool lab2 = label_operation(turn, 1, out); if (turn.switch_source) { out << "#"; } if (turn.discarded) { out << "!"; } std::string font8 = "font-family:Arial;font-size:6px"; std::string font6 = "font-family:Arial;font-size:4px"; std::string style = color + ";" + font8; if (turn.discarded) { style = "fill:rgb(92,92,92);" + font6; } else if (turn.cluster_id != -1) { style = color + ";" + font8; } else if (! lab1 || ! lab2) { style = color + ";" + font6; } m_mapper.text(turn.point, out.str(), style, 5, y_offset, 6); } Mapper& m_mapper; }; #endif //! Unittest settings: validity, tolerance struct ut_settings { double percentage; bool test_validity; explicit ut_settings(double p = 0.001, bool tv = true) : percentage(p) , test_validity(tv) {} }; template std::string as_wkt(Geometry const& geometry) { std::ostringstream out; out << bg::wkt(geometry); return out.str(); } template void test_dissolve(std::string const& caseid, Geometry const& geometry, double expected_area, std::size_t expected_clip_count, std::size_t expected_hole_count, std::size_t expected_point_count, ut_settings const& settings) { typedef typename bg::coordinate_type::type coordinate_type; static const bool is_line = bg::geometry_id::type::value == 2; //std::cout << bg::area(geometry) << std::endl; std::vector dissolved1; // Check dispatch::dissolve { typedef typename bg::strategy::intersection::services::default_strategy < typename bg::cs_tag::type >::type strategy_type; typedef typename bg::rescale_policy_type < typename bg::point_type::type >::type rescale_policy_type; rescale_policy_type robust_policy = bg::get_rescale_policy(geometry); // This will optionally also create SVG with turn-debug information strategy_type strategy; #if ! defined(TEST_WITH_SVG) bg::detail::overlay::overlay_null_visitor visitor; #else std::ostringstream filename; filename << "dissolve_" << caseid << "_" << string_from_type::name() << ".svg"; std::ofstream svg(filename.str().c_str()); typedef bg::svg_mapper < typename bg::point_type::type > mapper_type; mapper_type mapper(svg, 500, 500); mapper.add(geometry); mapper.map(geometry, "fill-opacity:0.5;fill:rgb(153,204,0);" "stroke:rgb(153,204,0);stroke-width:3;fill-rule:nonzero"); map_visitor visitor(mapper); #endif bg::dispatch::dissolve < typename bg::tag::type, typename bg::tag::type, Geometry, GeometryOut >::apply(geometry, robust_policy, std::back_inserter(dissolved1), strategy, visitor); #if defined(TEST_WITH_SVG) BOOST_FOREACH(GeometryOut& dissolved, dissolved1) { mapper.map(dissolved, "fill:none;stroke-opacity:0.4;stroke:rgb(255,0,255);stroke-width:8;"); } #endif } // Check dissolve_inserter std::vector dissolved2; bg::dissolve_inserter(geometry, std::back_inserter(dissolved2)); // Check dissolve and validity, assuming GeometryOut is a single polygon typedef bg::model::multi_polygon multi_polygon; multi_polygon dissolved3; bg::dissolve(geometry, dissolved3); if (settings.test_validity) { std::string message; bool const valid = bg::is_valid(dissolved3, message); BOOST_CHECK_MESSAGE(valid, "dissolve: " << caseid << " geometry is not valid: " << message); } // Make output unique (TODO: this should probably be moved to dissolve itself) BOOST_FOREACH(GeometryOut& dissolved, dissolved1) { bg::unique(dissolved); } BOOST_FOREACH(GeometryOut& dissolved, dissolved2) { bg::unique(dissolved); } BOOST_FOREACH(GeometryOut& dissolved, dissolved3) { bg::unique(dissolved); } typename bg::default_area_result::type length_or_area = 0; std::size_t holes = 0; std::size_t count = 0; BOOST_FOREACH(GeometryOut& dissolved, dissolved2) { length_or_area += is_line ? bg::length(dissolved) : bg::area(dissolved); holes += bg::num_interior_rings(dissolved); count += bg::num_points(dissolved); } BOOST_CHECK_MESSAGE(count == expected_point_count, "dissolve: " << caseid << " #points expected: " << expected_point_count << " detected: " << count << " type: " << string_from_type::name() ); BOOST_CHECK_MESSAGE(dissolved1.size() == expected_clip_count, "dissolve: " << caseid << " #clips expected: " << expected_clip_count << " detected: " << dissolved1.size() << " type: " << string_from_type::name() ); BOOST_CHECK_EQUAL(holes, expected_hole_count); BOOST_CHECK_CLOSE(length_or_area, expected_area, settings.percentage); BOOST_CHECK_EQUAL(dissolved1.size(), dissolved2.size()); BOOST_CHECK_EQUAL(dissolved1.size(), dissolved3.size()); if (dissolved1.size() == dissolved2.size() && dissolved1.size() == dissolved3.size()) { for (std::size_t i = 0; i < dissolved1.size(); i++) { std::string const wkt1 = as_wkt(dissolved1[i]); std::string const wkt2 = as_wkt(dissolved2[i]); std::string const wkt3 = as_wkt(dissolved3[i]); BOOST_CHECK_MESSAGE(wkt1 == wkt2, caseid << " : output differs: " << wkt1 << " VERSUS " << wkt2); BOOST_CHECK_MESSAGE(wkt1 == wkt3, caseid << " : output differs: " << wkt1 << " VERSUS " << wkt3); } } } template void test_one(std::string const& caseid, std::string const& wkt, double expected_area, std::size_t expected_clip_count, std::size_t expected_hole_count, std::size_t expected_point_count, ut_settings const& settings) { Geometry geometry; bg::read_wkt(wkt, geometry); // If defined as closed, it should be closed. The algorithm itself // cannot close it without making a copy. bg::correct_closure(geometry); test_dissolve(caseid, geometry, expected_area, expected_clip_count, expected_hole_count, expected_point_count, settings); #ifdef BOOST_GEOMETRY_TEST_MULTI_PERMUTATIONS // Test different combinations of a multi-polygon int n = geometry.size(); // test them in all orders std::vector indices; for (int i = 0; i < n; i++) { indices.push_back(i); } int permutation = 0; do { std::ostringstream out; out << caseid; Geometry geometry2; for (int i = 0; i < n; i++) { int index = indices[i]; out << "_" << index; geometry2.push_back(geometry[index]); } test_dissolve(out.str(), geometry2, expected_area, expected_clip_count, expected_hole_count, expected_point_count, settings); } while (std::next_permutation(indices.begin(), indices.end())); #endif } #define TEST_DISSOLVE(caseid, area, clips, holes, points) { \ ut_settings settings; \ (test_one) ( #caseid, caseid, area, clips, holes, points, settings); } #define TEST_DISSOLVE_IGNORE(caseid, area, clips, holes, points) { \ ut_settings settings; settings.test_validity = false; \ (test_one) ( #caseid, caseid, area, clips, holes, points, settings); } #define TEST_MULTI(caseid, area, clips, holes, points) { \ ut_settings settings; \ (test_one) ( #caseid, caseid, area, clips, holes, points, settings); } template void test_all() { typedef bg::model::ring

ring; typedef bg::model::polygon

polygon; typedef bg::model::multi_polygon multi_polygon; TEST_DISSOLVE(dissolve_1, 8.0, 1, 0, 6); TEST_DISSOLVE(dissolve_2, 7.9296875, 1, 1, 12); TEST_DISSOLVE(dissolve_3, 4.0, 2, 0, 8); TEST_DISSOLVE(dissolve_4, 8.0, 2, 0, 8); TEST_DISSOLVE(dissolve_5, 12.0, 2, 0, 8); TEST_DISSOLVE(dissolve_6, 16.0, 1, 0, 6); TEST_DISSOLVE(dissolve_7, 50.48056402439, 1, 0, 7); TEST_DISSOLVE(dissolve_8, 25.6158412, 1, 0, 11); TEST_DISSOLVE(dissolve_d1, 8.0, 1, 0, 4); TEST_DISSOLVE(dissolve_d2, 16.0, 1, 0, 10); TEST_DISSOLVE(dissolve_h1_a, 16.0, 1, 0, 6); TEST_DISSOLVE(dissolve_h1_b, 14.0, 1, 1, 10); TEST_DISSOLVE(dissolve_h2, 16.25, 1, 0, 8); TEST_DISSOLVE(dissolve_h3, 16.0, 1, 0, 5); // no generated hole (yet) TEST_DISSOLVE(dissolve_h4, 14.484848, 1, 1, 9); TEST_DISSOLVE(dissolve_mail_2017_09_24_a, 0.5, 2, 0, 8); TEST_DISSOLVE(dissolve_mail_2017_09_24_b, 16.0, 1, 0, 6); TEST_DISSOLVE(dissolve_mail_2017_09_24_c, 0.5, 2, 0, 8); TEST_DISSOLVE_IGNORE(dissolve_mail_2017_09_24_d, 0.5, 1, 0, 5); TEST_DISSOLVE(dissolve_mail_2017_09_24_e, 0.001801138128, 5, 0, 69); TEST_DISSOLVE(dissolve_mail_2017_09_24_f, 0.000361308800, 5, 0, 69); #ifdef BOOST_GEOMETRY_TEST_INCLUDE_FAILING_TESTS TEST_DISSOLVE(dissolve_9, 25.6158412, 1, 0, 11); #endif // CCW polygons should turn CW after dissolve TEST_DISSOLVE(dissolve_10, 60.0, 1, 0, 7); #ifdef BOOST_GEOMETRY_TEST_INCLUDE_FAILING_TESTS // TODO: should be the same, 7, 60. The polygon is dissolved (splitted) but the extra polygon is still on top of the other TEST_DISSOLVE(dissolve_11, 60.0, 1, 0, 7); #endif TEST_DISSOLVE(dissolve_ticket10713, 0.157052766, 2, 0, 8); TEST_MULTI(multi_three_triangles, 42.614078674948232, 1, 1, 13); TEST_MULTI(multi_simplex_two, 14.7, 1, 0, 8); TEST_MULTI(multi_simplex_three, 16.7945, 1, 0, 14); TEST_MULTI(multi_simplex_four, 20.7581, 1, 0, 18); TEST_MULTI(multi_disjoint, 24.0, 4, 0, 16); TEST_MULTI(multi_new_interior, 19.5206, 1, 1, 18); TEST_MULTI(ggl_list_20110307_javier_01_a, 6400.0, 2, 0, 14); TEST_DISSOLVE(ggl_list_20110307_javier_01_b, 3993600.0, 1, 2, 19); TEST_DISSOLVE(dissolve_ticket17, 0.00920834633689, 1, 1, 228); TEST_DISSOLVE(dissolve_reallife, 91756.916526794434, 1, 0, 25); #ifdef BOOST_GEOMETRY_TEST_INCLUDE_FAILING_TESTS // Reported by Artem Pavlenko at gitter - until now these did not work yet // https://gitter.im/boostorg/geometry?at=58ef46408e4b63533dc49b48 test_one("artem1", "POLYGON((36.9121 2.03883,26.2052 54.353,60.0781 64.2202,96.2171 55.9826,71.1506 39.8365,5.72552 94.1523,4.06819 13.9054,59.7155 44.5877,60.9243 16.4597,48.8696 93.039,36.9121 2.03883))", 0, 0, 0); // TODO: expected // https://gitter.im/boostorg/geometry?at=58ef6a2b69a692963ea83a6d test_one("artem2", "POLYGON((337 176,602 377,294 372,581 166,453 449,337 176))", 0, 0, 0); // TODO: expected #endif /* //Should be solved (completely) differently // From mail on the ggl-mailing list test_one("mail_denis_1", "POLYGON((55 10, 141 237, 249 23, 21 171, 252 169, 24 89, 266 73, 55 10))", 0, 7, 50.48056402439); // Source: http://upload.wikimedia.org/wikipedia/commons/8/83/Acute_heptagram.svg test_one("acute_heptagram", "POLYGON((409 5,229 793.631528,733.348792 161.198146,4.543671 512.172194,813.456329 512.172194,84.651208 161.198146,589 793.631528))", 0, 11, 25.6158412); // Source: http://upload.wikimedia.org/wikipedia/commons/a/a7/Obtuse_heptagram.svg test_one("obtuse_heptagram", "POLYGON((409 5,813.456329 512.172194,229 793.631528,84.651208 161.198146,733.348792 161.198146,589 793.631528,4.543671 512.172194))", 0, 11, 25.6158412); */ } int test_main(int, char* []) { test_all >(); return 0; }