Commit 904c8382 authored by Michael Adair's avatar Michael Adair
Browse files

re #85: use correct check for southern hemisphere

parent bc4bc593
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -391,7 +391,7 @@ if (window.Proj4js && !Proj4js.util) { Proj4js.util = {}; }
        // hemisphere, this is the only time we use the letter So even
        // if the Zone letter isn't exactly correct it should indicate
        // the hemisphere correctly
        if (zoneLetter == 'S') {
        if (zoneLetter < 'N') {
            y -= 10000000.0;// remove 10,000,000 meter offset used
            // for southern hemisphere
        }