+ placename = format_name(place.attributes["name"].to_s)
+ suffix = t "geocoder.search_osm_namefinder.suffix_place", :distance => distance, :direction => direction, :placename => placename
+
+ if place.attributes["rank"].to_i <= 30
+ parent = nil
+ parentrank = 0
+ parentscore = 0
+
+ place.elements.each("nearestplaces/named") do |nearest|
+ nearestrank = nearest.attributes["rank"].to_i
+ nearestscore = nearestrank / nearest.attributes["distance"].to_f
+
+ if nearestrank > 30 and
+ ( nearestscore > parentscore or
+ ( nearestscore == parentscore and nearestrank > parentrank ) )
+ parent = nearest
+ parentrank = nearestrank
+ parentscore = nearestscore
+ end
+ end
+
+ if parent
+ parentname = format_name(parent.attributes["name"].to_s)
+
+ if place.attributes["info"].to_s == "suburb"
+ suffix = t "geocoder.search_osm_namefinder.suffix_suburb", :suffix => suffix, :parentname => parentname
+ else
+ parentdistance = format_distance(parent.attributes["approxdistance"].to_i)
+ parentdirection = format_direction(parent.attributes["direction"].to_i)
+ suffix = t "geocoder.search_osm_namefinder.suffix_parent", :suffix => suffix, :parentdistance => parentdistance, :parentdirection => parentdirection, :parentname => parentname
+ end
+ end
+ end
+ else
+ suffix = ""
+ end
+
+ @results.push({:lat => lat, :lon => lon, :zoom => zoom,
+ :prefix => prefix, :name => name, :suffix => suffix,
+ :description => description})
+ end
+
+ render :action => "results"
+ rescue Exception => ex
+ @error = "Error contacting gazetteer.openstreetmap.org: #{ex.to_s}"
+ render :action => "error"
+ end
+
+ def search_osm_nominatim
+ # get query parameters
+ query = params[:query]
+ minlon = params[:minlon]
+ minlat = params[:minlat]
+ maxlon = params[:maxlon]
+ maxlat = params[:maxlat]
+
+ # get view box
+ if minlon && minlat && maxlon && maxlat
+ viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}"
+ end
+
+ # create result array
+ @results = Array.new
+
+ # ask nominatim
+ response = fetch_xml("http://nominatim.openstreetmap.org/search?format=xml&q=#{escape_query(query)}#{viewbox}&accept-language=#{request.user_preferred_languages.join(',')}")
+
+ # parse the response
+ response.elements.each("searchresults/place") do |place|
+ lat = place.attributes["lat"].to_s
+ lon = place.attributes["lon"].to_s
+ klass = place.attributes["class"].to_s
+ type = place.attributes["type"].to_s.gsub("_", " ")
+ name = place.attributes["display_name"].to_s
+ min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
+
+ if klass == "highway" and ["trunk","primary","secondary","tertiary","unclassified","residential"].include?(type)
+ prefix = t 'geocoder.search_osm_nominatim.prefix_highway', :type => type.capitalize