-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_einzeln.py
70 lines (52 loc) · 1.39 KB
/
test_einzeln.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python
import csv
import unicodecsv
import os
import sys
import numpy as np
import pandas as pd
from influxdb import DataFrameClient
# from influxdb.exceptions import InfluxDBClientError
pfad = u'/home/ttaylan/Dokumente/Datenbank/NeueDaten/'
dbname = 'test2'
messung = 'neu2'
filename = '02-05-2016_14.48 Hochdrucksteuerung_1500_2.5.16_2.csv'
client = DataFrameClient('localhost', 8086, 'root', 'root', dbname)
datei = open(filename,'r')
inhalt=datei.read()
t=inhalt.split('\n')
#fuer tags
tagsi=t[0]
tags=tagsi.replace('\r','').split(',')
day=t[1][0:2]
month=t[1][3:5]
year=t[1][6:10]
uhrzeit=t[5][0:8].replace('.',':')
datumzeit=year+'-'+month+'-'+day+' '+uhrzeit
tag = filename.replace('.csv', '')
print datumzeit
datei2 = pd.read_csv(filename, skiprows=3,index_col=False)
datei2 = datei2.fillna(0).replace([np.inf, -np.inf], np.nan)
datei2 = datei2.fillna(0)
try:
del datei2['Zeit']
except:
pass
try:
del datei2['Kommentar']
except:
pass
try:
datei2['Q-Resorber']=datei2['Q-Resorber']*1000
except KeyError:
pass
zeiti=pd.date_range(datumzeit, periods=len(datei2),freq='S')
datei2.index=zeiti
data = pd.DataFrame(datei2, index=zeiti)
data=data.astype('float64')
#tag=filename.replace('.csv','')
# print data.dtypes
client.write_points(data, messung)
print 'Ok neu: %s'%(filename)
# e = sys.exc_info()[0]
# print "<p>Error: %s</p>%s" % (e,filename)