Skip to content
Snippets Groups Projects
Commit 7d8a11a5 authored by Kien Le's avatar Kien Le
Browse files

Flake8

parent e5394c16
No related branches found
No related tags found
1 merge request!110Fix problem with GPS plot
Pipeline #2464 passed with stage
in 2 minutes and 39 seconds
......@@ -257,9 +257,9 @@ def extract_gps_data_pegasus_centaur(data_obj: MSeed, data_type: str
# We are ignoring any point that does not have complete location data.
# It might be possible to ignore points with missing latitude or
# longitude, seeing as height is not required to plot a GPS point.
if() (current_lat is None or
current_long is None or
current_height is None):
if (current_lat is None or
current_long is None or
current_height is None):
continue
# Convert the location data to the appropriate unit. Centaur and
# Pegasus dataloggers both store latitude and longitude in microdegree,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment