def latitude=(raw)
      raw.first.match /(\d{2})([\d.]+)([NS])/
      @latitude = (($1.to_f + ("#{$2}#{raw.last}".to_f / 60)) * ($3 == 'N' ? 1 : -1)).round(6)