project reorganization: 1. executable files in bin directory now. 2. add recursive_unpack_targz.py for recursive unpacking specified in this script archives tar.gz with MVN data. 3. add asotr_unzip_plot.sh bash file for unpacking MVN data, collect asotr data into csv files and plot asotr MVN data. 4. add brd_wheel_1Hz_parser.py for demonstrate how to work with brd telemetry data
This commit is contained in:
19
bin/prepare_flight_cyclo.py
Normal file
19
bin/prepare_flight_cyclo.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import sys
|
||||
from importlib import reload
|
||||
sys.path.append('./')
|
||||
import asotr
|
||||
reload(asotr)
|
||||
import pandas as pd
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
path = '../data/experiments/'
|
||||
|
||||
timestamp = '04.05.2025 00:42:00'
|
||||
cyclogram_file = 'cyclogram_step_ident_ch3.xls'
|
||||
asotr.insert_data_cyclo(timestamp, cyclogram_file, path)
|
||||
|
||||
timestamp = '04.05.2025 03:48:00'
|
||||
cyclogram_file = 'cyclogram_imp_ident_ch3.xls'
|
||||
asotr.insert_data_cyclo(timestamp, cyclogram_file, path)
|
||||
|
||||
|
Reference in New Issue
Block a user