Moved all yaml files with dictionary terms for each instrument to dictionaries folder

This commit is contained in:
2024-08-23 14:32:23 +02:00
parent f20e02d62f
commit 33ad9acdd4
11 changed files with 0 additions and 0 deletions

View File

@@ -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')