From 64e0c0794b80634697855beaecbf959a8d02363a Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 11 Nov 2009 14:37:31 +0000 Subject: [PATCH 1/1] Tweak nominatim results a bit. --- app/controllers/geocoder_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/geocoder_controller.rb b/app/controllers/geocoder_controller.rb index df051f09d..16d427cfa 100644 --- a/app/controllers/geocoder_controller.rb +++ b/app/controllers/geocoder_controller.rb @@ -240,10 +240,10 @@ class GeocoderController < ApplicationController lon = place.attributes["lon"].to_s klass = place.attributes["class"].to_s type = place.attributes["type"].to_s - name = place.attributes["display_name"].to_s + name = place.attributes["display_name"].to_s.gsub("_", " ") min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",") - if klass == "highway" + if klass == "highway" and ["trunk","primary","secondary","tertiary","unclassified","residential"].include?(type) prefix = t 'geocoder.search_osm_nominatim.prefix_highway', :type => type.capitalize else prefix = t 'geocoder.search_osm_nominatim.prefix_other', :type => type.capitalize -- 2.45.1