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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
/*
* Copyright 2012-2024 Kai Pastor
*
* This file is part of OpenOrienteering.
*
* OpenOrienteering is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenOrienteering is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenOrienteering. If not, see <http://www.gnu.org/licenses/>.
*/
#include "georeferencing_t.h"
#include <cmath>
#include <cstddef>
#include <QtMath>
#include <QtTest>
#include <QByteArray>
#include <QLineF>
#include <QPoint>
#include <QPointF>
#include <QVariant>
#include <geodesic.h>
#ifndef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
# include <proj.h>
#endif
#ifdef MAPPER_TEST_GDAL
# include <gdal.h>
# include <ogr_api.h>
# include <ogr_srs_api.h>
// IWYU pragma: no_include <gdal_version.h>
#endif
#include "core/crs_template.h"
#include "core/crs_template_implementation.h"
#include "core/georeferencing.h"
#include "core/latlon.h"
#include "core/map_coord.h"
#include "fileformats/xml_file_format.h"
using namespace OpenOrienteering;
#ifndef MAPPER_COMMON_LIB
// mock stuff to satisfy link-time dependencies
int XMLFileFormat::active_version = 6;
#endif
namespace
{
// clazy:excludeall=non-pod-global-static
auto const epsg3857_spec = QStringLiteral("+init=epsg:3857");
auto const epsg5514_spec = QStringLiteral("+init=epsg:5514");
auto const gk2_spec = QStringLiteral("+proj=tmerc +lat_0=0 +lon_0=6 +k=1.000000 +x_0=2500000 +y_0=0 +ellps=bessel +datum=potsdam +units=m +no_defs");
auto const gk3_spec = QStringLiteral("+proj=tmerc +lat_0=0 +lon_0=9 +k=1.000000 +x_0=3500000 +y_0=0 +ellps=bessel +datum=potsdam +units=m +no_defs");
auto const utm32_spec = QStringLiteral("+proj=utm +zone=32 +datum=WGS84");
/**
* Returns the radian value of a value given in degree or degree/minutes/seconds.
*/
double degFromDMS(double d, double m=0.0, double s=0.0)
{
return d + m/60.0 + s/3600.0;
}
/**
* Returns the geodetic distance between the given geographic coordinates.
*
* This function uses the WGS84 ellipsoid.
*/
double geodeticDistance(const LatLon& first, const LatLon& second)
{
auto distance = 0.0;
auto g = geod_geodesic{};
geod_init(&g, 6378137, 1/298.257223563); // WGS84 ellipsoid
geod_inverse(&g, first.latitude(), first.longitude(), second.latitude(), second.longitude(),
&distance, nullptr, nullptr);
return distance;
}
/**
* Returns the nominal east-west scale factor for "Web Mercator".
*/
double epsg3857ScaleX(double latitude)
{
constexpr auto e = 0.081819191; // WGS84 eccentricity
auto phi = qDegreesToRadians(latitude);
return pow(1.0 - e * e * sin(phi) * sin(phi), 0.5) / cos(phi);
}
/**
* Returns the nominal north-south scale factor for "Web Mercator".
*/
double epsg3857ScaleY(double latitude)
{
constexpr auto e = 0.081819191; // WGS84 eccentricity
auto phi = qDegreesToRadians(latitude);
return pow(1.0 - e * e * sin(phi) * sin(phi), 1.5) / (1.0 - e * e) / cos(phi);
}
} // namespace
void GeoreferencingTest::initTestCase()
{
XMLFileFormat::active_version = 6;
#ifndef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
auto info = proj_info();
QVERIFY(info.major == PROJ_VERSION_MAJOR);
QVERIFY(info.minor == PROJ_VERSION_MINOR);
#endif
#ifdef MAPPER_TEST_GDAL
QVERIFY(GDALCheckVersion(GDAL_VERSION_MAJOR, GDAL_VERSION_MINOR, "GeoreferencingTest") == TRUE);
#endif
}
void GeoreferencingTest::testEmptyProjectedCRS()
{
Georeferencing new_georef;
QCOMPARE(new_georef.getState(), Georeferencing::Local);
QCOMPARE(new_georef.getScaleDenominator(), 1000u);
QCOMPARE(new_georef.getCombinedScaleFactor(), 1.0);
QCOMPARE(new_georef.getAuxiliaryScaleFactor(), 1.0);
QCOMPARE(new_georef.getDeclination(), 0.0);
QCOMPARE(new_georef.getGrivation(), 0.0);
QCOMPARE(new_georef.getGrivationError(), 0.0);
QCOMPARE(new_georef.getConvergence(), 0.0);
QCOMPARE(new_georef.getMapRefPoint(), MapCoord(0, 0));
QCOMPARE(new_georef.getProjectedRefPoint(), QPointF(0.0, 0.0));
}
void GeoreferencingTest::testStateChanges()
{
Georeferencing georef;
QCOMPARE(georef.getState(), Georeferencing::Local);
// From local to broken
georef.setProjectedCRS(QStringLiteral("Broken"), QStringLiteral("+init=epsg:BROKEN"));
QCOMPARE(georef.getState(), Georeferencing::BrokenGeospatial);
// From broken to geospatial
georef.setProjectedCRS(QStringLiteral("UTM 32"), utm32_spec);
QCOMPARE(georef.getState(), Georeferencing::Geospatial);
// From geospatial to broken
georef.setProjectedCRS(QStringLiteral("Broken"), QStringLiteral("+init=epsg:BROKEN"));
QCOMPARE(georef.getState(), Georeferencing::BrokenGeospatial);
// From broken to broken
georef.setProjectedCRS(QStringLiteral("Broken"), {});
QCOMPARE(georef.getState(), Georeferencing::BrokenGeospatial);
// From broken to local
georef.setLocalState();
QCOMPARE(georef.getState(), Georeferencing::Local);
}
void GeoreferencingTest::testGridScaleFactor_data()
{
QTest::addColumn<QString>("spec");
QTest::addColumn<double>("lat");
QTest::addColumn<double>("lon");
QTest::addColumn<double>("scale_x");
QTest::addColumn<double>("scale_y");
QTest::newRow("UTM 32 central meridian") << utm32_spec << 50.0 << 9.0 << 0.9996 << 0.9996;
QTest::newRow("UTM 32 180 km west of c.m.") << utm32_spec << 50.0 << 6.48 << 1.0 << 1.0;
QTest::newRow("EPSG 3857") << epsg3857_spec << 50.0 << 6.48 << epsg3857ScaleX(50.0) << epsg3857ScaleY(50.0);
}
void GeoreferencingTest::testGridScaleFactor()
{
QFETCH(QString, spec);
QFETCH(double, lat);
QFETCH(double, lon);
QFETCH(double, scale_x);
QFETCH(double, scale_y);
Georeferencing georef;
georef.setProjectedCRS(QString::fromLatin1(QTest::currentDataTag()), spec);
QCOMPARE(georef.getState(), Georeferencing::Geospatial);
auto const latlon = LatLon{lat, lon};
georef.setGeographicRefPoint(latlon);
QCOMPARE(georef.getState(), Georeferencing::Geospatial);
// Verify scale_x
auto const east = georef.getProjectedRefPoint() + QPointF{500.0, 0.0};
auto const west = georef.getProjectedRefPoint() - QPointF{500.0, 0.0};
auto const grid_distance_x = QLineF{east, west}.length();
auto const geod_distance_x = geodeticDistance(georef.toGeographicCoords(west), georef.toGeographicCoords(east));
if (std::fabs(grid_distance_x - geod_distance_x * scale_x) >= 0.001)
{
QVERIFY(geod_distance_x > 0.0);
QCOMPARE(grid_distance_x / geod_distance_x, scale_x);
}
// Verify scale_y
auto const north = georef.getProjectedRefPoint() - QPointF{0.0, 500.0};
auto const south = georef.getProjectedRefPoint() + QPointF{0.0, 500.0};
auto const grid_distance_y = QLineF{north, south}.length();
auto const geod_distance_y = geodeticDistance(georef.toGeographicCoords(north), georef.toGeographicCoords(south));
if (std::fabs(grid_distance_y - geod_distance_y * scale_y) >= 0.001)
{
QVERIFY(geod_distance_y > 0.0);
QCOMPARE(grid_distance_y / geod_distance_y, scale_y);
}
// Apply the average scale factor to the georeferencing, and
// compare geodetic distance against ground distance, based on length in map.
auto const sw = georef.getProjectedRefPoint() - QPointF{100.0, 100.0};
auto const ne = georef.getProjectedRefPoint() + QPointF{100.0, 100.0};
auto const geod_distance = geodeticDistance(georef.toGeographicCoords(sw), georef.toGeographicCoords(ne));
// Try the georeferencing's automatic scale factor.
auto map_distance = QLineF{georef.toMapCoordF(sw), georef.toMapCoordF(ne)}.length();
auto ground_distance = map_distance * georef.getScaleDenominator() / 1000;
if (std::fabs(geod_distance - ground_distance) >= 0.001)
{
QCOMPARE(geod_distance, ground_distance);
}
georef.setCombinedScaleFactor((scale_x + scale_y) / 2);
map_distance = QLineF{georef.toMapCoordF(sw), georef.toMapCoordF(ne)}.length();
ground_distance = map_distance * georef.getScaleDenominator() / 1000;
if (std::fabs(geod_distance - ground_distance) >= 0.001)
{
QCOMPARE(geod_distance, ground_distance);
}
// And again, with significant declination
georef.setDeclination(20.0);
map_distance = QLineF{georef.toMapCoordF(sw), georef.toMapCoordF(ne)}.length();
ground_distance = map_distance * georef.getScaleDenominator() / 1000;
if (std::fabs(geod_distance - ground_distance) >= 0.001)
{
QCOMPARE(geod_distance, ground_distance);
}
// Try setting the georeferencing's auxiliary scale factor.
const double elevation_scale_factor = 1.1;
georef.setAuxiliaryScaleFactor(elevation_scale_factor);
map_distance = QLineF{georef.toMapCoordF(sw), georef.toMapCoordF(ne)}.length();
ground_distance = map_distance * georef.getScaleDenominator() / 1000;
if (std::fabs(geod_distance - elevation_scale_factor * ground_distance) >= 0.001)
{
QCOMPARE(geod_distance, elevation_scale_factor * ground_distance);
}
// See that the auxiliary scale factor is preserved when the CRS changes.
georef.setProjectedCRS(QString::fromLatin1(QTest::currentDataTag()), utm32_spec);
QCOMPARE(georef.getState(), Georeferencing::Geospatial);
QCOMPARE(georef.getAuxiliaryScaleFactor(), elevation_scale_factor);
map_distance = QLineF{georef.toMapCoordF(sw), georef.toMapCoordF(ne)}.length();
ground_distance = map_distance * georef.getScaleDenominator() / 1000;
if (std::fabs(geod_distance - elevation_scale_factor * ground_distance) >= 0.001)
{
QCOMPARE(geod_distance, elevation_scale_factor * ground_distance);
}
// The transformation between map coordinates and projected coordinates
// must be preserved when switching from projected to local and back.
georef.setProjectedCRS(QString::fromLatin1(QTest::currentDataTag()), spec);
georef.setDeclination(20.0);
auto const expected_grivation = georef.getGrivation();
georef.setAuxiliaryScaleFactor(0.95);
auto const expected_combined = georef.getCombinedScaleFactor();
auto const map_coord = georef.toMapCoordF(sw);
georef.setLocalState();
QVERIFY(georef.getProjectedCRSSpec().isEmpty());
// This call to setDeclination must not have side-effects.
georef.setDeclination(georef.getDeclination());
QCOMPARE(georef.getGrivation(), expected_grivation);
// This call to setAuxiliaryScaleFactor must not have side-effects.
georef.setAuxiliaryScaleFactor(georef.getAuxiliaryScaleFactor());
QCOMPARE(georef.getCombinedScaleFactor(), expected_combined);
if (QLineF(georef.toProjectedCoords(map_coord), sw).length() >= 0.000001)
QCOMPARE(georef.toProjectedCoords(map_coord), sw);
georef.setProjectedCRS(QString::fromLatin1(QTest::currentDataTag()), spec);
QVERIFY(!georef.getProjectedCRSSpec().isEmpty());
// This call to setDeclination must not have side-effects.
georef.setDeclination(georef.getDeclination());
QCOMPARE(georef.getGrivation(), expected_grivation); // setDeclination must be no-op
// This call to setAuxiliaryScaleFactor must not have side-effects.
georef.setAuxiliaryScaleFactor(georef.getAuxiliaryScaleFactor());
QCOMPARE(georef.getCombinedScaleFactor(), expected_combined); // setAuxiliaryScaleFactor must be no-op
if (QLineF(georef.toProjectedCoords(map_coord), sw).length() >= 0.000001)
QCOMPARE(georef.toProjectedCoords(map_coord), sw);
}
void GeoreferencingTest::testCRS_data()
{
QTest::addColumn<QString>("id");
QTest::addColumn<QString>("spec");
QTest::addColumn<bool>("is_geographic");
QTest::newRow("ETRS89")
<< QStringLiteral("ETRS89")
<< QStringLiteral("+init=epsg:4258")
<< true;
QTest::newRow("WGS 84")
<< QStringLiteral("WGS 84") // not "WGS84"
<< QStringLiteral("+init=epsg:4326")
<< true;
QTest::newRow("WGS 84 (G730)")
<< QStringLiteral("EPSG:9057")
<< QStringLiteral("+init=epsg:9057")
<< true;
QTest::newRow("ETRS89 / UTM zone 32N")
<< QStringLiteral("EPSG:25832")
<< QStringLiteral("+init=epsg:25832")
<< false;
QTest::newRow("NAD83(2011) / UTM zone 13N")
<< QStringLiteral("EPSG:6342")
<< QStringLiteral("+init=epsg:6342")
<< false;
QTest::newRow("WGS 84 / UTM zone 32N")
<< QStringLiteral("EPSG:32632")
<< QStringLiteral("+init=epsg:32632")
<< false;
QTest::newRow("WGS 84 / UTM zone 32N (Mapper)")
<< utm32_spec
<< utm32_spec
<< false;
QTest::newRow("latlong basic")
<< QStringLiteral("EPSG:4326")
<< QStringLiteral("+proj=latlong +datum=WGS84")
<< true;
QTest::newRow("longlat +no_defs")
<< QStringLiteral("urn:ogc:def:crs:OGC:1.3:CRS84")
<< QStringLiteral("+proj=longlat +datum=WGS84 +no_defs")
<< true;
}
void GeoreferencingTest::testCRS()
{
QFETCH(QString, id);
QFETCH(QString, spec);
QFETCH(bool, is_geographic);
#ifdef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
if (qstrcmp(QTest::currentDataTag(), "WGS 84 (G730)") == 0)
QSKIP("WGS 84 (G730) requires up-to-date EPSG info");
#endif
#ifndef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
// Test with IDs
{
auto t = ProjTransform::crs(id);
QVERIFY(t.isValid());
QCOMPARE(t.isGeographic(), is_geographic);
Georeferencing georef;
QVERIFY2(georef.setProjectedCRS(id, id), georef.getErrorText().toLatin1());
QCOMPARE(georef.isGeographic(), is_geographic);
}
#endif
// Test with specs.
{
auto t = ProjTransform::crs(spec);
QVERIFY(t.isValid());
QCOMPARE(t.isGeographic(), is_geographic);
Georeferencing georef;
QVERIFY2(georef.setProjectedCRS(id, spec), georef.getErrorText().toLatin1());
QCOMPARE(georef.isGeographic(), is_geographic);
}
}
void GeoreferencingTest::testCRSTemplates()
{
auto epsg_template = CRSTemplateRegistry().find(QStringLiteral("EPSG"));
QCOMPARE(epsg_template->parameters().size(), static_cast<std::size_t>(1));
QCOMPARE(epsg_template->coordinatesName(), QStringLiteral("EPSG @code@ coordinates"));
QCOMPARE(epsg_template->coordinatesName({ QStringLiteral("4326") }), QStringLiteral("EPSG 4326 coordinates"));
Georeferencing georef;
georef.setProjectedCRS(QStringLiteral("EPSG"), epsg_template->specificationTemplate().arg(QStringLiteral("5514")), { QStringLiteral("5514") });
QCOMPARE(georef.getState(), Georeferencing::Geospatial);
QCOMPARE(georef.getProjectedCoordinatesName(), QStringLiteral("EPSG 5514 coordinates"));
}
void GeoreferencingTest::testProjection_data()
{
QTest::addColumn<QString>("proj");
QTest::addColumn<double>("easting");
QTest::addColumn<double>("northing");
QTest::addColumn<double>("latitude");
QTest::addColumn<double>("longitude");
// Record name CRS spec Easting Northing Latitude (radian) Longitude (radian)
// Selected from http://www.lvermgeo.rlp.de/index.php?id=5809,
// now https://lvermgeo.rlp.de/de/service/gut-zu-wissen/arbeitet-ihr-gps-empfaenger-korrekt/
QTest::newRow("LVermGeo RLP Koblenz UTM") << utm32_spec << 398125.0 << 5579523.0 << degFromDMS(50, 21, 32.2) << degFromDMS( 7, 34, 4.0);
QTest::newRow("LVermGeo RLP Koblenz GK3") << gk3_spec << 3398159.0 << 5581315.0 << degFromDMS(50, 21, 32.2) << degFromDMS( 7, 34, 4.0);
QTest::newRow("LVermGeo RLP Pruem UTM") << utm32_spec << 316464.0 << 5565150.0 << degFromDMS(50, 12, 36.1) << degFromDMS( 6, 25, 39.6);
QTest::newRow("LVermGeo RLP Pruem GK2") << gk2_spec << 2530573.0 << 5563858.0 << degFromDMS(50, 12, 36.1) << degFromDMS( 6, 25, 39.6);
QTest::newRow("LVermGeo RLP Landau UTM") << utm32_spec << 436705.0 << 5450182.0 << degFromDMS(49, 12, 4.2) << degFromDMS( 8, 7, 52.0);
QTest::newRow("LVermGeo RLP Landau GK3") << gk3_spec << 3436755.0 << 5451923.0 << degFromDMS(49, 12, 4.2) << degFromDMS( 8, 7, 52.0);
// Selected from http://geoportal.cuzk.cz/geoprohlizec/?lng=EN, source Bodová pole, layer Bod ZPBP určený v ETRS
// http://dataz.cuzk.cz/gu.php?1=25&2=08&3=024&4=a&stamp=7oexTQLNPE8ri5SXY04ARS7vIMnJu3N2
QTest::newRow("EPSG 5514 ČÚZK Dolní Temenice") << epsg5514_spec << -563714.79 << -1076943.54 << degFromDMS(49, 58, 37.5577) << degFromDMS(16, 57, 35.5493);
// Swiss CH1903+/LV95
auto epsg2056_spec = QStringLiteral("+init=epsg:2056");
// Projection centre, according to https://www.epsg-registry.org/
QTest::newRow("EPSG 2056 Bern") << epsg2056_spec << 2600000.0 << 1200000.0 << degFromDMS(46, 57, 03.898) << degFromDMS(7, 26, 19.077);
// Issue GH-1325
QTest::newRow("EPSG 2056 GH-1325") << epsg2056_spec << 2643092.73 << 1150008.01 << 46.5 << 8.0;
// EPSG:27700, OSGB 36
auto epsg27700_spec = QStringLiteral("+init=epsg:27700");
QTest::newRow("EPSG 27700 NY 06071 11978") << epsg27700_spec << 306071.0 << 511978.0 << 54.494403 << -3.4517026;
QTest::newRow("EPSG 27700 Lake District") << epsg27700_spec << 306074.66 << 511974.0 << 54.4943673 << -3.4516448;
// latlong vs. longlat
QTest::newRow("latlong basic") << QStringLiteral("+proj=latlong +datum=WGS84") << -6.0 << 51.0 << 51.0 << -6.0;
QTest::newRow("latlong +no_defs") << QStringLiteral("+proj=latlong +datum=WGS84 +no_defs") << 16.0 << 49.0 << 49.0 << 16.0;
QTest::newRow("longlat basic") << QStringLiteral("+proj=longlat +datum=WGS84") << -6.0 << 51.0 << 51.0 << -6.0;
QTest::newRow("longlat +no_defs") << QStringLiteral("+proj=longlat +datum=WGS84 +no_defs") << 16.0 << 49.0 << 49.0 << 16.0;
}
void GeoreferencingTest::testProjection()
{
const double max_dist_error = 2.2; // meter
const double max_angl_error = 0.00005; // degrees
QFETCH(QString, proj);
Georeferencing georef;
QVERIFY2(georef.setProjectedCRS(proj, proj), proj.toLatin1());
QCOMPARE(georef.getErrorText(), QString{});
QFETCH(double, easting);
QFETCH(double, northing);
QFETCH(double, latitude);
QFETCH(double, longitude);
// geographic to projected
LatLon lat_lon(latitude, longitude);
bool ok;
QPointF proj_coord = georef.toProjectedCoords(lat_lon, &ok);
QVERIFY(ok);
if (std::fabs(proj_coord.x() - easting) > max_dist_error)
QCOMPARE(QString::number(proj_coord.x(), 'f'), QString::number(easting, 'f'));
if (std::fabs(proj_coord.y() - northing) > max_dist_error)
QCOMPARE(QString::number(proj_coord.y(), 'f'), QString::number(northing, 'f'));
// projected to geographic
proj_coord = QPointF(easting, northing);
lat_lon = georef.toGeographicCoords(proj_coord, &ok);
QVERIFY(ok);
if (std::fabs(lat_lon.latitude() - latitude) > max_angl_error)
QCOMPARE(QString::number(lat_lon.latitude(), 'f'), QString::number(latitude, 'f'));
if (std::fabs(lat_lon.longitude() - longitude) > (max_angl_error * std::cos(qDegreesToRadians(latitude))))
QCOMPARE(QString::number(lat_lon.longitude(), 'f'), QString::number(longitude, 'f'));
#ifdef MAPPER_TEST_GDAL
// Cf. OgrFileExport::setupGeoreferencing
auto* map_srs = OSRNewSpatialReference(nullptr);
OSRSetProjCS(map_srs, "Projected map SRS");
OSRSetWellKnownGeogCS(map_srs, "WGS84");
auto spec = QByteArray(georef.getProjectedCRSSpec().toLatin1());
QCOMPARE(OSRImportFromProj4(map_srs, spec), OGRERR_NONE);
auto* geo_srs = OSRNewSpatialReference(nullptr);
OSRSetWellKnownGeogCS(geo_srs, "WGS84");
#if GDAL_VERSION_MAJOR >= 3
OSRSetAxisMappingStrategy(geo_srs, OAMS_TRADITIONAL_GIS_ORDER);
#endif
// geographic to projected
auto* transformation = OCTNewCoordinateTransformation(geo_srs, map_srs);
auto* pt = OGR_G_CreateGeometry(wkbPoint);
OGR_G_SetPoint_2D(pt, 0, longitude, latitude);
QCOMPARE(OGR_G_Transform(pt, transformation), OGRERR_NONE);
if (std::fabs(OGR_G_GetX(pt, 0) - easting) > max_dist_error)
QCOMPARE(QString::number(OGR_G_GetX(pt, 0), 'f'), QString::number(easting, 'f'));
if (std::fabs(OGR_G_GetY(pt, 0) - northing) > max_dist_error)
QCOMPARE(QString::number(OGR_G_GetY(pt, 0), 'f'), QString::number(northing, 'f'));
OGR_G_DestroyGeometry(pt);
OCTDestroyCoordinateTransformation(transformation);
// projected to geographic
transformation = OCTNewCoordinateTransformation(map_srs, geo_srs);
// Cf. OgrFileExport::addPointsToLayer
pt = OGR_G_CreateGeometry(wkbPoint);
OGR_G_SetPoint_2D(pt, 0, easting, northing);
QCOMPARE(OGR_G_Transform(pt, transformation), OGRERR_NONE);
if (std::fabs(OGR_G_GetY(pt, 0) - latitude) > max_angl_error)
QCOMPARE(QString::number(OGR_G_GetY(pt, 0), 'f'), QString::number(latitude, 'f'));
if (std::fabs(OGR_G_GetX(pt, 0) - longitude) > (max_angl_error * std::cos(qDegreesToRadians(latitude))))
QCOMPARE(QString::number(OGR_G_GetX(pt, 0), 'f'), QString::number(longitude, 'f'));
OGR_G_DestroyGeometry(pt);
OCTDestroyCoordinateTransformation(transformation);
OSRDestroySpatialReference(geo_srs);
OSRDestroySpatialReference(map_srs);
#endif // MAPPER_TEST_GDAL
}
#ifndef ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
namespace {
bool finder_called;
extern "C"
const char* projFinderTestFakeCRS(PJ_CONTEXT* /*ctx*/, const char* name, void* /*user_data*/)
{
finder_called = true;
[name]() {
QCOMPARE(name, "fake_crs");
}();
return nullptr;
}
}
void GeoreferencingTest::testProjContextSetFileFinder()
{
finder_called = false;
proj_context_set_file_finder(nullptr, &projFinderTestFakeCRS, nullptr);
QVERIFY(!finder_called);
Georeferencing fake_georef;
fake_georef.setProjectedCRS(QStringLiteral("Fake CRS"), QStringLiteral("+init=fake_crs:123"));
QVERIFY(finder_called);
}
#endif
void GeoreferencingTest::testUTMZoneCalculation_data()
{
// https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system
QTest::addColumn<double>("latitude");
QTest::addColumn<double>("longitude");
QTest::addColumn<QString>("zone");
QTest::newRow("Tuebingen") << degFromDMS(48, 31, 0) << degFromDMS( 9, 3, 0) << QStringLiteral("32 N");
QTest::newRow("Anchorage") << 61.217 << -149.885 << QStringLiteral("06 N");
QTest::newRow("Sydney") << -33.857 << 151.215 << QStringLiteral("56 S");
// South Norway: Zone 32 is extended 3° further west
QTest::newRow("South Norway") << 59.3068 << 4.871 << QStringLiteral("32 N");
// Svalbard: zones 32, 34 and 36 are not used, while zones 31 (9° wide), 33 (12° wide), 35 (12° wide), and 37 (9° wide)
// are extended to cover the gaps
QTest::newRow("Svalbard1") << 72.0 << 3.0 << QStringLiteral("31 N");
QTest::newRow("Svalbard2") << 72.0 << 8.99 << QStringLiteral("31 N");
QTest::newRow("Svalbard3") << 72.0 << 9.0 << QStringLiteral("33 N");
QTest::newRow("Svalbard4") << 72.0 << 20.99 << QStringLiteral("33 N");
QTest::newRow("Svalbard5") << 72.0 << 21.0 << QStringLiteral("35 N");
QTest::newRow("Svalbard6") << 72.0 << 32.99 << QStringLiteral("35 N");
QTest::newRow("Svalbard7") << 72.0 << 33.0 << QStringLiteral("37 N");
QTest::newRow("Svalbard8") << 72.0 << 39.0 << QStringLiteral("37 N");
}
void GeoreferencingTest::testUTMZoneCalculation()
{
QFETCH(double, latitude);
QFETCH(double, longitude);
const auto latlon = LatLon{latitude, longitude};
auto calculated_zone = CRSTemplates::UTMZoneParameter::calculateUTMZone(latlon);
QVERIFY(!calculated_zone.isNull());
QFETCH(QString, zone);
QCOMPARE(calculated_zone.toString(), zone);
}
QTEST_GUILESS_MAIN(GeoreferencingTest)
|