Hi, I've imported openstreet data successfully, and now I'm importing the tiger2013 edges files into nominatim, all seems to go well when running the script but querying the local nominatim gives no results while the public server does. EDIT: tail of /var/log/prosgres im getting close - its looks like an issue with function get_partition UTC ERROR: function get_partition(geometry, unknown) does not exist at character 8 UTC HINT: No function matches the given name and argument types. You might need to add explicit type casts UTC QUERY: SELECT get_partition(place_centroid, 'us') how do i fix this? asked 25 Jun '14, 13:59 Rob |
It looks like an incompatibility was introduced when some of the functions where updated. I've committed something that should fix the problem although I've not completely tested it yet. answered 26 Jun '14, 17:13 twain Thanks for the response, I've pulled the latest version and now the error is slightly different: UTC ERROR: function tigger_create_interpolation(geometry, unknown, unknown, unknown, unknown, unknown, unknown) does not exist at character 8 UTC HINT: No function matches the given name and argument types. You might need to add explicit type casts. EDIT: when i ran the tigger_create_interpolation function manually i got errors about postgis .so files i found a fix > http://gis.stackexchange.com/questions/97871/postgis-2-1-error-after-update its rolling along importing now! :)
(26 Jun '14, 17:32)
Rob
|