X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3fb931f9a86955faa39bec1fa4f2a731cbc74780..34e3e51456774127d43408b7ab65c24f41373f62:/lib/geo_record.rb diff --git a/lib/geo_record.rb b/lib/geo_record.rb index 0c261dc69..7c65e3af2 100644 --- a/lib/geo_record.rb +++ b/lib/geo_record.rb @@ -1,11 +1,11 @@ module GeoRecord - # This scaling factor is used to convert between the float lat/lon that is + # This scaling factor is used to convert between the float lat/lon that is # returned by the API, and the integer lat/lon equivalent that is stored in # the database. SCALE = 10000000 - + def self.included(base) - base.scope :bbox, lambda { |bbox| base.where(OSM.sql_for_area(bbox)) } + base.scope :bbox, ->(bbox) { base.where(OSM.sql_for_area(bbox)) } base.before_save :update_tile end @@ -40,7 +40,7 @@ module GeoRecord end private - + def lat2y(a) 180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2)) end