]> git.openstreetmap.org Git - rails.git/blob - lib/bounding_box.rb
f12683d3c4831cd99db1ecb51ebb29245989e48a
[rails.git] / lib / bounding_box.rb
1 class BoundingBox
2   attr_reader :min_lon, :min_lat, :max_lon, :max_lat
3
4   LON_LIMIT = 180.0
5   LAT_LIMIT = 90.0
6   SCALED_LON_LIMIT = LON_LIMIT * GeoRecord::SCALE
7   SCALED_LAT_LIMIT = LAT_LIMIT * GeoRecord::SCALE
8
9   def initialize(min_lon, min_lat, max_lon, max_lat)
10     @min_lon = min_lon.to_f unless min_lon.nil?
11     @min_lat = min_lat.to_f unless min_lat.nil?
12     @max_lon = max_lon.to_f unless max_lon.nil?
13     @max_lat = max_lat.to_f unless max_lat.nil?
14   end
15
16   def self.from_s(s)
17     BoundingBox.new(*s.split(/,/)) if s.count(",") == 3
18   end
19
20   def self.from_bbox_params(params)
21     if params[:bbox] && params[:bbox].count(",") == 3
22       bbox_array = params[:bbox].split(",")
23     end
24     from_bbox_array(bbox_array)
25   end
26
27   def self.from_lon_lat_params(params)
28     if params[:minlon] && params[:minlat] && params[:maxlon] && params[:maxlat]
29       bbox_array = [params[:minlon], params[:minlat], params[:maxlon], params[:maxlat]]
30     end
31     from_bbox_array(bbox_array)
32   end
33
34   def self.from_lrbt_params(params)
35     if params[:l] && params[:b] && params[:t] && params[:t]
36       bbox_array = [params[:l], params[:b], params[:r], params[:t]]
37     end
38     from_bbox_array(bbox_array)
39   end
40
41   def expand!(bbox, margin = 0)
42     update!(bbox) unless complete?
43     # only try to expand the bbox if there is a value for every coordinate
44     # which there will be from the previous line as long as array does not contain a nil
45     if bbox.complete?
46       if bbox.min_lon < min_lon
47         @min_lon = [-SCALED_LON_LIMIT,
48                     bbox.min_lon + margin * (min_lon - max_lon)].max
49       end
50       if bbox.min_lat < min_lat
51         @min_lat = [-SCALED_LAT_LIMIT,
52                     bbox.min_lat + margin * (min_lat - max_lat)].max
53       end
54       if bbox.max_lon > max_lon
55         @max_lon = [+SCALED_LON_LIMIT,
56                     bbox.max_lon + margin * (max_lon - min_lon)].min
57       end
58       if bbox.max_lat > max_lat
59         @max_lat = [+SCALED_LAT_LIMIT,
60                     bbox.max_lat + margin * (max_lat - min_lat)].min
61       end
62     end
63     self
64   end
65
66   def check_boundaries
67     # check the bbox is sane
68     if min_lon > max_lon
69       raise OSM::APIBadBoundingBox, "The minimum longitude must be less than the maximum longitude, but it wasn't"
70     end
71     if min_lat > max_lat
72       raise OSM::APIBadBoundingBox, "The minimum latitude must be less than the maximum latitude, but it wasn't"
73     end
74     if min_lon < -LON_LIMIT || min_lat < -LAT_LIMIT || max_lon > +LON_LIMIT || max_lat > +LAT_LIMIT
75       raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}," \
76                                        " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
77     end
78     self
79   end
80
81   def check_size(max_area = MAX_REQUEST_AREA)
82     # check the bbox isn't too large
83     if area > max_area
84       raise OSM::APIBadBoundingBox, "The maximum bbox size is " + max_area.to_s +
85                                     ", and your request was too large. Either request a smaller area, or use planet.osm"
86     end
87     self
88   end
89
90   ##
91   # returns area of the bbox as a rough comparative quantity
92   def area
93     if complete?
94       (max_lon - min_lon) * (max_lat - min_lat)
95     else
96       0
97     end
98   end
99
100   def complete?
101     !to_a.include?(nil)
102   end
103
104   def centre_lon
105     (min_lon + max_lon) / 2.0
106   end
107
108   def centre_lat
109     (min_lat + max_lat) / 2.0
110   end
111
112   def width
113     max_lon - min_lon
114   end
115
116   def height
117     max_lat - min_lat
118   end
119
120   def slippy_width(zoom)
121     width * 256.0 * 2.0**zoom / 360.0
122   end
123
124   def slippy_height(zoom)
125     min = min_lat * Math::PI / 180.0
126     max = max_lat * Math::PI / 180.0
127
128     Math.log((Math.tan(max) + 1.0 / Math.cos(max)) /
129              (Math.tan(min) + 1.0 / Math.cos(min))) *
130       (128.0 * 2.0**zoom / Math::PI)
131   end
132
133   # there are two forms used for bounds with and without an underscore,
134   # cater for both forms eg minlon and min_lon
135   def add_bounds_to(hash, underscore = "")
136     hash["min#{underscore}lat"] = format("%.7f", min_lat)
137     hash["min#{underscore}lon"] = format("%.7f", min_lon)
138     hash["max#{underscore}lat"] = format("%.7f", max_lat)
139     hash["max#{underscore}lon"] = format("%.7f", max_lon)
140     hash
141   end
142
143   def to_scaled
144     BoundingBox.new((min_lon * GeoRecord::SCALE),
145                     (min_lat * GeoRecord::SCALE),
146                     (max_lon * GeoRecord::SCALE),
147                     (max_lat * GeoRecord::SCALE))
148   end
149
150   def to_unscaled
151     BoundingBox.new((min_lon / GeoRecord::SCALE),
152                     (min_lat / GeoRecord::SCALE),
153                     (max_lon / GeoRecord::SCALE),
154                     (max_lat / GeoRecord::SCALE))
155   end
156
157   def to_a
158     [min_lon, min_lat, max_lon, max_lat]
159   end
160
161   def to_s
162     "#{min_lon},#{min_lat},#{max_lon},#{max_lat}"
163   end
164
165   class << self
166     private
167
168     def from_bbox_array(bbox_array)
169       unless bbox_array
170         raise OSM::APIBadUserInput, "The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat"
171       end
172       # Take an array of length 4, create a bounding box with min_lon, min_lat, max_lon and
173       # max_lat within their respective boundaries.
174       min_lon = [[bbox_array[0].to_f, -LON_LIMIT].max, +LON_LIMIT].min
175       min_lat = [[bbox_array[1].to_f, -LAT_LIMIT].max, +LAT_LIMIT].min
176       max_lon = [[bbox_array[2].to_f, +LON_LIMIT].min, -LON_LIMIT].max
177       max_lat = [[bbox_array[3].to_f, +LAT_LIMIT].min, -LAT_LIMIT].max
178       BoundingBox.new(min_lon, min_lat, max_lon, max_lat)
179     end
180   end
181
182   def update!(bbox)
183     # ensure that bbox has no nils in it. if there are any
184     # nils, just use the bounding box update to write over them.
185     @min_lon = bbox.min_lon if min_lon.nil?
186     @min_lat = bbox.min_lat if min_lat.nil?
187     @max_lon = bbox.max_lon if max_lon.nil?
188     @max_lat = bbox.max_lat if max_lat.nil?
189   end
190 end