From 64420822d95ec8fa40c83718dc5d75fcbe0c0137 Mon Sep 17 00:00:00 2001 From: Jordan Wilking Date: Fri, 26 Feb 2021 10:59:17 -0700 Subject: [PATCH] Add the northing offset back in - should have been removed downstream --- src/usng.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/usng.ts b/src/usng.ts index 4792461..b87ed03 100755 --- a/src/usng.ts +++ b/src/usng.ts @@ -487,6 +487,7 @@ extend(Converter.prototype, { LLtoUTMwithNS: function(lat, lon, utmcoords, zone) { this.LLtoUTM(lat, lon, utmcoords, zone); if (utmcoords[1] < 0) { + utmcoords[1] += this.NORTHING_OFFSET; utmcoords[3] = 'S'; } else { utmcoords[3] = 'N';