small correct readme, correct plot_flight_borders.py for plot in another devices

This commit is contained in:
Danila Gamkov
2025-04-25 14:47:08 +03:00
parent 31cb99ec0c
commit 0c8b1c5eca
3 changed files with 6 additions and 6 deletions

View File

@@ -114,7 +114,7 @@ def plot_asotr_borders(path_with_data, ch, asotr_kit, begin, end, font=14, cmd=0
for i in range(len(channels)):
if channels[i] == 1:
ax1.plot(data_dict["time_temp"],
data_dict['temp'].iloc[:,[i]],
data_dict['temp'].iloc[:,i],
marker[i],
linewidth=width[i],
label=legend[i],)
@@ -123,7 +123,7 @@ def plot_asotr_borders(path_with_data, ch, asotr_kit, begin, end, font=14, cmd=0
for i in range(len(channels)):
if channels[i] == 1:
ax1.plot(data_dict["time_temp_set"],
data_dict['temp_set'].iloc[:,[i]],
data_dict['temp_set'].iloc[:,i],
marker[i],
linewidth=width_set[i],
label=legend_set[i],)
@@ -132,7 +132,7 @@ def plot_asotr_borders(path_with_data, ch, asotr_kit, begin, end, font=14, cmd=0
for i in range(len(channels)):
if channels[i] == 1:
ax2.plot(data_dict["time_pow"],
data_dict['pow'].iloc[:,[i]],
data_dict['pow'].iloc[:,i],
marker[i],
linewidth=width[i],
label=legend[i],)