Commit 245619288a981011312fd4a2360174bfc2f58cb4

Authored by rcavalie
1 parent dbae34b1

application et prédictions ok

python/main_kppv.py
... ... @@ -146,6 +146,12 @@ def Recorder():
146 146 puissance_file = open('C:/xampp/htdocs/puissance.csv', 'a')
147 147 puissancewriter = csv.writer(puissance_file, delimiter=',');
148 148  
  149 + traficping_file = open('C:/xampp/htdocs/traficPing.csv', 'w')
  150 + traficpingwriter = csv.writer(traficping_file);
  151 +
  152 + traficrssi_file = open('C:/xampp/htdocs/traficRssi.csv', 'w')
  153 + traficrssiwriter = csv.writer(traficrssi_file);
  154 +
149 155 if(0x7C in x):
150 156 #Lecture de la trame
151 157 trame_read = x;
... ... @@ -179,19 +185,23 @@ def Recorder():
179 185 print("PING : "+str(ping_mesured)+" ms\n");
180 186 if(state_ping == 0):
181 187 print("PING NORMAL\n");
  188 + traficpingwriter.writerow([0])
182 189 elif(state_ping == 1):
183 190 print("PING ATTAQUE\n");
  191 + traficpingwriter.writerow([1])
184 192 if(state_rssi == 0):
185 193 print("RSSI NORMAL\n");
  194 + traficrssiwriter.writerow([0])
186 195 elif(state_rssi == 1):
187 196 print("RSSI ATTAQUE\n");
  197 + traficrssiwriter.writerow([1])
188 198 print("###############################\n");
189 199 ##########################################
190 200 #ECRITURE DANS FICHIERS
191 201 ##########################################
192 202 tempwriter.writerow([time.time(),temp_read]);
193 203 pingwriter.writerow([time.time(),ping_mesured])
194   - puissancewriter.writerow([time.time(),puissance_read*(-1)]);
  204 + puissancewriter.writerow([time.time(),puissance_read]);
195 205 ##########################################
196 206 else:
197 207 print("\n###############################\n");
... ... @@ -200,6 +210,8 @@ def Recorder():
200 210 temp_file.close();
201 211 puissance_file.close();
202 212 ping_file.close();
  213 + traficping_file.close();
  214 + traficrssi_file.close();
203 215 cpt_trames_temp = cpt_trames;
204 216 ###############################################################################
205 217  
... ...
util/index.php
1 1 <!DOCTYPE html>
2 2 <html>
3 3 <head>
4   -<meta http-equiv="refresh" content="10">
  4 +<meta http-equiv="refresh" content="2">
5 5 <title>Détection automatique de DoS</title>
6 6 <script type="text/javascript" src="https://canvasjs.com/assets/script/jquery-1.11.1.min.js"></script>
7 7 <script type="text/javascript" src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
... ... @@ -24,6 +24,15 @@
24 24 return dataPoints;
25 25 }
26 26  
  27 + function getDataTraficFromCSV(csv) {
  28 + var dataPoints = csvLines = points = [];
  29 + csvLines = csv.split(/[\r?\n|\r|\n]+/);
  30 + for (var i = 0; i < csvLines.length; i++)
  31 + if (csvLines[i].length > 0) {
  32 + return csvLines[i]
  33 + }
  34 + }
  35 +
