From c43a68c3b0afb201b3b6460352c07ed58e4ba127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Thu, 19 Nov 2020 21:46:25 +0100 Subject: [PATCH] Inform about the whole parameter combination that failed to load --- src/map/geotiff.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/geotiff.cpp b/src/map/geotiff.cpp index d4dacaaf..0ee12c10 100644 --- a/src/map/geotiff.cpp +++ b/src/map/geotiff.cpp @@ -310,8 +310,8 @@ const GCS *GeoTIFF::gcs(QMap &kv) ? kv.value(GeogGeodeticDatumGeoKey).SHORT : 6326; if (!(gcs = GCS::gcs(gd, pm, au))) - _errorString = QString("%1+%2: unknown geodetic datum + prime" - " meridian combination").arg(gd).arg(pm); + _errorString = QString("%1+%2+%3: unknown geodetic datum + prime" + " meridian + units combination").arg(gd).arg(pm).arg(au); } else _errorString = "Can not determine GCS";