Conditions | 5 |
Total Lines | 15 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 5.009 |
Changes | 0 |
1 | """utils.parse. |
||
7 | 1 | def gps_parse(tags: dict) -> dict: |
|
8 | """Returns GPS degrees.""" |
||
9 | 1 | latitude = tags["GPS GPSLatitude"] |
|
10 | 1 | latitude_ref = tags["GPS GPSLatitudeRef"] |
|
11 | 1 | longitude = tags["GPS GPSLongitude"] |
|
12 | 1 | longitude_ref = tags["GPS GPSLongitudeRef"] |
|
13 | 1 | if latitude: |
|
14 | 1 | lat_value = _convert_to_degrees(latitude) |
|
15 | 1 | if latitude_ref.values != "N": |
|
16 | lat_value = -lat_value |
||
17 | 1 | if longitude: |
|
18 | 1 | lon_value = _convert_to_degrees(longitude) |
|
19 | 1 | if longitude_ref.values != "E": |
|
20 | 1 | lon_value = -lon_value |
|
21 | 1 | return {"latitude": lat_value, "longitude": lon_value} |
|
22 | |||
35 |