27 36 $.get("temperature.csv", function(data) {
28 37 var chart = new CanvasJS.Chart("chartTemp", {
29 38 axisY: {
... ... @@ -80,12 +89,124 @@
80 89 });
81 90 chart.render();
82 91 });
  92 +
  93 + $.get("traficPing.csv", function(data) {
  94 + x = getDataTraficFromCSV(data);
  95 + if(x == 0){
  96 + var chart = new CanvasJS.Chart("chartTraficPing", {
  97 + theme: "light2", // "light1", "light2", "dark1", "dark2"
  98 + exportEnabled: true,
  99 + animationEnabled: true,
  100 + title: {
  101 + text: "PING"
  102 + },
  103 + data: [{
  104 + type: "pie",
  105 + startAngle: 25,
  106 + toolTipContent: "<b>{label}</b>: {y}%",
  107 + showInLegend: "true",
  108 + legendText: "{label}",
  109 + indexLabelFontSize: 16,
  110 + indexLabel: "{label} - {y}%",
  111 + dataPoints: [
  112 + {y: 100, label: "Normal", color: "green"},
  113 + {y: 0, label: "Attaque", color: "red"}
  114 + ]
  115 + }]
  116 + });
  117 + }
  118 + else if(x == 1) {
  119 + var chart = new CanvasJS.Chart("chartTraficPing", {
  120 + theme: "light2", // "light1", "light2", "dark1", "dark2"
  121 + exportEnabled: true,
  122 + animationEnabled: true,
  123 + title: {
  124 + text: "PING"
  125 + },
  126 + data: [{
  127 + type: "pie",
  128 + startAngle: 25,
  129 + toolTipContent: "<b>{label}</b>: {y}%",
  130 + showInLegend: "true",
  131 + legendText: "{label}",
  132 + indexLabelFontSize: 16,
  133 + indexLabel: "{label} - {y}%",
  134 + dataPoints: [
  135 + {y: 0, label: "Normal", color: "green"},
  136 + {y: 100, label: "Attaque", color: "red"}
  137 + ]
  138 + }]
  139 + });
  140 + }
  141 + chart.render();
  142 + });
  143 +
  144 + $.get("traficRssi.csv", function(data) {
  145 + x = getDataTraficFromCSV(data);
  146 + if(x == 0){
  147 + var chart = new CanvasJS.Chart("chartTraficRssi", {
  148 + theme: "light2", // "light1", "light2", "dark1", "dark2"
  149 + exportEnabled: true,
  150 + animationEnabled: true,
  151 + title: {
  152 + text: "RSSI"
  153 + },
  154 + data: [{
  155 + type: "pie",
  156 + startAngle: 25,
  157 + toolTipContent: "<b>{label}</b>: {y}%",
  158 + showInLegend: "true",
  159 + legendText: "{label}",
  160 + indexLabelFontSize: 16,
  161 + indexLabel: "{label} - {y}%",
  162 + dataPoints: [
  163 + {y: 100, label: "Normal", color: "green"},
  164 + {y: 0, label: "Attaque", color: "red"}
  165 + ]
  166 + }]
  167 + });
  168 + }
  169 + else if (x == 1) {
  170 + var chart = new CanvasJS.Chart("chartTraficRssi", {
  171 + theme: "light2", // "light1", "light2", "dark1", "dark2"
  172 + exportEnabled: true,
  173 + animationEnabled: true,
  174 + title: {
  175 + text: "RSSI"
  176 + },
  177 + data: [{
  178 + type: "pie",
  179 + startAngle: 25,
  180 + toolTipContent: "<b>{label}</b>: {y}%",
  181 + showInLegend: "true",
  182 + legendText: "{label}",
  183 + indexLabelFontSize: 16,
  184 + indexLabel: "{label} - {y}%",
  185 + dataPoints: [
  186 + {y: 0, label: "Normal", color: "green"},
  187 + {y: 100, label: "Attaque", color: "red"}
  188 + ]
  189 + }]
  190 + });
  191 + }
  192 + chart.render();
  193 + });
83 194 }
84 195 </script>
85 196 </head>
86 197 <body>
87   - <div id="chartTemp" style="width:70%; height:200px;"></div>
88   - <div id="chartPing" style="width:70%; height:200px;"></div>
89   - <div id="chartPuissance" style="width:70%; height:200px;"></div>
  198 + <div style="float:left; width:70%;">
  199 + <div id="chartTemp" style="width:100%; height:200px;"></div>
  200 + <div id="chartPing" style="width:100%; height:200px;"></div>
  201 + <div id="chartPuissance" style="width:100%; height:200px;"></div>
  202 + </div>
  203 + <br>
  204 + <br>
  205 + <br>
  206 + <br>
  207 + <div style="float:left; width:30%;">
  208 + <div id="chartTraficPing" style="width:100%; height:200px;"></div>
  209 + <div id="chartTraficRssi" style="width:100%; height:200px;"></div>
  210 + </div>
90 211 </body>
91 212 </html>
... ...
util/ping.csv
1   -1518007455.4648404,5024.266004562378
2   -1518007460.4830315,5018.172264099121
3   -1518007465.5178816,5034.8615646362305
4   -1518007470.5258203,5023.5595703125
5   -1518007475.5422134,5016.379833221436
6   -1518007480.575936,5033.734321594238
7   -1518007485.6241534,5016.974925994873
8   -1518007490.644469,5020.307540893555
9   -1518007495.6639895,5035.150766372681
10   -1518007500.6848834,5020.91908454895
11   -1518007511.7256336,5027.112722396851
  1 +1518093079.2695596,5023.983716964722
  2 +1518093084.3689787,5024.393796920776
  3 +1518093089.3177843,5022.834062576294
  4 +1518093094.350872,5026.084899902344
  5 +1518093099.360859,5019.984245300293
  6 +1518093104.4646795,5032.801628112793
  7 +1518093109.3979712,5016.317129135132
  8 +1518093115.4367435,6027.772426605225
  9 +1518093120.4996932,5019.930124282837
  10 +1518093125.4765935,5025.922536849976
  11 +1518093130.5216658,5027.065277099609
  12 +1518093135.5392,5025.536060333252
  13 +1518093140.6151273,5025.910377502441
  14 +1518093145.579538,5018.427133560181
  15 +1518093150.6085465,5031.017303466797
  16 +1518093155.6394804,5020.925760269165
  17 +1518093160.6768966,5022.408485412598
  18 +1518093165.6719527,5023.065567016602
  19 +1518093170.710397,5029.444456100464
  20 +1518093172.7532487,1024.5208740234375
  21 +1518093173.77201,1018.7664031982422
  22 +1518093174.798965,1025.9535312652588
  23 +1518093177.8231094,1016.9546604156494
  24 +1518093178.8488386,1020.7252502441406
  25 +1518093179.8714018,1022.5691795349121
  26 +1518093185.9773276,1025.3865718841553
  27 +1518093186.9963212,1022.993803024292
  28 +1518093188.0287957,1019.4730758666992
  29 +1518093189.0433002,1025.5074501037598
  30 +1518093190.1162908,1020.9686756134033
  31 +1518093193.108797,1018.5115337371826
  32 +1518093194.142966,1028.1658172607422
  33 +1518093196.1683793,2020.4100608825684
  34 +1518093199.205267,1016.1128044128418
  35 +1518093200.201601,1022.0937728881836
  36 +1518093201.2734232,1024.0566730499268
  37 +1518093202.276011,1028.597354888916
  38 +1518093203.2682757,1015.2721405029297
  39 +1518093204.3066185,1023.33664894104
  40 +1518093205.3380864,1022.4654674530029
  41 +1518093206.3442817,1022.1986770629883
  42 +1518093207.380192,1023.9114761352539
  43 +1518093208.4572175,1023.005485534668
  44 +1518093209.4316485,1018.4428691864014
  45 +1518093211.4281793,2024.5413780212402
  46 +1518093214.4921093,1024.996042251587
  47 +1518093215.5191321,1024.019479751587
  48 +1518093216.5236313,1017.5034999847412
  49 +1518093217.5751338,1026.4949798583984
  50 +1518093218.5697544,1018.6281204223633
  51 +1518093219.6091835,1027.42600440979
  52 +1518093220.6243823,1017.1976089477539
  53 +1518093223.716571,1027.2369384765625
  54 +1518093224.712666,1018.0940628051758
  55 +1518093226.7407815,2025.1142978668213
  56 +1518093230.8136668,1017.6362991333008
  57 +1518093231.8020432,1024.3816375732422
  58 +1518093232.8766205,1025.5839824676514
  59 +1518093233.8439872,1019.3691253662109
  60 +1518093234.863484,1019.4964408874512
  61 +1518093235.8909776,1024.4934558868408
  62 +1518093238.963613,1025.9394645690918
  63 +1518093240.037013,1023.3907699584961
  64 +1518093241.9847844,2021.7864513397217
  65 +1518093245.044051,1016.120195388794
  66 +1518093246.0715318,1023.4823226928711
  67 +1518093247.0868618,1022.3298072814941
  68 +1518093248.096248,1022.3915576934814
  69 +1518093249.1105273,1022.2830772399902
  70 +1518093254.168015,1018.122673034668
  71 +1518093256.2241106,2023.0774879455566
  72 +1518093260.2888663,1022.1524238586426
  73 +1518093261.3334353,1019.5560455322266
  74 +1518093262.3268096,1023.3867168426514
  75 +1518093263.401733,1022.9067802429199
  76 +1518093264.3654866,1022.7744579315186
  77 +1518093265.3924696,1021.9812393188477
  78 +1518093266.398749,1020.2820301055908
  79 +1518093270.5215034,2027.1849632263184
  80 +1518093273.5116444,1020.9126472473145
  81 +1518093274.5252287,1022.5720405578613
  82 +1518093275.541614,1019.383430480957
  83 +1518093276.5666914,1021.0726261138916
  84 +1518093277.5797486,1022.061824798584
  85 +1518093278.6134334,1024.688482284546
  86 +1518093279.6190064,1020.5729007720947
  87 +1518093280.6571946,1025.1870155334473
  88 +1518093285.7704089,2025.0916481018066
  89 +1518093288.765281,1017.5755023956299
  90 +1518093289.8093474,1026.0720252990723
  91 +1518093290.814663,1017.3070430755615
  92 +1518093291.8464572,1023.7300395965576
  93 +1518093292.8577456,1021.3508605957031
  94 +1518093293.9066541,1031.9044589996338
  95 +1518093294.9176404,1012.9897594451904
  96 +1518093295.9152002,1022.5639343261719
  97 +1518093296.961142,1022.9382514953613
  98 +1518093301.0123296,2023.7059593200684
  99 +1518093304.0671458,1022.273063659668
  100 +1518093305.0637622,1023.6313343048096
  101 +1518093306.141553,1020.7648277282715
  102 +1518093307.1102145,1022.6836204528809
  103 +1518093308.1975136,1025.278091430664
  104 +1518093309.1573124,1017.819881439209
  105 +1518093310.171462,1022.2320556640625
  106 +1518093311.2384458,1026.8888473510742
  107 +1518093312.2281756,1024.7395038604736
  108 +1518093318.2944984,1023.9875316619873
  109 +1518093319.3143406,1021.8372344970703
  110 +1518093320.35109,1015.7439708709717
  111 +1518093321.3711772,1026.0932445526123
  112 +1518093322.4318838,1019.6878910064697
  113 +1518093323.4242744,1021.40212059021
  114 +1518093324.4921722,1024.88374710083
  115 +1518093325.4612737,1021.1231708526611
  116 +1518093333.5109348,5020.967721939087
  117 +1518093339.528905,6028.982639312744
  118 +1518093344.550869,5019.955396652222
  119 +1518093349.556933,5025.070667266846
  120 +1518093354.5945368,5023.597955703735
  121 +1518093359.6307573,5029.221773147583
  122 +1518093364.6451712,5024.412631988525
  123 +1518093369.6564665,5021.299123764038
  124 +1518093374.710781,5026.314496994019
  125 +1518093384.7420824,5030.252456665039
  126 +1518093389.7738054,5016.715288162231
  127 +1518093394.792789,5029.989004135132
  128 +1518093399.8463602,5019.559144973755
  129 +1518093404.8345983,5027.253150939941
  130 +1518093420.8830059,5018.174171447754
  131 +1518093425.9086926,5024.686813354492
  132 +1518093430.929746,5025.052547454834
  133 +1518093436.050754,5025.980710983276
  134 +1518093440.9937131,5024.986505508423
  135 +1518093445.9922132,5020.506858825684
  136 +1518093451.0430255,5029.803514480591
  137 +1518093456.1429768,5021.923303604126
  138 +1518093461.1074235,5026.469469070435
  139 +1518093466.125515,5023.093700408936
  140 +1518093471.1123748,5020.871639251709
  141 +1518093476.1544142,5027.033805847168
  142 +1518093481.191225,5020.804643630981
  143 +1518093487.214408,6029.19864654541
  144 +1518093492.2313926,5024.975538253784
  145 +1518093497.348095,5023.667097091675
  146 +1518093502.2778752,5023.816823959351
  147 +1518093507.3057022,5022.820472717285
  148 +1518093512.3331692,5026.479721069336
  149 +1518093517.3918452,5022.6545333862305
  150 +1518093522.388266,5023.4270095825195
  151 +1518093527.3908896,5023.63395690918
  152 +1518093532.4311159,5026.219844818115
  153 +1518093537.431808,5020.694971084595
  154 +1518093542.4846978,5028.883934020996
  155 +1518093547.5173717,5021.669864654541
  156 +1518093552.5074575,5023.097276687622
  157 +1518093557.5670023,5029.539585113525
  158 +1518093563.5648026,6022.810220718384
  159 +1518093568.586505,5022.697925567627
  160 +1518093573.606568,5022.068023681641
  161 +1518093578.6488292,5029.256105422974
  162 +1518093583.7095447,5020.696640014648
  163 +1518093588.7097743,5029.240846633911
  164 +1518093593.7267597,5025.99024772644
  165 +1518093598.7327375,5018.9783573150635
  166 +1518093603.7507775,5022.043943405151
  167 +1518093608.7991936,5023.407936096191
  168 +1518093613.8334744,5027.278900146484
  169 +1518093618.8366084,5025.145530700684
  170 +1518093623.8674912,5026.874780654907
  171 +1518093628.8870957,5022.605895996094
  172 +1518093633.9216437,5027.548551559448
  173 +1518093639.9411633,6022.5183963775635
  174 +1518093645.0083644,5024.190664291382
  175 +1518093649.994378,5025.023460388184
  176 +1518093655.016217,5019.837856292725
  177 +1518093660.0537267,5029.510498046875
  178 +1518093662.07005,1021.1069583892822
  179 +1518093663.1003354,1022.2787857055664
  180 +1518093664.1112998,1020.9734439849854
  181 +1518093667.1918573,1025.6195068359375
  182 +1518093668.2769003,1024.0182876586914
  183 +1518093669.2528996,1022.0167636871338
  184 +1518093673.3062716,2026.0326862335205
  185 +1518093676.3622184,1021.9573974609375
  186 +1518093677.3607342,1017.51708984375
  187 +1518093678.384212,1022.4742889404297
  188 +1518093679.4299617,1022.7453708648682
  189 +1518093682.4930673,1026.6680717468262
  190 +1518093683.5082092,1024.1303443908691
  191 +1518093684.5325267,1021.32248878479
  192 +1518093688.61111,2025.9196758270264
  193 +1518093691.6691647,1023.3991146087646
  194 +1518093692.6680768,1021.9326019287109
  195 +1518093693.708832,1021.7380523681641
  196 +1518093694.7051332,1020.3051567077637
  197 +1518093697.7837625,1021.2769508361816
  198 +1518093698.7947364,1022.9828357696533
  199 +1518093699.8503382,1020.5855369567871
  200 +1518093703.9180882,2022.2887992858887
  201 +1518093706.916019,1020.0800895690918
  202 +1518093707.9606442,1022.2835540771484
  203 +1518093708.981393,1022.364616394043
  204 +1518093710.0110157,1029.0098190307617
  205 +1518093713.0556622,1021.8958854675293
  206 +1518093714.0996997,1024.0345001220703
  207 +1518093715.1127496,1019.1965103149414
  208 +1518093719.1938767,2027.5382995605469
  209 +1518093722.2265606,1021.5928554534912
  210 +1518093723.269043,1027.4772644042969
  211 +1518093724.277515,1016.4732933044434
  212 +1518093725.3001397,1027.6257991790771
  213 +1518093728.41112,1022.4449634552002
  214 +1518093729.3964694,1018.364429473877
  215 +1518093730.3954508,1019.9871063232422
  216 +1518093734.4648488,2024.1637229919434
  217 +1518093737.5611746,1022.5789546966553
  218 +1518093738.5398662,1024.7080326080322
  219 +1518093739.6264622,1020.575761795044
  220 +1518093740.5804877,1022.0451354980469
  221 +1518093741.6039946,1021.5082168579102
  222 +1518093742.6366918,1031.7013263702393
  223 +1518093743.646098,1013.4060382843018
  224 +1518093744.67212,1023.0202674865723
  225 +1518093745.690207,1023.0910778045654
  226 +1518093746.7278569,1020.6401348114014
  227 +1518093747.747528,1024.6753692626953
  228 +1518093749.7818022,2026.287317276001
  229 +1518093752.8137627,1021.0127830505371
  230 +1518093753.8333,1019.5391178131104
  231 +1518093754.8531182,1023.8168239593506
  232 +1518093755.8673244,1020.2116966247559
  233 +1518093756.8827426,1023.4181880950928
  234 +1518093757.909334,1021.5940475463867
  235 +1518093758.9386163,1023.2770442962646
  236 +1518093760.024487,1021.8496322631836
  237 +1518093761.0066898,1026.2176990509033
  238 +1518093762.0610816,1020.3781127929688
  239 +1518093764.0346632,2021.5990543365479
  240 +1518093767.059072,1022.4637985229492
  241 +1518093768.0936472,1024.5742797851562
  242 +1518093769.1306734,1023.019552230835
  243 +1518093770.1636486,1024.972915649414
  244 +1518093772.2066534,1026.867151260376
  245 +1518093775.3176634,1028.2235145568848
  246 +1518093776.2732024,1019.5643901824951
  247 +1518093777.2884035,1021.1992263793945
  248 +1518093779.2995954,2021.195650100708
  249 +1518093782.3495862,1020.0057029724121
  250 +1518093783.3836634,1022.07350730896
  251 +1518093784.3977635,1030.1101207733154
  252 +1518093785.4251108,1015.347957611084
  253 +1518093786.425621,1022.5086212158203
  254 +1518093787.4483678,1021.7461585998535
  255 +1518093788.4894679,1031.0964584350586
  256 +1518093789.5132725,1014.8007869720459
  257 +1518093790.517274,1021.0089683532715
  258 +1518093791.536099,1024.8284339904785
  259 +1518093792.5587933,1020.6897258758545
  260 +1518093794.6545308,2025.7160663604736
  261 +1518093797.6572235,1027.176856994629
