gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 03:42:11 24 4
gpt4 key购买 nike

我对 Python 编码还很陌生,到目前为止,我已经通过谷歌搜索解决了大多数问题,这要归功于该网站上提供的大量资源。

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

现在我已经剥离了文件,我需要滚动文件 A,并为每一行获取日期时间并搜索文件 B 的相同日期时间,并将相关数据与初始数据一起复制到新列中。使用 if A == B for 循环,这很好很简单,但是……每个日志都是由不同的计算机编写的,这些计算机的实时时钟会随着时间的推移而漂移。所以我真正想说的是从文件 A 中取出时间并在文件 B +/- 30 秒中搜索相应的时间,这就是我被困住的地方,并且在过去的 3/4 小时里一直在兜圈子!

当前,当我运行以下代码摘录时,我得到以下内容:

---> 35 if (时间码 - 边距) <= datetime.datetime.date(ssptime) <= (时间码 + 边距):

类型错误:无法将 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"

最佳答案

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

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

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

由于您的时间都精确到秒,您也可以这样做:

if abs((ssptime - timecode).total_seconds()) < margin:

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

关于python - 将日期时间与日期时间范围进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39419869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com