1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2025 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include <catch.hpp>
#include "projection.hpp"
#include "reprojection.hpp"
TEST_CASE("projection 4326", "[NoDB]")
{
osmium::Location const loc{10.0, 53.0};
int const srs = PROJ_LATLONG;
auto const reprojection = reprojection_t::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE(reprojection->target_latlon());
auto const c = reprojection->reproject(geom::point_t{loc});
REQUIRE(c.x() == Approx(10.0));
REQUIRE(c.y() == Approx(53.0));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(1113194.91));
REQUIRE(ct.y() == Approx(6982997.92));
}
TEST_CASE("projection 3857", "[NoDB]")
{
osmium::Location const loc{10.0, 53.0};
int const srs = PROJ_SPHERE_MERC;
auto const reprojection = reprojection_t::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE_FALSE(reprojection->target_latlon());
auto const c = reprojection->reproject(geom::point_t{loc});
REQUIRE(c.x() == Approx(1113194.91));
REQUIRE(c.y() == Approx(6982997.92));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(1113194.91));
REQUIRE(ct.y() == Approx(6982997.92));
}
TEST_CASE("projection 3857 bounds", "[NoDB]")
{
osmium::Location const loc1{0.0, 0.0};
osmium::Location const loc2{-180.0, -85.0511288};
osmium::Location const loc3{180.0, 85.0511288};
int const srs = PROJ_SPHERE_MERC;
auto const reprojection = reprojection_t::create_projection(srs);
{
auto const c = reprojection->reproject(geom::point_t{loc1});
REQUIRE(c.x() == Approx(0.0));
REQUIRE(c.y() == Approx(0.0));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(0.0));
REQUIRE(ct.y() == Approx(0.0));
}
{
auto const c = reprojection->reproject(geom::point_t{loc2});
REQUIRE(c.x() == Approx(-20037508.34));
REQUIRE(c.y() == Approx(-20037508.34));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(-20037508.34));
REQUIRE(ct.y() == Approx(-20037508.34));
}
{
auto const c = reprojection->reproject(geom::point_t{loc3});
REQUIRE(c.x() == Approx(20037508.34));
REQUIRE(c.y() == Approx(20037508.34));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(20037508.34));
REQUIRE(ct.y() == Approx(20037508.34));
}
}
#ifdef HAVE_GENERIC_PROJ
TEST_CASE("projection 5651", "[NoDB]")
{
osmium::Location const loc{10.0, 53.0};
int const srs = 5651; // ETRS89 / UTM zone 31N (N-zE)
auto const reprojection = reprojection_t::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE_FALSE(reprojection->target_latlon());
auto const c = reprojection->reproject(geom::point_t{loc});
REQUIRE(c.x() == Approx(31969448.78));
REQUIRE(c.y() == Approx(5895222.39));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x() == Approx(1113194.91));
REQUIRE(ct.y() == Approx(6982997.92));
}
#endif
|