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 0be48f8a21
commit b5c200d588
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')