From 0b7184185fd2c6cd06b81043b98b9e65f5703973 Mon Sep 17 00:00:00 2001 From: fordprefect Date: Thu, 26 Mar 2020 19:16:36 +0100 Subject: [PATCH] TODO added --- osmsearch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osmsearch.py b/osmsearch.py index bb05fa8..23d3d46 100644 --- a/osmsearch.py +++ b/osmsearch.py @@ -78,6 +78,7 @@ class OSMSearch(): for point in reply: self.ignore_ids.append(point["place_id"]) + # TODO use better name than "display_name", maybe add more info to Waypoint self.gpxfile.waypoints.append(gpxpy.gpx.GPXWaypoint(latitude=point["lat"], longitude=point["lon"], name=point["display_name"])) def save_to_disk(self):