Commit 14dcd872 authored by Thomas Gubler's avatar Thomas Gubler

map3D: reverse if statement

parent cf03403a
......@@ -552,8 +552,7 @@ Imagery::UTMtoLL(double utmNorthing, double utmEasting, const QString& utmZone,
std::istringstream iss(utmZone.toStdString());
iss >> ZoneNumber >> ZoneLetter;
if ((ZoneLetter - 'N') >= 0) {
} else {
if ((ZoneLetter - 'N') < 0) {
y -= 10000000.0;//remove 10,000,000 meter offset used for southern hemisphere
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment