Initial commit
This commit is contained in:
6200
Brewing_Level_Prediction_Muhammad_Teguh_Prananto.ipynb
Normal file
6200
Brewing_Level_Prediction_Muhammad_Teguh_Prananto.ipynb
Normal file
File diff suppressed because one or more lines are too long
21
Button.py
Normal file
21
Button.py
Normal file
@ -0,0 +1,21 @@
|
||||
import RPi.GPIO as GPIO
|
||||
import time
|
||||
|
||||
# Konfigurasi GPIO
|
||||
BUTTON_PIN = 22 # Pin GPIO yang digunakan
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
GPIO.setup(BUTTON_PIN, GPIO.IN, pull_up_down=GPIO.PUD_DOWN) # Pull-down resistor
|
||||
|
||||
print("Tekan tombol untuk menguji...")
|
||||
|
||||
try:
|
||||
while True:
|
||||
if GPIO.input(BUTTON_PIN) == GPIO.HIGH:
|
||||
print("Tombol ditekan!")
|
||||
else:
|
||||
print("Tombol tidak ditekan.")
|
||||
time.sleep(0.1) # Delay untuk menghindari pembacaan terlalu cepat
|
||||
except KeyboardInterrupt:
|
||||
print("Program dihentikan.")
|
||||
finally:
|
||||
GPIO.cleanup()
|
31
Concat.py
Normal file
31
Concat.py
Normal file
@ -0,0 +1,31 @@
|
||||
import os
|
||||
import pandas as pd
|
||||
|
||||
# Path folder yang berisi data txt
|
||||
label = "Bitter"
|
||||
path = f"MyData/{label}"
|
||||
|
||||
# Simpan Data
|
||||
myData = []
|
||||
for dir, folder, files in os.walk(path):
|
||||
# Menggabungkan setiap data dalam folder tertentu
|
||||
for file in files:
|
||||
df_temp = pd.read_csv(f"{dir}/{file}", delimiter=';')
|
||||
data_values = list(df_temp.columns)
|
||||
myData.append(data_values)
|
||||
|
||||
# 18 Kolom
|
||||
columns = ['410nm', '435nm', '460nm','485nm',
|
||||
'510nm', '535nm', '560nm', '585nm',
|
||||
'610nm', '645nm', '680nm', '705nm',
|
||||
'730nm', '760nm', '810nm', '860nm',
|
||||
'900nm', '940nm']
|
||||
|
||||
# Simpan ke dalam csv
|
||||
df = pd.DataFrame(myData, columns=columns)
|
||||
df.head()
|
||||
df.to_csv(f"Final/{label}.csv", index=False)
|
||||
|
||||
|
||||
|
||||
|
BIN
Concat.zip
Normal file
BIN
Concat.zip
Normal file
Binary file not shown.
BIN
Model/coffee_grid.h5
Normal file
BIN
Model/coffee_grid.h5
Normal file
Binary file not shown.
BIN
Model/coffee_grid.tflite
Normal file
BIN
Model/coffee_grid.tflite
Normal file
Binary file not shown.
BIN
Model/coffee_random.h5
Normal file
BIN
Model/coffee_random.h5
Normal file
Binary file not shown.
BIN
Model/coffee_random.tflite
Normal file
BIN
Model/coffee_random.tflite
Normal file
Binary file not shown.
BIN
Model/coffee_random_nodropout.h5
Normal file
BIN
Model/coffee_random_nodropout.h5
Normal file
Binary file not shown.
BIN
Model/coffee_random_nodropout.tflite
Normal file
BIN
Model/coffee_random_nodropout.tflite
Normal file
Binary file not shown.
1
MyData/Bitter/2025-01-31-14%3A05%3A14.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A14.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A20.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A20.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;2.2627949714660645;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A25.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A25.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A31.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A31.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A37.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A37.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A44.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A44.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A50.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A50.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A05%3A56.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A05%3A56.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A06%3A02.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A06%3A02.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter/2025-01-31-14%3A06%3A07.txt
Normal file
1
MyData/Bitter/2025-01-31-14%3A06%3A07.txt
Normal file
@ -0,0 +1 @@
|
||||
11.841914176940918;2.8988311290740967;7.445784091949463;1.7708059549331665;3.017059803009033;6.972563743591309;0.4359263777732849;0.8239997625350952;3.2965757846832275;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A21%3A53.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A21%3A53.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.156102180480957;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A00.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A00.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;1.495895266532898;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A06.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A06.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;1.495895266532898;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A11.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A11.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.156102180480957;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A18.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A18.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A24.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A24.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A30.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A30.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;1.495895266532898;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A36.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A36.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A42.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A42.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A50.txt
Normal file
1
MyData/Bitter_Cold/2025-01-31-14%3A22%3A50.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;3.017059803009033;11.853358268737793;1.3077791929244995;1.6479995250701904;3.2965757846832275;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A25.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A25.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A31.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A31.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A37.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A37.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A43.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A43.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A49.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A49.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A55.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A11%3A55.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A01.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A01.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A07.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A07.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A13.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A13.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.3733329176902771;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A19.txt
Normal file
1
MyData/Bitter_Warm/2025-01-31-14%3A12%3A19.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;0.8854029774665833;2.2627949714660645;7.669820308685303;0.8718527555465698;0.8239997625350952;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A19%3A51.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A19%3A51.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;0.8239997625350952;2.1977171897888184;1.119998812675476;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A19%3A57.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A19%3A57.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A03.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A03.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A10.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A10.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A18.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A18.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A25.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A25.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A30.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A30.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A37.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A37.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A43.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A43.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal/2025-01-31-14%3A20%3A50.txt
Normal file
1
MyData/Ideal/2025-01-31-14%3A20%3A50.txt
Normal file
@ -0,0 +1 @@
|
||||
8.458510398864746;1.9325541257858276;4.6536149978637695;0.8854029774665833;3.017059803009033;9.064332962036133;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A36.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A36.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A42.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A42.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A48.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A48.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A53.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A45%3A53.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A00.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A00.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;1.119998812675476;0.0;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A06.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A06.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A11.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A11.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A17.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A17.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A22.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A22.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A31.txt
Normal file
1
MyData/Ideal_Cold/2025-01-31-14%3A46%3A31.txt
Normal file
@ -0,0 +1 @@
|
||||
5.920957088470459;1.9325541257858276;3.7228920459747314;0.8854029774665833;2.2627949714660645;9.761589050292969;0.8718527555465698;1.2359997034072876;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A25%3A49.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A25%3A49.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A25%3A56.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A25%3A56.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A02.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A02.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.3733329176902771;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A07.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A07.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A13.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A13.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A19.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A19.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A25.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A25.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.3733329176902771;1.0052980184555054;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A31.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A31.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.3733329176902771;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A37.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A37.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A45.txt
Normal file
1
MyData/Ideal_Warm/2025-01-31-14%3A26%3A45.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;1.9325541257858276;5.584338188171387;0.8854029774665833;2.2627949714660645;8.367076873779297;0.8718527555465698;0.8239997625350952;2.1977171897888184;0.7466658353805542;1.0052980184555054;0.0;0.747947633266449;0.0;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A09.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A09.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A16.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A16.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A23.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A23.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A28.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A28.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A34.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A34.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A40.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A40.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A46.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A46.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A52.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A52.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.0;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A03%3A57.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A03%3A57.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong/2025-01-31-14%3A04%3A04.txt
Normal file
1
MyData/Strong/2025-01-31-14%3A04%3A04.txt
Normal file
@ -0,0 +1 @@
|
||||
9.304361343383789;2.8988311290740967;5.584338188171387;1.7708059549331665;3.771324872970581;6.275307655334473;1.3077791929244995;1.2359997034072876;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A35.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A35.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A42.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A42.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;1.654011607170105;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A47.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A47.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;1.654011607170105;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A53.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A53.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A58.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A23%3A58.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A06.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A06.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;1.654011607170105;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A14.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A14.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A19.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A19.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A26.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A26.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A32.txt
Normal file
1
MyData/Strong_Cold/2025-01-31-14%3A24%3A32.txt
Normal file
@ -0,0 +1 @@
|
||||
10.150212287902832;2.8988311290740967;6.515060901641846;1.7708059549331665;3.771324872970581;7.669820308685303;1.7437055110931396;1.6479995250701904;5.494293212890625;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;1.654011607170105;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A09%3A49.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A09%3A49.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A09%3A55.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A09%3A55.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;2.199664354324341;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A01.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A01.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A07.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A07.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A12.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A12.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A18.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A18.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A24.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A24.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A30.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A30.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;1.0052980184555054;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A36.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A36.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A42.txt
Normal file
1
MyData/Strong_Warm/2025-01-31-14%3A10%3A42.txt
Normal file
@ -0,0 +1 @@
|
||||
13.533616065979004;3.8651082515716553;9.307229995727539;2.6562089920043945;3.771324872970581;5.5780510902404785;0.8718527555465698;1.2359997034072876;6.593151569366455;0.7466658353805542;2.0105960369110107;0.35392314195632935;0.747947633266449;0.7810816168785095;0.8270058035850525;1.0998321771621704;0.5120090246200562;0.0;
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user