Skip to content
Snippets Groups Projects
Commit d0978965 authored by Jacques Grelet's avatar Jacques Grelet
Browse files

remove CR

parent f4ce2551
No related branches found
No related tags found
No related merge requests found
......@@ -58,13 +58,14 @@ def writeHeader(hdrFile, cfg, device, fe, r):
# get max value for each profile
col = f"MAX({fe.keys[0]})"
query = fe.db.query(f"SELECT {col} FROM data WHERE station_id = {int(fe['PROFILE'][i])}")
query = fe.db.query(
f"SELECT {col} FROM data WHERE station_id = {int(fe['PROFILE'][i])}")
for idx, item in enumerate(query):
dt = item[col]
if dt == None:
pass
else:
print("%6.1f " % (item[col]))
print("%6.1f " % (item[col]), end='')
f.write("%6.1f " % (item[col]))
print(end = '\n')
f.write('\n')
......
......@@ -6,10 +6,10 @@ Sequence # : 2
Latitude : 15 2.55029N
Longitude : 24 14.75293W
Serial # : 00000000
Tsurf_(dd.d)::
Tsurf_(dd.d)::
fond (mmmmm)::
Tair_sec(dd.d)::
Tair_hum(dd.d)::
Tair_sec(dd.d)::
Tair_hum(dd.d)::
TNMG::
vent_(ddd/mm)::
houle_(ddd/ss)::
......@@ -37,7 +37,7 @@ Display Units : Metric
//
// Sound velocity derived with assumed salinity: 34.10 ppt
//
Depth (m) - Temperature (C) - Sound Velocity (m/s)
Depth (m) - Temperature (C) - Sound Velocity (m/s)
0.0 21.96 1525.76
0.7 21.94 1525.73
1.3 21.93 1525.69
......@@ -1451,4 +1451,3 @@ Depth (m) - Temperature (
898.7 6.20 1489.19
899.3 6.20 1489.18
899.9 6.18 1489.13
900.5 6.17 1489.11
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