Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding the compass orientation of an iPhone in swift

I'm trying to make an app which is similar to a compass, but with notable differences, however, they are not important. What I need to know is: how can I get the iPhone to give me the compass orientation (i.e. 0 degrees for north) regardless of the phone's orientation (i.e. It will give the same reading if it is lying flat on a table or portrait in someone's hand if it is pointing the same way)

TL;DR How can I get an iPhone's rotation around the y axis which updates every second or so.

like image 727
Matt Spoon Avatar asked Jun 08 '15 08:06

Matt Spoon


3 Answers

import CoreLocation

class ViewController: UIViewController ,CLLocationManagerDelegate {

    var lm:CLLocationManager!

    override func viewDidLoad() {
        super.viewDidLoad()

        lm = CLLocationManager()
        lm.delegate = self

        lm.startUpdatingHeading()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    func locationManager(manager: CLLocationManager!, didUpdateHeading newHeading: CLHeading!) {
        println(newHeading.magneticHeading)
    }
}

You can get more information from https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLHeading_Class/

like image 151
Reming Hsu Avatar answered Oct 18 '22 06:10

Reming Hsu


Swift 3:

import UIKit
import CoreLocation

class ViewController: UIViewController, CLLocationManagerDelegate {

    let locationManager = CLLocationManager()

    override func viewDidLoad() {
        super.viewDidLoad()

       // Azimuth
        if (CLLocationManager.headingAvailable()) {
            locationManager.headingFilter = 1
            locationManager.startUpdatingHeading()
            locationManager.delegate = self
        }
    }

    func locationManager(_ manager: CLLocationManager, didUpdateHeading heading: CLHeading) {
        print (heading.magneticHeading)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}
like image 23
Sébastien REMY Avatar answered Oct 18 '22 06:10

Sébastien REMY


Swift 3.0

    import UIKit
    import CoreLocation

    class ViewController: UIViewController, CLLocationManagerDelegate {

    @IBOutlet weak var compass: UIImageView!
    @IBOutlet weak var angleLabel: UILabel!
    @IBOutlet weak var geographicalDirectionLabel: UILabel!

    var locationManager = CLLocationManager()

    override func viewDidLoad() {

        super.viewDidLoad()


        locationManager.delegate = self

        // Start location services to get the true heading.
        locationManager.distanceFilter = 1000
        locationManager.desiredAccuracy = kCLLocationAccuracyKilometer
        locationManager.startUpdatingLocation()

        //Start heading updating.
        if CLLocationManager.headingAvailable() {
            locationManager.headingFilter = 5
            locationManager.startUpdatingHeading()
        }




    }

    func locationManager(_ manager: CLLocationManager, didUpdateHeading newHeading: CLHeading) {

        if newHeading.headingAccuracy < 0 {
            return
        }

        // Get the heading(direction)
        let heading: CLLocationDirection = ((newHeading.trueHeading > 0) ?
            newHeading.trueHeading : newHeading.magneticHeading);
        UIView.animate(withDuration: 0.5) {
            let angle = CGFloat(heading).toRadians // convert from degrees to radians
            self.compass.transform = CGAffineTransform(rotationAngle: angle) // rotate the picture
        }
        print(heading)
        angleLabel.text = String(format: "%0.2f", heading)

       var strDirection = String()
        if(heading > 23 && heading <= 67){
            strDirection = "North East";
        } else if(heading > 68 && heading <= 112){
            strDirection = "East";
        } else if(heading > 113 && heading <= 167){
            strDirection = "South East";
        } else if(heading > 168 && heading <= 202){
            strDirection = "South";
        } else if(heading > 203 && heading <= 247){
            strDirection = "South West";
        } else if(heading > 248 && heading <= 293){
            strDirection = "West";
        } else if(heading > 294 && heading <= 337){
            strDirection = "North West";
        } else if(heading >= 338 || heading <= 22){
            strDirection = "North";
        }

        geographicalDirectionLabel.text = strDirection
    }
  }
like image 5
Yogendra Singh Avatar answered Oct 18 '22 05:10

Yogendra Singh