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
|
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2021 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include <catch.hpp>
#include "reprojection.hpp"
TEST_CASE("projection 4326", "[NoDB]")
{
osmium::Location const loc{10.0, 53.0};
int const srs = 4326;
auto const reprojection = reprojection::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE(reprojection->target_latlon());
auto const c = reprojection->reproject(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 = 3857;
auto const reprojection = reprojection::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE_FALSE(reprojection->target_latlon());
auto const c = reprojection->reproject(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));
}
#ifdef HAVE_GENERIC_PROJ
TEST_CASE("projection 5520", "[NoDB]")
{
osmium::Location const loc{10.0, 53.0};
int const srs = 5520; // DHDN / 3-degree Gauss-Kruger zone 1
auto const reprojection = reprojection::create_projection(srs);
REQUIRE(reprojection->target_srs() == srs);
REQUIRE_FALSE(reprojection->target_latlon());
auto const c = reprojection->reproject(loc);
REQUIRE(c.x == Approx(1969644.93));
REQUIRE(c.y == Approx(5897146.04));
auto const ct = reprojection->target_to_tile(c);
REQUIRE(ct.x == Approx(1113194.91));
REQUIRE(ct.y == Approx(6982997.92));
}
#endif
|