python - Visualize results/coordinates of shortest path algorithms -
i working on navigation system , want visually check results of calculations. (dijkstra, a*, etc.)
what options without getting google maps api, javascript, etc.?
for part every query gives me list of coordinates:
[[53.4704344, 9.9145282], [53.4704483, 9.9152652], [53.4704704, 9.9164389], [53.4704818, 9.9169074]]
right build geojson linestring paste geojsonlint.com starts getting annoying.
without knowing requirements, 2 things come mind are:
matplotlib
maps: http://matplotlib.org/basemap/users/examples.html- geojson on http://gist.github.com: https://github.com/blog/1576-gist-meets-geojson
i use gist first, it's git-able, zoomable, shows streets, etc. better depends on data (especially spatial scale).
Comments
Post a Comment