module Geocoder::Calculations

def nm_in_km


Conversion factor: nm to km.
#
def nm_in_km
  Geocoder.log(:warn, "DEPRECATION WARNING: Geocoder::Calculations.nm_in_km is deprecated and will be removed in Geocoder 1.5.0. Please use 1.0 / KM_IN_NM instead.")
  1.0 / KM_IN_NM
end