From 93f4691729487f99c87cefed3184a6de91226e0a Mon Sep 17 00:00:00 2001 From: Seb Harrington Date: Sat, 20 Apr 2024 21:38:07 +0100 Subject: [PATCH] Make sure Lat and Long are the right way around! --- netbox_device_map/helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox_device_map/helpers.py b/netbox_device_map/helpers.py index fca6175..a3869a7 100644 --- a/netbox_device_map/helpers.py +++ b/netbox_device_map/helpers.py @@ -15,8 +15,8 @@ LatLon = tuple[float, float] def get_device_location(device: Device) -> LatLon | None: """If netbox longitude and latitude fields are populated for a device then use them.""" - if device.longitude and device.latitude: - return (device.longitude, device.latitude) + if device.latitude and device.longitude: + return (device.latitude, device.longitude) """... Otherwise extract device geolocation from special custom field""" if location_cf := device.custom_field_data.get(LOCATION_CF_NAME): return tuple(map(float, location_cf.replace(' ', '').split(',', maxsplit=1)))