latlon, lonlat, i admit this is silly

This commit is contained in:
Sanj 2011-08-22 02:18:57 +05:30
parent cb87f695ea
commit 715fe5ccf1

View File

@ -36,7 +36,7 @@ def import_gazetteer(f, limit):
fcode = None
ft.feature_type = fcode
ft.geometry = Point(float(row[5]), float(row[6]))
ft.geometry = Point(float(row[6]), float(row[5]))
ft.save()
print "saved " + ft.preferred_name
i += 1