diff --git a/lookup.py b/lookup.py index 8729815..6c22fd8 100755 --- a/lookup.py +++ b/lookup.py @@ -26,7 +26,7 @@ with open( fn, 'r' ) as fp: if location is not None: # its a class # todo: ceil coords to hide true location in format string # ~ strCoordPlace = '{:s},{:.6f},{:.6f}'.format( arrAddress[3], location.latitude, location.longitude ) - geojson = '{{"type":"Feature","geometry":{{"type":"Point","coordinates":[{:.'+str(precision)+'f},{:.'+str(precision)+'f}]}},"properties":{{"name":"{:s}","marker":{:s}}}}}'; + geojson = '{{"type":"Feature","geometry":{{"type":"Point","coordinates":[{:.'+str(precision)+'f},{:.'+str(precision)+'f}]}},"properties":{{"name":"{:s}","marker":"{:s}"}}}}'; strCoordPlace = geojson.format( location.latitude, location.longitude, arrAddress[3], fn.split("-")[0] ) # ~ {"type": "Feature","geometry": {"type": "Point","coordinates":[125.6, 10.1]},"properties":{"name":"Dinagat Islands"}} print ( strCoordPlace )