#include "catch.hpp" #include #include #include "helper.hpp" #include "area_helper.hpp" #include "wnl_helper.hpp" TEST_CASE("WKB_Geometry_with_GEOS") { SECTION("point") { osmium::geom::WKBFactory<> wkb_factory(osmium::geom::wkb_type::wkb, osmium::geom::out_type::hex); osmium::geom::GEOSFactory<> geos_factory; std::string wkb {wkb_factory.create_point(osmium::Location(3.2, 4.2))}; std::unique_ptr geos_point = geos_factory.create_point(osmium::Location(3.2, 4.2)); REQUIRE(geos_to_wkb(geos_point.get()) == wkb); } SECTION("linestring") { osmium::geom::WKBFactory<> wkb_factory(osmium::geom::wkb_type::wkb, osmium::geom::out_type::hex); osmium::geom::GEOSFactory<> geos_factory; osmium::memory::Buffer buffer(10000); auto &wnl = create_test_wnl_okay(buffer); { std::string wkb = wkb_factory.create_linestring(wnl); std::unique_ptr geos = geos_factory.create_linestring(wnl); REQUIRE(geos_to_wkb(geos.get()) == wkb); } { std::string wkb = wkb_factory.create_linestring(wnl, osmium::geom::use_nodes::unique, osmium::geom::direction::backward); std::unique_ptr geos = geos_factory.create_linestring(wnl, osmium::geom::use_nodes::unique, osmium::geom::direction::backward); REQUIRE(geos_to_wkb(geos.get()) == wkb); } { std::string wkb = wkb_factory.create_linestring(wnl, osmium::geom::use_nodes::all); std::unique_ptr geos = geos_factory.create_linestring(wnl, osmium::geom::use_nodes::all); REQUIRE(geos_to_wkb(geos.get()) == wkb); } { std::string wkb = wkb_factory.create_linestring(wnl, osmium::geom::use_nodes::all, osmium::geom::direction::backward); std::unique_ptr geos = geos_factory.create_linestring(wnl, osmium::geom::use_nodes::all, osmium::geom::direction::backward); REQUIRE(geos_to_wkb(geos.get()) == wkb); } } SECTION("area_1outer_0inner") { osmium::geom::WKBFactory<> wkb_factory(osmium::geom::wkb_type::wkb, osmium::geom::out_type::hex); osmium::geom::GEOSFactory<> geos_factory; osmium::memory::Buffer buffer(10000); const osmium::Area& area = create_test_area_1outer_0inner(buffer); std::string wkb = wkb_factory.create_multipolygon(area); std::unique_ptr geos = geos_factory.create_multipolygon(area); REQUIRE(geos_to_wkb(geos.get()) == wkb); } SECTION("area_1outer_1inner") { osmium::geom::WKBFactory<> wkb_factory(osmium::geom::wkb_type::wkb, osmium::geom::out_type::hex); osmium::geom::GEOSFactory<> geos_factory; osmium::memory::Buffer buffer(10000); const osmium::Area& area = create_test_area_1outer_1inner(buffer); std::string wkb = wkb_factory.create_multipolygon(area); std::unique_ptr geos = geos_factory.create_multipolygon(area); REQUIRE(geos_to_wkb(geos.get()) == wkb); } SECTION("area_2outer_2inner") { osmium::geom::WKBFactory<> wkb_factory(osmium::geom::wkb_type::wkb, osmium::geom::out_type::hex); osmium::geom::GEOSFactory<> geos_factory; osmium::memory::Buffer buffer(10000); const osmium::Area& area = create_test_area_2outer_2inner(buffer); std::string wkb = wkb_factory.create_multipolygon(area); std::unique_ptr geos = geos_factory.create_multipolygon(area); REQUIRE(geos_to_wkb(geos.get()) == wkb); } }