Datei zum umschreiben der csv Datei in eine für Matlab lesbare Struktur. Komma als Trennzeichen und kein Zeitstempel
This commit is contained in:
parent
b2fa94647d
commit
2d3364b66e
1 changed files with 15 additions and 0 deletions
15
src/csvfilter.py
Normal file
15
src/csvfilter.py
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/python2
|
||||||
|
|
||||||
|
import csv
|
||||||
|
outFileName = 'visualisierung.csv'
|
||||||
|
file = open("wlan_pioneer_filtered.csv", "r")
|
||||||
|
csv_reader = csv.reader(file, delimiter="\n")
|
||||||
|
outFile = open(outFileName, "w")
|
||||||
|
for row in csv_reader:
|
||||||
|
array=row[0].split(';')
|
||||||
|
outFile.write("%s,%s,%s,%s\n"
|
||||||
|
% (array[1], array[2], array[3], array[4]))
|
||||||
|
file.close()
|
||||||
|
outFile.close()
|
||||||
|
|
||||||
|
#Ergebnisdatei hat immer noch eine Überschrift. Manuell entfernen
|
Loading…
Reference in a new issue