]> git.openstreetmap.org Git - rails.git/commitdiff
Make OSM::GreatCircle clamp results to the globe
authorTom Hughes <tom@compton.nu>
Sun, 4 Feb 2018 17:42:40 +0000 (17:42 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 4 Feb 2018 17:42:40 +0000 (17:42 +0000)
lib/osm.rb

index e4835a76b57745a86ce83b1205bf05243af74894..40027991a036ea7611bda63dbba35b357772ebcb 100644 (file)
@@ -475,10 +475,10 @@ module OSM
         lonradius = PI
       end
 
-      minlat = (@lat - latradius) * 180 / PI
-      maxlat = (@lat + latradius) * 180 / PI
-      minlon = (@lon - lonradius) * 180 / PI
-      maxlon = (@lon + lonradius) * 180 / PI
+      minlat = [(@lat - latradius) * 180 / PI, -90].max
+      maxlat = [(@lat + latradius) * 180 / PI, 90].min
+      minlon = [(@lon - lonradius) * 180 / PI, -180].max
+      maxlon = [(@lon + lonradius) * 180 / PI, 180].min
 
       { :minlat => minlat, :maxlat => maxlat, :minlon => minlon, :maxlon => maxlon }
     end