#include "catch.hpp" #include #include #include "../basic/helper.hpp" TEST_CASE("OGR_Geometry") { SECTION("point") { osmium::geom::OGRFactory<> factory; std::unique_ptr point {factory.create_point(osmium::Location(3.2, 4.2))}; REQUIRE(3.2 == point->getX()); REQUIRE(4.2 == point->getY()); } SECTION("empty_point") { osmium::geom::OGRFactory<> factory; REQUIRE_THROWS_AS(factory.create_point(osmium::Location()), osmium::invalid_location); } SECTION("linestring") { osmium::geom::OGRFactory<> factory; osmium::memory::Buffer buffer(10000); auto& wnl = osmium::builder::build_way_node_list(buffer, { {1, {3.2, 4.2}}, {3, {3.5, 4.7}}, {4, {3.5, 4.7}}, {2, {3.6, 4.9}} }); { std::unique_ptr linestring {factory.create_linestring(wnl)}; REQUIRE(3 == linestring->getNumPoints()); REQUIRE(3.2 == linestring->getX(0)); REQUIRE(3.6 == linestring->getX(2)); } { std::unique_ptr linestring {factory.create_linestring(wnl, osmium::geom::use_nodes::unique, osmium::geom::direction::backward)}; REQUIRE(3 == linestring->getNumPoints()); REQUIRE(3.6 == linestring->getX(0)); REQUIRE(3.2 == linestring->getX(2)); } { std::unique_ptr linestring {factory.create_linestring(wnl, osmium::geom::use_nodes::all)}; REQUIRE(4 == linestring->getNumPoints()); REQUIRE(3.2 == linestring->getX(0)); } { std::unique_ptr linestring {factory.create_linestring(wnl, osmium::geom::use_nodes::all, osmium::geom::direction::backward)}; REQUIRE(4 == linestring->getNumPoints()); REQUIRE(3.6 == linestring->getX(0)); } } SECTION("area_1outer_0inner") { osmium::geom::OGRFactory<> factory; osmium::memory::Buffer buffer(10000); osmium::Area& area = buffer_add_area(buffer, "foo", {}, { { true, { {1, {3.2, 4.2}}, {2, {3.5, 4.7}}, {3, {3.6, 4.9}}, {1, {3.2, 4.2}} }} }); std::unique_ptr mp {factory.create_multipolygon(area)}; REQUIRE(1 == mp->getNumGeometries()); const OGRPolygon* p0 = dynamic_cast(mp->getGeometryRef(0)); REQUIRE(0 == p0->getNumInteriorRings()); const OGRLineString* l0e = p0->getExteriorRing(); REQUIRE(4 == l0e->getNumPoints()); REQUIRE(3.5 == l0e->getX(1)); } SECTION("area_1outer_1inner") { osmium::geom::OGRFactory<> factory; osmium::memory::Buffer buffer(10000); osmium::Area& area = buffer_add_area(buffer, "foo", {}, { { true, { {1, {0.1, 0.1}}, {2, {9.1, 0.1}}, {3, {9.1, 9.1}}, {4, {0.1, 9.1}}, {1, {0.1, 0.1}} }}, { false, { {5, {1.0, 1.0}}, {6, {8.0, 1.0}}, {7, {8.0, 8.0}}, {8, {1.0, 8.0}}, {5, {1.0, 1.0}} }} }); std::unique_ptr mp {factory.create_multipolygon(area)}; REQUIRE(1 == mp->getNumGeometries()); const OGRPolygon* p0 = dynamic_cast(mp->getGeometryRef(0)); REQUIRE(1 == p0->getNumInteriorRings()); const OGRLineString* l0e = p0->getExteriorRing(); REQUIRE(5 == l0e->getNumPoints()); const OGRLineString* l0i0 = p0->getInteriorRing(0); REQUIRE(5 == l0i0->getNumPoints()); } SECTION("area_2outer_2inner") { osmium::geom::OGRFactory<> factory; osmium::memory::Buffer buffer(10000); osmium::Area& area = buffer_add_area(buffer, "foo", {}, { { true, { {1, {0.1, 0.1}}, {2, {9.1, 0.1}}, {3, {9.1, 9.1}}, {4, {0.1, 9.1}}, {1, {0.1, 0.1}} }}, { false, { {5, {1.0, 1.0}}, {6, {4.0, 1.0}}, {7, {4.0, 4.0}}, {8, {1.0, 4.0}}, {5, {1.0, 1.0}} }}, { false, { {10, {5.0, 5.0}}, {11, {5.0, 7.0}}, {12, {7.0, 7.0}}, {10, {5.0, 5.0}} }}, { true, { {100, {10.0, 10.0}}, {101, {11.0, 10.0}}, {102, {11.0, 11.0}}, {103, {10.0, 11.0}}, {100, {10.0, 10.0}} }} }); std::unique_ptr mp {factory.create_multipolygon(area)}; REQUIRE(2 == mp->getNumGeometries()); const OGRPolygon* p0 = dynamic_cast(mp->getGeometryRef(0)); REQUIRE(2 == p0->getNumInteriorRings()); const OGRLineString* l0e = p0->getExteriorRing(); REQUIRE(5 == l0e->getNumPoints()); const OGRPolygon* p1 = dynamic_cast(mp->getGeometryRef(1)); REQUIRE(0 == p1->getNumInteriorRings()); const OGRLineString* l1e = p1->getExteriorRing(); REQUIRE(5 == l1e->getNumPoints()); } }