Skip to content

Commit

Permalink
Fixed a really stupid error :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
joergschultzelutter authored Jan 12, 2022
1 parent a18502e commit 2231edd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mowas.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,16 +482,16 @@ def process_mowas_data(
)

# Remember the set of coordinates which caused that match
coordinates = {
mowas_coordinates = {
"latitude": latitude,
"longitude": longitude,
"address": address,
"maidenhead": maidenhead,
"utm": utm,
"aprs_coordinates": aprs,
}
if coordinates not in coords_matching_latlon:
coords_matching_latlon.append(coordinates)
if mowas_coordinates not in coords_matching_latlon:
coords_matching_latlon.append(mowas_coordinates)

# We went through all areas - now let's see of we found something
if area_matches_with_user_latlon:
Expand Down

0 comments on commit 2231edd

Please sign in to comment.