Skip to content
Snippets Groups Projects
Commit 5a67e8f4 authored by Ray's avatar Ray
Browse files

Remove Radians, Decimal, and % Operator to work with FB

parent ecbcf70b
No related branches found
No related tags found
No related merge requests found
...@@ -65,24 +65,24 @@ module Geocoder ...@@ -65,24 +65,24 @@ module Geocoder
def full_bearing(latitude, longitude, lat_attr, lon_attr, options = {}) def full_bearing(latitude, longitude, lat_attr, lon_attr, options = {})
case options[:bearing] || Geocoder.config.distances case options[:bearing] || Geocoder.config.distances
when :linear when :linear
"CAST(" + "MOD(CAST(" +
"DEGREES(ATAN2( " + "(ATAN2( " +
"RADIANS(#{lon_attr} - #{longitude.to_f}), " + "((#{lon_attr} - #{longitude.to_f}) / 57.2957795), " +
"RADIANS(#{lat_attr} - #{latitude.to_f})" + "((#{lat_attr} - #{latitude.to_f}) / 57.2957795)" +
")) + 360 " + ") * 57.2957795) + 360 " +
"AS decimal) % 360" "AS decimal), 360)"
when :spherical when :spherical
"CAST(" + "MOD(CAST(" +
"DEGREES(ATAN2( " + "(ATAN2( " +
"SIN(RADIANS(#{lon_attr} - #{longitude.to_f})) * " + "SIN( (#{lon_attr} - #{longitude.to_f}) / 57.2957795 ) * " +
"COS(RADIANS(#{lat_attr})), (" + "COS( (#{lat_attr}) / 57.2957795 ), (" +
"COS(RADIANS(#{latitude.to_f})) * SIN(RADIANS(#{lat_attr}))" + "COS( (#{latitude.to_f}) / 57.2957795 ) * SIN( (#{lat_attr}) / 57.2957795)" +
") - (" + ") - (" +
"SIN(RADIANS(#{latitude.to_f})) * COS(RADIANS(#{lat_attr})) * " + "SIN( (#{latitude.to_f}) / 57.2957795) * COS((#{lat_attr}) / 57.2957795) * " +
"COS(RADIANS(#{lon_attr} - #{longitude.to_f}))" + "COS( (#{lon_attr} - #{longitude.to_f}) / 57.2957795)" +
")" + ")" +
")) + 360 " + ") * 57.2957795) + 360 " +
"AS decimal) % 360" "AS decimal), 360)"
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment