1 class GeocoderController < ApplicationController
4 require "rexml/document"
6 before_action :authorize_web
7 before_action :set_locale
8 before_action :require_oauth, :only => [:search]
9 authorize_resource :class => false
12 @params = normalize_params
15 if @params[:lat] && @params[:lon]
16 @sources.push(:name => "latlon", :url => root_path)
17 @sources.push(:name => "osm_nominatim_reverse", :url => nominatim_reverse_url(:format => "html"))
19 @sources.push(:name => "osm_nominatim", :url => nominatim_url(:format => "html"))
25 render :layout => map_layout
30 lat = params[:lat].to_f
31 lon = params[:lon].to_f
33 if params[:latlon_digits]
34 # We've got two nondescript numbers for a query, which can mean both "lat, lon" or "lon, lat".
37 if lat >= -90 && lat <= 90 && lon >= -180 && lon <= 180
38 @results.push(:lat => params[:lat], :lon => params[:lon],
39 :zoom => params[:zoom],
40 :name => "#{params[:lat]}, #{params[:lon]}")
43 if lon >= -90 && lon <= 90 && lat >= -180 && lat <= 180
44 @results.push(:lat => params[:lon], :lon => params[:lat],
45 :zoom => params[:zoom],
46 :name => "#{params[:lon]}, #{params[:lat]}")
50 @error = "Latitude or longitude are out of range"
51 render :action => "error"
53 render :action => "results"
56 # Coordinates in a query have come with markers for latitude and longitude.
57 if lat < -90 || lat > 90
58 @error = "Latitude #{lat} out of range"
59 render :action => "error"
60 elsif lon < -180 || lon > 180
61 @error = "Longitude #{lon} out of range"
62 render :action => "error"
64 @results = [{ :lat => params[:lat], :lon => params[:lon],
65 :zoom => params[:zoom],
66 :name => "#{params[:lat]}, #{params[:lon]}" }]
68 render :action => "results"
73 def search_osm_nominatim
75 response = fetch_xml(nominatim_url(:format => "xml"))
77 # extract the results from the response
78 results = response.elements["searchresults"]
83 # create parameter hash for "more results" link
85 .permit(:query, :minlon, :minlat, :maxlon, :maxlat, :exclude)
86 .merge(:exclude => results.attributes["exclude_place_ids"])
89 results.elements.each("place") do |place|
90 lat = place.attributes["lat"]
91 lon = place.attributes["lon"]
92 klass = place.attributes["class"]
93 type = place.attributes["type"]
94 name = place.attributes["display_name"]
95 min_lat, max_lat, min_lon, max_lon = place.attributes["boundingbox"].split(",")
96 prefix_name = if type.empty?
99 t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.tr("_", " ").capitalize
101 if klass == "boundary" && type == "administrative"
102 rank = (place.attributes["address_rank"].to_i + 1) / 2
103 prefix_name = t "geocoder.search_osm_nominatim.admin_levels.level#{rank}", :default => prefix_name
104 place.elements["extratags"].elements.each("tag") do |extratag|
105 prefix_name = t "geocoder.search_osm_nominatim.prefix.place.#{extratag.attributes['value']}", :default => prefix_name if extratag.attributes["key"] == "linked_place" || extratag.attributes["key"] == "place"
108 prefix = t ".prefix_format", :name => prefix_name
109 object_type = place.attributes["osm_type"]
110 object_id = place.attributes["osm_id"]
112 @results.push(:lat => lat, :lon => lon,
113 :min_lat => min_lat, :max_lat => max_lat,
114 :min_lon => min_lon, :max_lon => max_lon,
115 :prefix => prefix, :name => name,
116 :type => object_type, :id => object_id)
119 render :action => "results"
120 rescue StandardError => e
121 host = URI(Settings.nominatim_url).host
122 @error = "Error contacting #{host}: #{e}"
123 render :action => "error"
126 def search_osm_nominatim_reverse
127 # get query parameters
130 # create result array
134 response = fetch_xml(nominatim_reverse_url(:format => "xml"))
137 response.elements.each("reversegeocode/result") do |result|
138 lat = result.attributes["lat"]
139 lon = result.attributes["lon"]
140 object_type = result.attributes["osm_type"]
141 object_id = result.attributes["osm_id"]
142 description = result.text
144 @results.push(:lat => lat, :lon => lon,
146 :name => description,
147 :type => object_type, :id => object_id)
150 render :action => "results"
151 rescue StandardError => e
152 host = URI(Settings.nominatim_url).host
153 @error = "Error contacting #{host}: #{e}"
154 render :action => "error"
159 def nominatim_url(format: nil)
160 # get query parameters
161 query = params[:query]
162 minlon = params[:minlon]
163 minlat = params[:minlat]
164 maxlon = params[:maxlon]
165 maxlat = params[:maxlat]
168 viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}" if minlon && minlat && maxlon && maxlat
170 # get objects to excude
171 exclude = "&exclude_place_ids=#{params[:exclude]}" if params[:exclude]
174 "#{Settings.nominatim_url}search?format=#{format}&extratags=1&q=#{escape_query(query)}#{viewbox}#{exclude}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
177 def nominatim_reverse_url(format: nil)
178 # get query parameters
184 "#{Settings.nominatim_url}reverse?format=#{format}&lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
188 response = OSM.http_client.get(URI.parse(url))
193 raise response.status.to_s
198 REXML::Document.new(fetch_text(url))
201 def escape_query(query)
206 if query = params[:query]
209 if latlon = query.match(/^(?<ns>[NS])\s*#{dms_regexp('ns')}\W*(?<ew>[EW])\s*#{dms_regexp('ew')}$/) ||
210 query.match(/^#{dms_regexp('ns')}\s*(?<ns>[NS])\W*#{dms_regexp('ew')}\s*(?<ew>[EW])$/)
211 params.merge!(to_decdeg(latlon.named_captures.compact)).delete(:query)
213 elsif latlon = query.match(%r{^(?<lat>[+-]?\d+(?:\.\d+)?)(?:\s+|\s*[,/]\s*)(?<lon>[+-]?\d+(?:\.\d+)?)$})
214 params.merge!(:lat => latlon["lat"], :lon => latlon["lon"]).delete(:query)
216 params[:latlon_digits] = true
220 params.permit(:query, :lat, :lon, :latlon_digits, :zoom, :minlat, :minlon, :maxlat, :maxlon)
223 def dms_regexp(name_prefix)
225 (?: (?<#{name_prefix}d>\d{1,3}(?:\.\d+)?)°? ) |
226 (?: (?<#{name_prefix}d>\d{1,3})°?\s*(?<#{name_prefix}m>\d{1,2}(?:\.\d+)?)['′]? ) |
227 (?: (?<#{name_prefix}d>\d{1,3})°?\s*(?<#{name_prefix}m>\d{1,2})['′]?\s*(?<#{name_prefix}s>\d{1,2}(?:\.\d+)?)["″]? )
231 def to_decdeg(captures)
232 ns = captures.fetch("ns").casecmp?("s") ? -1 : 1
233 nsd = BigDecimal(captures.fetch("nsd", "0"))
234 nsm = BigDecimal(captures.fetch("nsm", "0"))
235 nss = BigDecimal(captures.fetch("nss", "0"))
237 ew = captures.fetch("ew").casecmp?("w") ? -1 : 1
238 ewd = BigDecimal(captures.fetch("ewd", "0"))
239 ewm = BigDecimal(captures.fetch("ewm", "0"))
240 ews = BigDecimal(captures.fetch("ews", "0"))
242 lat = ns * (nsd + (nsm / 60) + (nss / 3600))
243 lon = ew * (ewd + (ewm / 60) + (ews / 3600))
245 { :lat => lat.round(6).to_s("F"), :lon => lon.round(6).to_s("F") }