Skip to content
Snippets Groups Projects
Commit 21d66318 authored by Sara Savanovic Djordjevic's avatar Sara Savanovic Djordjevic
Browse files

update: marker parsing

parent ff5dc9b3
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -14,7 +14,7 @@ def get_all_markers(self, cursor):
# Fetch all data
cursor.execute('''
SELECT m.MeasurementID, m.SensorID, m.TimeMeasured, d.Latitude, d.Longitude,
d.IceTop, d.IceBottom, d.CalculatedThickness, d.Accuracy, s.SensorType, s.Active
d.IceTop, d.IceBottom, d.CalculatedThickness, d.Accuracy, d.Corner, s.SensorType, s.Active
FROM Measurement m
INNER JOIN Sensor s ON m.SensorID = s.SensorID
INNER JOIN Data d ON m.MeasurementID = d.MeasurementID
......@@ -32,7 +32,8 @@ def get_all_markers(self, cursor):
'IceTop': row[5],
'IceBottom': row[6],
'CalculatedThickness': row[7],
'Accuracy': row[8]
'Accuracy': row[8],
'Corner': row[9]
}
# Append data with measurement ID x to measurement x object
......
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