web-dev-qa-db-ja.com

distanceFromLocation-2点間の距離を計算します

コアロケーションに関する簡単な質問です。2つのポイント間の距離を計算しようとしています。コードは次のとおりです。

    -(void)locationChange:(CLLocation *)newLocation:(CLLocation *)oldLocation
    {   

    // Configure the new event with information from the location.
        CLLocationCoordinate2D newCoordinate = [newLocation coordinate];
        CLLocationCoordinate2D oldCoordinate = [oldLocation coordinate];

        CLLocationDistance kilometers = [newCoordinate distanceFromLocation:oldCoordinate] / 1000; // Error ocurring here.
        CLLocationDistance meters = [newCoordinate distanceFromLocation:oldCoordinate]; // Error ocurring here.
}

最後の2行で次のエラーが表示されます。

エラー:ポインター型に変換できません

Googleで検索していますが、何も見つかりません。

48
Stephen

代わりにこれを試してください:

CLLocationDistance meters = [newLocation distanceFromLocation:oldLocation];

使用しようとしているメソッドは、 CLLocation オブジェクトのメソッドです:)

111
deanWombourne

距離は、座標間ではなく、2つのCLLocationの間で計算されます。

次のコード行を使用して、これらの座標を使用して、それぞれの座標のCLLocationsを取得する必要があります

CLLocation *newLocation = [[CLLocation alloc] initWithCoordinate: newCoordinate altitude:1 horizontalAccuracy:1 verticalAccuracy:-1 timestamp:nil];

同様に、他の座標については、次のコード行を使用して、これら2つの場所間の距離を計算できます

CLLocationDistance kilometers = [newLocation distanceFromLocation:oldLocation] / 1000;

これがお役に立てば幸いです。

更新: Swift 3.0

let distanceKiloMeters = (newLocation.distance(from: oldLocation))/1000
22

In Swift

2つの場所間の距離を計算するメソッド関数を作成してみましょう。

 func distanceBetweenTwoLocations(source:CLLocation,destination:CLLocation) -> Double{

        var distanceMeters = source.distanceFromLocation(destination)
        var distanceKM = distanceMeters / 1000
        let roundedTwoDigit = distanceKM.roundedTwoDigit
        return roundedTwoDigit

    }

2桁のみが必要な場合:

extension Double{

    var roundedTwoDigit:Double{

        return Double(round(100*self)/100)

        }
    }
11
user4790024

2つのCLLocationCoordinate2D値を使用する場合は、これを使用できます。

Xcode 7.1ではSwift 2.1です

import CoreLocation

extension CLLocationCoordinate2D {

    func distanceInMetersFrom(otherCoord : CLLocationCoordinate2D) -> CLLocationDistance {
        let firstLoc = CLLocation(latitude: self.latitude, longitude: self.longitude)
        let secondLoc = CLLocation(latitude: otherCoord.latitude, longitude: otherCoord.longitude)
        return firstLoc.distanceFromLocation(secondLoc)
    }

}
5
Max Alexander
#import <CoreLocation/CoreLocation.h>

CLLocation *locA = [[CLLocation alloc] initWithLatitude:"Value" longitude:"Value"];

CLLocation *locB = [[CLLocation alloc] initWithLatitude:"Value" longitude:"Value"];

CLLocationDistance distance = [locA distanceFromLocation:locB];
NSLog(@"distance:-%f",distance);//distance in Miter
4

ここでの問題は、オブジェクトを呼び出していることです method

- (CLLocationDistance)distanceFromLocation:(const CLLocation *)location;

クラスCLLocationの。

CLLocationCoordinate2Dは、実際には2つのdoubleで構成される構造です。

typedef struct
{
    CLLocationDegrees latitude;
    CLLocationDegrees longitude;
} CLLocationCoordinate2D;

これを行う適切な方法は、CLLocationオブジェクトを取得し、そのオブジェクトでdistanceFromLocationを呼び出すことです。このような:

CLLocation* newLocation;
CLLocation* oldLocation;
CLLocationDistance distance = [newLocation distanceFromLocation:oldLocation];

もちろん、最初にこれらの値の両方を初期化する必要があります(たとえば、CLLocationManagerから)。

4
Pawel

優れたライブラリから取得 CoreLocationユーティリティ

- (CLLocationDistance) distanceFromCoordinate:(CLLocationCoordinate2D) fromCoord;
{
    double earthRadius = 6371.01; // Earth's radius in Kilometers

    // Get the difference between our two points then convert the difference into radians
    double nDLat = (fromCoord.latitude - self.coordinate.latitude) * kDegreesToRadians;  
    double nDLon = (fromCoord.longitude - self.coordinate.longitude) * kDegreesToRadians; 

    double fromLat =  self.coordinate.latitude * kDegreesToRadians;
    double toLat =  fromCoord.latitude * kDegreesToRadians;

    double nA = pow ( sin(nDLat/2), 2 ) + cos(fromLat) * cos(toLat) * pow ( sin(nDLon/2), 2 );

    double nC = 2 * atan2( sqrt(nA), sqrt( 1 - nA ));
    double nD = earthRadius * nC;

    return nD * 1000; // Return our calculated distance in meters
}
2
zerodog