将日期时间与日期时间范围进行比较

时间:2016-09-09 21:20:53

标签: python csv datetime

我对使用Python进行编码相当陌生,到目前为止,由于本网站提供了大量资源,我们已经成功解决了大多数问题。

我正在编写一个程序,它接受多个.csv文件,将每个初始文件中的数据剥离到不同类型的日志文件中,并将这些不同类型的日志写入自己的.csv。

现在我已经删除了文件我需要翻阅文件A,并且对于每一行,将日期时间和搜索文件B用于相同的日期时间,并将相关数据与初始数据一起复制到新列中。这很好很简单,如果A == B for循环,那么这些日志中的每一个都是由不同的计算机编写的,这些计算机的实时时钟随时间漂移。 所以我真正想要的是说从文件A中抽出时间并在文件B +/- 30秒内搜索相应的时间,这是我被困住的地方,并且在过去的3/4小时内已经在圈内锣! / p>

目前,当我运行以下代码提取时,我得到以下内容:

---> 35 if(timecode - margin)< = datetime.datetime.date(ssptime)< =(timecode + margin):

TypeError:无法将datetime.datetime与datetime.date进行比较

提前致谢!

    import matplotlib.pyplot as plt  # external function need from inside Canopy
import os # external functions
import re # external functions
import matplotlib.patches as mpatches
import csv
import pandas as pd
import datetime


addrbase = "23"
csvnum = [1,2,3,4,5] # CSV number
csvnum2 = [1,2,3,4,5]
senstyp = ['BSL'] #Sensor Type
Beacons = 5





outfile = open('C:\Users\xxx\Canopy\2303_AVG2.csv', 'w') #File to write to
outcsv = csv.writer(outfile, lineterminator='\n')

with open('C:\Users\xxx\Canopy\2303_AVG.csv', 'r') as f: #File read vairable f
    csvread = csv.reader(f, delimiter=',') #Stores the data from file location f in csvread using the delimiter of','
    for row in csvread: #sets up a for loop using the data in csvread
        timecode = datetime.datetime.strptime(row[1],'%Y/%m/%d  %H:%M:%S')#BSL time to datetime.datetime
        margin = datetime.timedelta(seconds = 30)

        with open('C:\Users\xxx\Canopy\2301_SSP_AVG.csv', 'r') as f: #File read vairable f
            csvreadssp = csv.reader(f, delimiter=',')
            for line in csvreadssp:
                ssptime = datetime.datetime.strptime(row[2],'%Y/%m/%d  %H:%M:%S')#
                print ssptime
                if (timecode - margin) <= datetime.datetime.date(ssptime) <= (timecode + margin):  
                    relssp = line[6]
                    print "Time: " + str(timecode) + " SSP: " + str(relssp)
        #try:
                    row.append(relssp) #Calculates the one way travel time of the range and adds a new column with the data
                    outcsv.writerow(row) # Writes file
        #except ValueError: #handles errors from header files
        #    row.append(0) #handles errors from header files
outfile.flush()        
outfile.close()    
print "done"  

1 个答案:

答案 0 :(得分:2)

您无法将代表特定时间点的construct与代表一整天的datetime进行比较。该日期应该代表什么时间?

date已经是ssptime(因为这是datetime返回的内容) - 为什么要在其上调用strptime?这应该有效:

date

由于您的时间都达到了第二精度,您也可以这样做:

if (timecode - margin) <= ssptime <= (timecode + margin):  

我不确定哪个更清楚 - 我可能会倾向于第二个。