Fix longitude adjustment
This commit is contained in:
parent
4a7cac0c0b
commit
060d48e0cc
1 changed files with 2 additions and 2 deletions
|
@ -65,8 +65,8 @@ def parse_coord(coord: str) -> tuple[float, float]:
|
||||||
|
|
||||||
lon = int(coord[4:8])
|
lon = int(coord[4:8])
|
||||||
|
|
||||||
if lon <= 60:
|
if lon <= 6100:
|
||||||
lon += 100
|
lon += 10000
|
||||||
|
|
||||||
return (
|
return (
|
||||||
0.01 * -lon,
|
0.01 * -lon,
|
||||||
|
|
Loading…
Add table
Reference in a new issue