... ...
util/puissance.csv
1   -1518007455.4648404,-31
2   -1518007460.4830315,-32
3   -1518007465.5178816,-34
4   -1518007470.5258203,-32
5   -1518007475.5422134,-34
6   -1518007480.575936,-33
7   -1518007485.6241534,-33
8   -1518007490.644469,-33
9   -1518007495.6639895,-33
10   -1518007500.6848834,-34
11   -1518007511.7256336,-32
  1 +1518093079.2695596,27
  2 +1518093084.3689787,25
  3 +1518093089.3177843,27
  4 +1518093094.350872,27
  5 +1518093099.360859,27
  6 +1518093104.4646795,26
  7 +1518093109.3979712,27
  8 +1518093115.4367435,26
  9 +1518093120.4996932,26
  10 +1518093125.4765935,26
  11 +1518093130.5216658,26
  12 +1518093135.5392,26
  13 +1518093140.6151273,26
  14 +1518093145.579538,26
  15 +1518093150.6085465,25
  16 +1518093155.6394804,25
  17 +1518093160.6768966,26
  18 +1518093165.6719527,25
  19 +1518093170.710397,29
  20 +1518093172.7532487,49
  21 +1518093173.77201,36
  22 +1518093174.798965,33
  23 +1518093177.8231094,30
  24 +1518093178.8488386,30
  25 +1518093179.8714018,34
  26 +1518093185.9773276,24
  27 +1518093186.9963212,26
  28 +1518093188.0287957,24
  29 +1518093189.0433002,24
  30 +1518093190.1162908,26
  31 +1518093193.108797,21
  32 +1518093194.142966,21
  33 +1518093196.1683793,23
  34 +1518093199.205267,21
  35 +1518093200.201601,26
  36 +1518093201.2734232,25
  37 +1518093202.276011,26
  38 +1518093203.2682757,27
  39 +1518093204.3066185,27
  40 +1518093205.3380864,26
  41 +1518093206.3442817,14
  42 +1518093207.380192,25
  43 +1518093208.4572175,23
  44 +1518093209.4316485,23
  45 +1518093211.4281793,23
  46 +1518093214.4921093,24
  47 +1518093215.5191321,23
  48 +1518093216.5236313,34
  49 +1518093217.5751338,26
  50 +1518093218.5697544,26
  51 +1518093219.6091835,26
  52 +1518093220.6243823,26
  53 +1518093223.716571,23
  54 +1518093224.712666,21
  55 +1518093226.7407815,23
  56 +1518093230.8136668,31
  57 +1518093231.8020432,30
  58 +1518093232.8766205,32
  59 +1518093233.8439872,30
  60 +1518093234.863484,30
  61 +1518093235.8909776,29
  62 +1518093238.963613,24
  63 +1518093240.037013,23
  64 +1518093241.9847844,25
  65 +1518093245.044051,21
  66 +1518093246.0715318,21
  67 +1518093247.0868618,20
  68 +1518093248.096248,20
  69 +1518093249.1105273,20
  70 +1518093254.168015,20
  71 +1518093256.2241106,20
  72 +1518093260.2888663,20
  73 +1518093261.3334353,20
  74 +1518093262.3268096,20
  75 +1518093263.401733,21
  76 +1518093264.3654866,20
  77 +1518093265.3924696,20
  78 +1518093266.398749,21
  79 +1518093270.5215034,22
  80 +1518093273.5116444,19
  81 +1518093274.5252287,21
  82 +1518093275.541614,21
  83 +1518093276.5666914,19
  84 +1518093277.5797486,21
  85 +1518093278.6134334,21
  86 +1518093279.6190064,21
  87 +1518093280.6571946,20
  88 +1518093285.7704089,20
  89 +1518093288.765281,19
  90 +1518093289.8093474,20
  91 +1518093290.814663,20
  92 +1518093291.8464572,19
  93 +1518093292.8577456,21
  94 +1518093293.9066541,20
  95 +1518093294.9176404,20
  96 +1518093295.9152002,20
  97 +1518093296.961142,20
  98 +1518093301.0123296,20
  99 +1518093304.0671458,20
  100 +1518093305.0637622,20
  101 +1518093306.141553,20
  102 +1518093307.1102145,19
  103 +1518093308.1975136,20
  104 +1518093309.1573124,20
  105 +1518093310.171462,20
  106 +1518093311.2384458,21
  107 +1518093312.2281756,20
  108 +1518093318.2944984,20
  109 +1518093319.3143406,20
  110 +1518093320.35109,20
  111 +1518093321.3711772,20
  112 +1518093322.4318838,19
  113 +1518093323.4242744,20
  114 +1518093324.4921722,20
  115 +1518093325.4612737,19
  116 +1518093333.5109348,36
  117 +1518093339.528905,36
  118 +1518093344.550869,36
  119 +1518093349.556933,37
  120 +1518093354.5945368,36
  121 +1518093359.6307573,36
  122 +1518093364.6451712,36
  123 +1518093369.6564665,37
  124 +1518093374.710781,36
  125 +1518093384.7420824,40
  126 +1518093389.7738054,42
  127 +1518093394.792789,29
  128 +1518093399.8463602,36
  129 +1518093404.8345983,36
  130 +1518093420.8830059,43
  131 +1518093425.9086926,33
  132 +1518093430.929746,31
  133 +1518093436.050754,30
  134 +1518093440.9937131,30
  135 +1518093445.9922132,30
  136 +1518093451.0430255,40
  137 +1518093456.1429768,38
  138 +1518093461.1074235,41
  139 +1518093466.125515,42
  140 +1518093471.1123748,40
  141 +1518093476.1544142,38
  142 +1518093481.191225,38
  143 +1518093487.214408,37
  144 +1518093492.2313926,38
  145 +1518093497.348095,37
  146 +1518093502.2778752,38
  147 +1518093507.3057022,38
  148 +1518093512.3331692,38
  149 +1518093517.3918452,41
  150 +1518093522.388266,36
  151 +1518093527.3908896,30
  152 +1518093532.4311159,30
  153 +1518093537.431808,30
  154 +1518093542.4846978,34
  155 +1518093547.5173717,33
  156 +1518093552.5074575,34
  157 +1518093557.5670023,34
  158 +1518093563.5648026,33
  159 +1518093568.586505,32
  160 +1518093573.606568,34
  161 +1518093578.6488292,35
  162 +1518093583.7095447,33
  163 +1518093588.7097743,35
  164 +1518093593.7267597,33
  165 +1518093598.7327375,34
  166 +1518093603.7507775,34
  167 +1518093608.7991936,45
  168 +1518093613.8334744,29
  169 +1518093618.8366084,31
  170 +1518093623.8674912,31
  171 +1518093628.8870957,31
  172 +1518093633.9216437,32
  173 +1518093639.9411633,31
  174 +1518093645.0083644,31
  175 +1518093649.994378,31
  176 +1518093655.016217,29
  177 +1518093660.0537267,30
  178 +1518093662.07005,25
  179 +1518093663.1003354,30
  180 +1518093664.1112998,28
  181 +1518093667.1918573,40
  182 +1518093668.2769003,29
  183 +1518093669.2528996,31
  184 +1518093673.3062716,31
  185 +1518093676.3622184,35
  186 +1518093677.3607342,34
  187 +1518093678.384212,33
  188 +1518093679.4299617,24
  189 +1518093682.4930673,27
  190 +1518093683.5082092,27
  191 +1518093684.5325267,27
  192 +1518093688.61111,28
  193 +1518093691.6691647,23
  194 +1518093692.6680768,23
  195 +1518093693.708832,24
  196 +1518093694.7051332,24
  197 +1518093697.7837625,28
  198 +1518093698.7947364,30
  199 +1518093699.8503382,30
  200 +1518093703.9180882,32
  201 +1518093706.916019,28
  202 +1518093707.9606442,27
  203 +1518093708.981393,29
  204 +1518093710.0110157,29
  205 +1518093713.0556622,29
  206 +1518093714.0996997,29
  207 +1518093715.1127496,29
  208 +1518093719.1938767,28
  209 +1518093722.2265606,26
  210 +1518093723.269043,27
  211 +1518093724.277515,29
  212 +1518093725.3001397,23
  213 +1518093728.41112,25
  214 +1518093729.3964694,24
  215 +1518093730.3954508,25
  216 +1518093734.4648488,27
  217 +1518093737.5611746,28
  218 +1518093738.5398662,26
  219 +1518093739.6264622,26
  220 +1518093740.5804877,27
  221 +1518093741.6039946,26
  222 +1518093742.6366918,30
  223 +1518093743.646098,26
  224 +1518093744.67212,29
  225 +1518093745.690207,27
  226 +1518093746.7278569,36
  227 +1518093747.747528,38
  228 +1518093749.7818022,38
  229 +1518093752.8137627,40
  230 +1518093753.8333,40
  231 +1518093754.8531182,41
  232 +1518093755.8673244,41
  233 +1518093756.8827426,41
  234 +1518093757.909334,41
  235 +1518093758.9386163,40
  236 +1518093760.024487,40
  237 +1518093761.0066898,41
  238 +1518093762.0610816,40
  239 +1518093764.0346632,40
  240 +1518093767.059072,40
  241 +1518093768.0936472,40
  242 +1518093769.1306734,40
  243 +1518093770.1636486,40
  244 +1518093772.2066534,41
  245 +1518093775.3176634,32
  246 +1518093776.2732024,31
  247 +1518093777.2884035,36
  248 +1518093779.2995954,36
  249 +1518093782.3495862,31
  250 +1518093783.3836634,31
  251 +1518093784.3977635,31
  252 +1518093785.4251108,30
  253 +1518093786.425621,30
  254 +1518093787.4483678,38
  255 +1518093788.4894679,40
  256 +1518093789.5132725,40
  257 +1518093790.517274,40
  258 +1518093791.536099,40
  259 +1518093792.5587933,37
  260 +1518093794.6545308,33
  261 +1518093797.6572235,34
