Prevent saving gps file without coordinates
Signed-off-by: Silsha Fux <hallo@silsha.me>
This commit is contained in:
parent
23616095ba
commit
61e5872229
@ -44,9 +44,15 @@ class GPS(plugins.Plugin):
|
|||||||
self.coordinates = info["gps"]
|
self.coordinates = info["gps"]
|
||||||
gps_filename = filename.replace(".pcap", ".gps.json")
|
gps_filename = filename.replace(".pcap", ".gps.json")
|
||||||
|
|
||||||
logging.info(f"saving GPS to {gps_filename} ({self.coordinates})")
|
if self.coordinates and all([
|
||||||
with open(gps_filename, "w+t") as fp:
|
# avoid 0.000... measurements
|
||||||
json.dump(self.coordinates, fp)
|
self.coordinates["Latitude"], self.coordinates["Longitude"]
|
||||||
|
]):
|
||||||
|
logging.info(f"saving GPS to {gps_filename} ({self.coordinates})")
|
||||||
|
with open(gps_filename, "w+t") as fp:
|
||||||
|
json.dump(self.coordinates, fp)
|
||||||
|
else:
|
||||||
|
logging.info("not saving GPS. Couldn't find location.")
|
||||||
|
|
||||||
def on_ui_setup(self, ui):
|
def on_ui_setup(self, ui):
|
||||||
# add coordinates for other displays
|
# add coordinates for other displays
|
||||||
|
Loading…
x
Reference in New Issue
Block a user