Fix some location handling bugs

This commit is contained in:
Ian Renton
2025-10-17 09:20:13 +01:00
parent 622fd38514
commit 06a0b55e65
2 changed files with 6 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ class ParksNPeaks(HTTPSpotProvider):
for row in siota_dr:
if row["SILO_CODE"] == spot.sig_refs[0]:
spot.dx_latitude = float(row["LAT"])
spot.dx_longitude = float(row["LON"])
spot.dx_longitude = float(row["LNG"])
spot.dx_grid = row["LOCATOR"]
break