From e886361e945a9a9f9d5f6ec92ef1582317b0d15b Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Thu, 12 Feb 2026 06:43:06 +0100 Subject: [PATCH] Fix exchange N/S to E/W in Longitude definition --- specification/gedcom-2-data-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/gedcom-2-data-types.md b/specification/gedcom-2-data-types.md index 08afb03..f5c9273 100644 --- a/specification/gedcom-2-data-types.md +++ b/specification/gedcom-2-data-types.md @@ -433,7 +433,7 @@ Minutes and seconds are not used and should be converted to fractional degrees p The number of degrees is limited by definition to be between 0 (the prime meridian) and 180 (the 180th meridian). ```abnf -Longitude = ("N" / "S") upto180 [ "." 1*digit] +Longitude = ("E" / "W") upto180 [ "." 1*digit] upto180 = "180" / "1" upto7 digit / [["0"] digit] digit upto7 = "0" / "1" / "2" / "3" / "4" / "5" / "6" / "7" ```