From e84ad1b33a58e3cbfb42830b78b0e1ac5c430ea1 Mon Sep 17 00:00:00 2001 From: Miika Turkia Date: Mon, 25 Feb 2013 09:20:58 +0200 Subject: [PATCH] Fix GPS import from divinglog Ticket #63 - divinglog 5.08 import issues This patch will include the GPS coordinates from divinglog. Signed-off-by: Miika Turkia Signed-off-by: Dirk Hohndel --- parse-xml.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/parse-xml.c b/parse-xml.c index 618d058a4..19b419cf5 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1018,14 +1018,20 @@ static void try_to_fill_dive(struct dive *dive, const char *name, char *buf) return; if (MATCH(".gps", gps_location, dive)) return; + if (MATCH(".Place", gps_location, dive)) + return; if (MATCH(".latitude", gps_lat, dive)) return; if (MATCH(".sitelat", gps_lat, dive)) return; + if (MATCH(".lat", gps_lat, dive)) + return; if (MATCH(".longitude", gps_long, dive)) return; if (MATCH(".sitelon", gps_long, dive)) return; + if (MATCH(".lon", gps_long, dive)) + return; if (MATCH(".location", utf8_string, &dive->location)) return; if (MATCH("dive.name", utf8_string, &dive->location))