1
Fork 0

Reorganise .dat files to lines

This commit is contained in:
Edgar P. Burkhart 2022-03-15 11:17:17 +01:00
parent 8fb185dc06
commit 6777dfdf9d
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 2 additions and 5 deletions

View File

@ -13,11 +13,8 @@ class ReadSwash:
@classmethod
def read_nohead(cls, path):
with tempfile.TemporaryFile() as tmpfile:
with open(path) as file:
subprocess.run(("tr", "-d", "\n"), stdin=file, stdout=tmpfile)
tmpfile.seek(0)
return np.loadtxt(tmpfile)
subprocess.run(("sed", "-i", "s/ /\n/g", path))
return np.loadtxt(path)
def read_time(self, path):
self._t = np.unique(self.read_nohead(path))