ADIF Latitude/Longitude Format
Posted: 06 May 2022, 19:43
Hi
Greetings from a fellow software author. The ADIF Processor I have written http://bit.ly/adifproc accepts ADIF files as input. I have noticed that the latitude/longitude format in files that appear to have come from Log4OM are in decimal format, rather than format in the ADIF Specification:
I've added support for decimal LAT/LON values as I am trying to be as compatible as possible, but thought you would be interested to know in case you get any other reports.
Kind regards, Mark
Greetings from a fellow software author. The ADIF Processor I have written http://bit.ly/adifproc accepts ADIF files as input. I have noticed that the latitude/longitude format in files that appear to have come from Log4OM are in decimal format, rather than format in the ADIF Specification:
Code: Select all
a sequence of 11 characters representing a latitude or longitude in XDDD MM.MMM format, where
X is a directional Character from the set {E, W, N, S}
DDD is a 3-Digit degrees specifier, where 0 <= DDD <= 180 [use leading zeroes]
There is a single space character in between DDD and MM.MMM
MM.MMM is an unsigned Number minutes specifier with its decimal point in the third position, where 00.000 <= MM.MMM <= 59.999 [use leading and trailing zeroes]
Kind regards, Mark