class Geocoder::Result::PcMiler

def coordinates

def coordinates
  coords = data["Coords"] || {}
  [coords["Lat"].to_f, coords["Lon"].to_f]
end