Skip to content

Commit

Permalink
FIX: fix NaN in u, v
Browse files Browse the repository at this point in the history
  • Loading branch information
C-PROOF committed Jul 14, 2024
1 parent bb14fb8 commit 4b403f7
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyglider/ncprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ def extract_timeseries_profiles(inname, outdir, deploymentyaml, force=False):

dss['v'] = profile_meta['v'].get('_FillValue', np.NaN)
dss['v'].attrs = profile_meta['v']
else:
dss['u'] = np.NaN
dss['v'] = np.NaN


dss['profile_id'] = np.int32(p)
dss['profile_id'].attrs = profile_meta['profile_id']
Expand Down
89 changes: 89 additions & 0 deletions pyglider/slocum.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,5 +1092,94 @@ def parse_logfiles(files):
return out


def parse_logfiles_maybe(files):
"""
Parse time, lat, lon, and amph_total from glider logfiles.
Parameters
----------
files : list of strings or Paths
List of logfiles to parse. Should be sorted.
Returns
-------
out : xarray
xarray data set with fields time, lon, lat, ampH indexed by surfacing.
More could be added.
"""

times = [''] * 10000
gps = [''] * 10000
amph = [''] * 10000
surfacereason = ''
missionnum = [''] * 10000
abortsegment = 0
abortcause = 0

ntimes = 0
for fn in files:
found_time = False

with open(fn, 'r') as fin:
for l in fin:
if 'Curr Time:' in l:
times[ntimes] = l
ntimes += 1
found_time=True
elif found_time and 'GPS Location' in l:
gps[ntimes - 1] = l
elif found_time and "sensor:m_coulomb_amphr_total" in l:
amph[ntimes-1] = l
elif found_time and "Because:" in l:
surfacereason = l
elif found_time and "MissionNum" in l:
missionnum[ntimes-1] = l
elif found_time and "abort segment:" in l:
abortsegment = l
elif found_time and "abort cause:" in l:
abortcause = l

amph = amph[:ntimes]
gps = gps[:ntimes]
times = times[:ntimes]
missionnum = missionnum[:ntimes]

# now parse them
out = xr.Dataset(coords={'time': ('surfacing', np.zeros(ntimes, dtype='datetime64[ns]'))})
out['ampH'] = ('surfacing', np.zeros(ntimes) * np.NaN)
out['lon'] = ('surfacing', np.zeros(ntimes) * np.NaN)
out['lat'] = ('surfacing', np.zeros(ntimes) * np.NaN)
out['missionnum'] = ('surfacing', np.zeros(ntimes) * np.NaN)
out.attrs['surfacereason'] = surfacereason
# ABORT HISTORY: last abort segment: hal_1002-2024-183-0-0 (0171.0000)
out.attrs['abortsegment'] = float(abortsegment[-11:-2])
out.attrs['abortcause'] = abortcause

for i in range(ntimes):
timestring = times[i][11:-13]
out['time'][i] = np.datetime64(datetime.strptime(timestring, '%a %b %d %H:%M:%S %Y'), 'ns')
try:
if '=' in amph[i]:
st = amph[i].index('=')
en = amph[i][st:].index(' ') + st
out['ampH'][i] = float(amph[i][(st+1):en])

# GPS Location: 4912.737 N -12357.253 E measured 110.757 secs ago
sp = gps[i].split()
out['lat'][i] = utils.nmea2deg(float(sp[2]))
out['lon'][i] = utils.nmea2deg(float(sp[4]))

# MissionName:calvert.mi MissionNum:hal_1002-2024-183-4-41 (0175.0041)
if len(missionnum[i]) > 12:
out['missionnum'][i] = float(missionnum[i][-11:-2])
except:
pass

return out





__all__ = ['binary_to_rawnc', 'merge_rawnc', 'raw_to_timeseries',
'parse_gliderState', 'parse_logfiles']

0 comments on commit 4b403f7

Please sign in to comment.