aboutsummaryrefslogtreecommitdiffstats
path: root/libs/android-transcoder/src/main/java/net/ypresto/androidtranscoder/utils/ISO6709LocationParser.java
blob: 273007d3c1423741e57536ef2ddc8ed5704ca06f (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
package net.ypresto.androidtranscoder.utils;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class ISO6709LocationParser {
    private final Pattern pattern;

    public ISO6709LocationParser() {
        this.pattern = Pattern.compile("([+\\-][0-9.]+)([+\\-][0-9.]+)");
    }

    /**
     * This method parses the given string representing a geographic point location by coordinates in ISO 6709 format
     * and returns the latitude and the longitude in float. If <code>location</code> is not in ISO 6709 format,
     * this method returns <code>null</code>
     *
     * @param location a String representing a geographic point location by coordinates in ISO 6709 format
     * @return <code>null</code> if the given string is not as expected, an array of floats with size 2,
     * where the first element represents latitude and the second represents longitude, otherwise.
     */
    public float[] parse(String location) {
        if (location == null) return null;
        Matcher m = pattern.matcher(location);
        if (m.find() && m.groupCount() == 2) {
            String latstr = m.group(1);
            String lonstr = m.group(2);
            try {
                float lat = Float.parseFloat(latstr);
                float lon = Float.parseFloat(lonstr);
                return new float[]{lat, lon};
            } catch (NumberFormatException ignored) {
            }
        }
        return null;
    }
}