From 0be48f8a2157d0caa40223bd24302ce0896be7f6 Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Fri, 23 Aug 2024 14:23:32 +0200 Subject: [PATCH] Added ACSM_TOFWARE metadata descriptions --- instruments/ACSM_TOFWARE.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 instruments/ACSM_TOFWARE.yaml diff --git a/instruments/ACSM_TOFWARE.yaml b/instruments/ACSM_TOFWARE.yaml new file mode 100644 index 0000000..561413b --- /dev/null +++ b/instruments/ACSM_TOFWARE.yaml @@ -0,0 +1,10 @@ +table_header: + 't_start_Buf': + t_start_Buf: + desc: Date and time of the measurement + unit: YYYY-MM-DD HH:MM:SS + rename_as: date_time + + + df1['t_start_Buf'] = pd.to_datetime(df1['t_start_Buf'].apply(lambda a: a.decode()), format='%d.%m.%Y %H:%M:%S.%f', errors='coerce') + df2['t_base'] = pd.to_datetime(df2['t_base'].apply(lambda a: a.decode()), format='%d.%m.%Y %H:%M:%S', errors='coerce') \ No newline at end of file