diff --git a/HAHARUDO.gpx b/HAHARUDO.gpx
deleted file mode 100644
index 51ee980e65..0000000000
--- a/HAHARUDO.gpx
+++ /dev/null
@@ -1 +0,0 @@
-Institute of Environmental Science and Technology (ICTA - UAB)<b>Date bookmarked:</b> 2024-09-15 00:38:53<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=9308669943948840833">http://maps.google.com/?cid=9308669943948840833</a><br>Taco Bamba Taqueria<b>Date bookmarked:</b> 2024-09-14 22:17:15<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=17935802314953478740">http://maps.google.com/?cid=17935802314953478740</a><br>Alfonso Bonilla Aragón International Airport<b>Date bookmarked:</b> 2024-09-13 19:21:28<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=654320894779138935">http://maps.google.com/?cid=654320894779138935</a><br>Caras Lindas<b>Date bookmarked:</b> 2024-09-13 18:52:34<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=3465396166573065339">http://maps.google.com/?cid=3465396166573065339</a><br>Plaza de Caicedo<b>Date bookmarked:</b> 2024-09-13 18:42:47<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=11898042663095340097">http://maps.google.com/?cid=11898042663095340097</a><br>Iglesia Ermita<b>Date bookmarked:</b> 2024-09-13 18:42:36<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=1701009278817753200">http://maps.google.com/?cid=1701009278817753200</a><br>San Antonio Chapel<b>Date bookmarked:</b> 2024-09-13 18:42:25<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=9723420234300033190">http://maps.google.com/?cid=9723420234300033190</a><br>Bulevar del Río Cali<b>Date bookmarked:</b> 2024-09-13 18:41:18<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=5477684040922625391">http://maps.google.com/?cid=5477684040922625391</a><br>Sandalio Hostal<b>Date bookmarked:</b> 2024-09-13 18:37:23<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=7142441514875560888">http://maps.google.com/?cid=7142441514875560888</a><br>South Run Recreation Center<b>Date bookmarked:</b> 2024-09-08 00:30:21<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=10164765318339237107">http://maps.google.com/?cid=10164765318339237107</a><br>Chili Wok<b>Date bookmarked:</b> 2024-09-07 21:39:07<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=5450053518942267651">http://maps.google.com/?cid=5450053518942267651</a><br>Padaek Arlington Ridge<b>Date bookmarked:</b> 2024-08-31 22:43:44<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=16805136294030403753">http://maps.google.com/?cid=16805136294030403753</a><br>Chay Restaurant<b>Date bookmarked:</b> 2024-08-24 01:53:13<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=11853455189124642782">http://maps.google.com/?cid=11853455189124642782</a><br>Les Crepes Carytown<b>Date bookmarked:</b> 2024-08-17 18:55:44<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=2190223773879991572">http://maps.google.com/?cid=2190223773879991572</a><br>KPOT Korean BBQ & Hot Pot<b>Date bookmarked:</b> 2024-08-13 22:38:54<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=18186107021313782400">http://maps.google.com/?cid=18186107021313782400</a><br>Redwood Drive-In<b>Date bookmarked:</b> 2024-08-10 03:06:30<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?cid=10962484433055443690">http://maps.google.com/?cid=10962484433055443690</a><br>0, 0<b>Date bookmarked:</b> 2024-08-10 03:03:55<br><b>Comment:</b> No location information is available for this saved place<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?q=39.171168784740516,-123.56393046677113">http://maps.google.com/?q=39.171168784740516,-123.56393046677113</a><br>0, 0<b>Date bookmarked:</b> 2024-08-10 03:03:39<br><b>Comment:</b> No location information is available for this saved place<br><b>Google Maps URL:</b> <a href="http://maps.google.com/?q=39.171040999999995,-123.56317399999998">http://maps.google.com/?q=39.171040999999995,-123.56317399999998</a><br>
\ No newline at end of file
diff --git a/tools/python/google_maps_bookmarks.py b/tools/python/google_maps_bookmarks.py
index ee9450d819..04a7755cf0 100755
--- a/tools/python/google_maps_bookmarks.py
+++ b/tools/python/google_maps_bookmarks.py
@@ -126,8 +126,26 @@ class GoogleMapsConverter:
for feature in geojson['features']:
geometry = feature['geometry']
coordinates = geometry['coordinates']
-
properties = feature['properties']
+ google_maps_url = properties.get('google_maps_url', '')
+
+ # Check for "null island" coordinates [0, 0]
+ if coordinates[0] == 0 and coordinates[1] == 0:
+ # Parse the Google Maps URL to get the coordinates
+ parsed_url = urllib.parse.urlparse(google_maps_url)
+ query_params = urllib.parse.parse_qs(parsed_url.query)
+ # q parameter contains the coordinates
+ q = query_params.get('q', [None])[0]
+ # cid parameter contains the place ID
+ cid = query_params.get('cid', [None])[0]
+ if q:
+ coordinates = q.split(',')
+ elif cid:
+ # TODO: handle google maps URL with cid parameter
+ continue
+ else:
+ continue
+
location = properties.get('location', {})
name = location.get('name') or location.get('address') or ', '.join(map(str, coordinates))
description = ""
@@ -137,8 +155,8 @@ class GoogleMapsConverter:
description += f"Date bookmarked: {self.convert_timestamp(properties['date'])}
"
if 'Comment' in properties:
description += f"Comment: {properties['Comment']}
"
- if 'google_maps_url' in properties:
- description += f"Google Maps URL: {properties['google_maps_url']}
"
+ if google_maps_url:
+ description += f"Google Maps URL: {google_maps_url}
"
self.places.append({'name': name, 'description': description, 'coordinates': ','.join(map(str, coordinates))})