summaryrefslogtreecommitdiff
path: root/platform/osx/app/LocationCoordinate2DTransformer.m
blob: d9c35b2a1f81d3021923eeccca3e4e83b0099cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#import "LocationCoordinate2DTransformer.h"

#import "NSValue+Additions.h"

NSString *StringFromDegrees(CLLocationDegrees degrees, char positiveDirection, char negativeDirection) {
    double minutes = (degrees - floor(degrees)) * 60;
    double seconds = (minutes - floor(minutes)) * 60;
    
    NSMutableString *string = [NSMutableString stringWithFormat:@"%.0f°", fabs(degrees)];
    if (floor(minutes) || floor(seconds)) {
        [string appendFormat:@"%.0f′", minutes];
    }
    if (floor(seconds)) {
        [string appendFormat:@"%.0f″", seconds];
    }
    if (degrees) {
        [string appendFormat:@"%c", degrees > 0 ? positiveDirection : negativeDirection];
    }
    return string;
}

@implementation LocationCoordinate2DTransformer

+ (Class)transformedValueClass {
    return [NSString class];
}

+ (BOOL)allowsReverseTransformation {
    return NO;
}

- (id)transformedValue:(id)value {
    if (![value isKindOfClass:[NSValue class]]) {
        return nil;
    }
    CLLocationCoordinate2D coordinate = [value CLLocationCoordinate2DValue];
    return [NSString stringWithFormat:@"%@, %@",
            StringFromDegrees(coordinate.latitude, 'N', 'S'),
            StringFromDegrees(coordinate.longitude, 'E', 'W')];
}

@end