mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 00:49:55 +03:00
fix geometry creation from scene
This commit is contained in:
parent
e5c79a1d1f
commit
e1095205e4
@ -153,8 +153,9 @@ class OSMDataFactory(object):
|
||||
|
||||
def parse_geometry(self, geom, scene):
|
||||
if geom.find(':') >= 0:
|
||||
out = "POINT(%s)" % self.get_scene_geometry(scene, geom)
|
||||
elif geom.find(',') < 0:
|
||||
return "ST_SetSRID(%s, 4326)" % self.get_scene_geometry(scene, geom)
|
||||
|
||||
if geom.find(',') < 0:
|
||||
out = "POINT(%s)" % self.mk_wkt_point(geom)
|
||||
elif geom.find('(') < 0:
|
||||
line = ','.join([self.mk_wkt_point(x) for x in geom.split(',')])
|
||||
|
Loading…
Reference in New Issue
Block a user