... ...
util/temperature.csv
1   -1518007455.4648404,35
2   -1518007460.4830315,46
3   -1518007465.5178816,28
4   -1518007470.5258203,81
5   -1518007475.5422134,98
6   -1518007480.575936,67
7   -1518007485.6241534,8
8   -1518007490.644469,42
9   -1518007495.6639895,16
10   -1518007500.6848834,34
11   -1518007511.7256336,87
  1 +1518093079.2695596,86
  2 +1518093084.3689787,57
  3 +1518093089.3177843,53
  4 +1518093094.350872,76
  5 +1518093099.360859,22
  6 +1518093104.4646795,99
  7 +1518093109.3979712,95
  8 +1518093115.4367435,32
  9 +1518093120.4996932,23
  10 +1518093125.4765935,63
  11 +1518093130.5216658,10
  12 +1518093135.5392,97
  13 +1518093140.6151273,94
  14 +1518093145.579538,37
  15 +1518093150.6085465,45
  16 +1518093155.6394804,32
  17 +1518093160.6768966,51
  18 +1518093165.6719527,78
  19 +1518093170.710397,43
  20 +1518093172.7532487,90
  21 +1518093173.77201,31
  22 +1518093174.798965,7
  23 +1518093177.8231094,43
  24 +1518093178.8488386,73
  25 +1518093179.8714018,66
  26 +1518093185.9773276,27
  27 +1518093186.9963212,82
  28 +1518093188.0287957,58
  29 +1518093189.0433002,16
  30 +1518093190.1162908,89
  31 +1518093193.108797,15
  32 +1518093194.142966,99
  33 +1518093196.1683793,83
  34 +1518093199.205267,92
  35 +1518093200.201601,51
  36 +1518093201.2734232,66
  37 +1518093202.276011,87
  38 +1518093203.2682757,4
  39 +1518093204.3066185,41
  40 +1518093205.3380864,76
  41 +1518093206.3442817,73
  42 +1518093207.380192,83
  43 +1518093208.4572175,12
  44 +1518093209.4316485,86
  45 +1518093211.4281793,46
  46 +1518093214.4921093,87
  47 +1518093215.5191321,41
  48 +1518093216.5236313,72
  49 +1518093217.5751338,86
  50 +1518093218.5697544,57
  51 +1518093219.6091835,53
  52 +1518093220.6243823,76
  53 +1518093223.716571,95
  54 +1518093224.712666,32
  55 +1518093226.7407815,23
  56 +1518093230.8136668,94
  57 +1518093231.8020432,37
  58 +1518093232.8766205,45
  59 +1518093233.8439872,32
  60 +1518093234.863484,51
  61 +1518093235.8909776,78
  62 +1518093238.963613,61
  63 +1518093240.037013,47
  64 +1518093241.9847844,74
  65 +1518093245.044051,23
  66 +1518093246.0715318,52
  67 +1518093247.0868618,70
  68 +1518093248.096248,36
  69 +1518093249.1105273,63
  70 +1518093254.168015,49
  71 +1518093256.2241106,50
  72 +1518093260.2888663,61
  73 +1518093261.3334353,71
  74 +1518093262.3268096,39
  75 +1518093263.401733,27
  76 +1518093264.3654866,4
  77 +1518093265.3924696,99
  78 +1518093266.398749,12
  79 +1518093270.5215034,34
  80 +1518093273.5116444,48
  81 +1518093274.5252287,13
  82 +1518093275.541614,84
  83 +1518093276.5666914,64
  84 +1518093277.5797486,27
  85 +1518093278.6134334,75
  86 +1518093279.6190064,61
  87 +1518093280.6571946,17
  88 +1518093285.7704089,5
  89 +1518093288.765281,21
  90 +1518093289.8093474,12
  91 +1518093290.814663,36
  92 +1518093291.8464572,0
  93 +1518093292.8577456,55
  94 +1518093293.9066541,87
  95 +1518093294.9176404,55
  96 +1518093295.9152002,40
  97 +1518093296.961142,66
  98 +1518093301.0123296,76
  99 +1518093304.0671458,17
  100 +1518093305.0637622,38
  101 +1518093306.141553,91
  102 +1518093307.1102145,41
  103 +1518093308.1975136,42
  104 +1518093309.1573124,16
  105 +1518093310.171462,99
  106 +1518093311.2384458,88
  107 +1518093312.2281756,88
  108 +1518093318.2944984,52
  109 +1518093319.3143406,24
  110 +1518093320.35109,64
  111 +1518093321.3711772,2
  112 +1518093322.4318838,11
  113 +1518093323.4242744,47
  114 +1518093324.4921722,75
  115 +1518093325.4612737,32
  116 +1518093333.5109348,18
  117 +1518093339.528905,48
  118 +1518093344.550869,13
  119 +1518093349.556933,84
  120 +1518093354.5945368,64
  121 +1518093359.6307573,27
  122 +1518093364.6451712,75
  123 +1518093369.6564665,61
  124 +1518093374.710781,17
  125 +1518093384.7420824,57
  126 +1518093389.7738054,47
  127 +1518093394.792789,5
  128 +1518093399.8463602,48
  129 +1518093404.8345983,10
  130 +1518093420.8830059,36
  131 +1518093425.9086926,0
  132 +1518093430.929746,55
  133 +1518093436.050754,87
  134 +1518093440.9937131,55
  135 +1518093445.9922132,40
  136 +1518093451.0430255,66
  137 +1518093456.1429768,17
  138 +1518093461.1074235,21
  139 +1518093466.125515,76
  140 +1518093471.1123748,52
  141 +1518093476.1544142,16
  142 +1518093481.191225,17
  143 +1518093487.214408,38
  144 +1518093492.2313926,91
  145 +1518093497.348095,41
  146 +1518093502.2778752,42
  147 +1518093507.3057022,16
  148 +1518093512.3331692,99
  149 +1518093517.3918452,88
  150 +1518093522.388266,88
  151 +1518093527.3908896,40
  152 +1518093532.4311159,44
  153 +1518093537.431808,62
  154 +1518093542.4846978,10
  155 +1518093547.5173717,52
  156 +1518093552.5074575,24
  157 +1518093557.5670023,64
  158 +1518093563.5648026,2
  159 +1518093568.586505,11
  160 +1518093573.606568,47
  161 +1518093578.6488292,75
  162 +1518093583.7095447,32
  163 +1518093588.7097743,68
  164 +1518093593.7267597,25
  165 +1518093598.7327375,34
  166 +1518093603.7507775,47
  167 +1518093608.7991936,19
  168 +1518093613.8334744,65
  169 +1518093618.8366084,47
  170 +1518093623.8674912,77
  171 +1518093628.8870957,90
  172 +1518093633.9216437,73
  173 +1518093639.9411633,89
  174 +1518093645.0083644,73
  175 +1518093649.994378,27
  176 +1518093655.016217,15
  177 +1518093660.0537267,32
  178 +1518093662.07005,90
  179 +1518093663.1003354,31
  180 +1518093664.1112998,7
  181 +1518093667.1918573,43
  182 +1518093668.2769003,73
  183 +1518093669.2528996,66
  184 +1518093673.3062716,50
  185 +1518093676.3622184,82
  186 +1518093677.3607342,58
  187 +1518093678.384212,16
  188 +1518093679.4299617,89
  189 +1518093682.4930673,15
  190 +1518093683.5082092,99
  191 +1518093684.5325267,83
  192 +1518093688.61111,92
  193 +1518093691.6691647,87
  194 +1518093692.6680768,4
  195 +1518093693.708832,41
  196 +1518093694.7051332,76
  197 +1518093697.7837625,12
  198 +1518093698.7947364,86
  199 +1518093699.8503382,46
  200 +1518093703.9180882,87
  201 +1518093706.916019,86
  202 +1518093707.9606442,57
  203 +1518093708.981393,53
  204 +1518093710.0110157,76
  205 +1518093713.0556622,95
  206 +1518093714.0996997,32
  207 +1518093715.1127496,23
  208 +1518093719.192875,97
  209 +1518093722.2265606,45
  210 +1518093723.269043,32
  211 +1518093724.277515,51
  212 +1518093725.3001397,78
  213 +1518093728.41112,61
  214 +1518093729.3964694,47
  215 +1518093730.3954508,74
  216 +1518093734.4648488,23
  217 +1518093737.5611746,36
  218 +1518093738.5398662,63
  219 +1518093739.6264622,72
  220 +1518093740.5804877,69
  221 +1518093741.6039946,82
  222 +1518093742.6366918,38
  223 +1518093743.646098,49
  224 +1518093744.67212,50
  225 +1518093745.690207,0
  226 +1518093746.7278569,54
  227 +1518093747.747528,53
  228 +1518093749.7818022,61
  229 +1518093752.8137627,27
  230 +1518093753.8322995,4
  231 +1518093754.8531182,99
  232 +1518093755.8673244,12
  233 +1518093756.8827426,79
  234 +1518093757.909334,26
  235 +1518093758.9386163,34
  236 +1518093760.024487,43
  237 +1518093761.0066898,18
  238 +1518093762.0610816,48
  239 +1518093764.0346632,13
  240 +1518093767.059072,27
  241 +1518093768.0936472,75
  242 +1518093769.1306734,61
  243 +1518093770.1636486,17
  244 +1518093772.2066534,57
  245 +1518093775.3176634,48
  246 +1518093776.2732024,10
  247 +1518093777.2884035,21
  248 +1518093779.2995954,12
  249 +1518093782.3495862,55
  250 +1518093783.3836634,87
  251 +1518093784.3977635,55
  252 +1518093785.4251108,40
  253 +1518093786.425621,66
  254 +1518093787.4483678,17
  255 +1518093788.4894679,21
  256 +1518093789.5132725,76
  257 +1518093790.517274,52
  258 +1518093791.536099,16
  259 +1518093792.5587933,17
  260 +1518093794.6545308,38
  261 +1518093797.6572235,42
... ...
util/traficPing.csv 0 → 100644
... ... @@ -0,0 +1 @@
  1 +1
... ...
util/traficRssi.csv 0 → 100644
... ... @@ -0,0 +1 @@
  1 +1
... ...