我正在尝试在时间戳和应变数据之间进行插值。 与巴拿马时间戳记的时差为60秒(1分钟) 所以我创建了另一条时间线,其时间增量为60秒
现在我从插值中得到零个插值列表 应变是每1分钟采样一次 df ['TIMESTAMP']的采样日期如下
5/21/2013 9:59
def toTimestamp(d):
return calendar.timegm(d.timetuple())
timestamp = np.array([toTimestamp(df['TIMESTAMP'][d]) for d in range(0,df['TIMESTAMP'].count() )])
dt = 60
newt = dt*np.arange(timestamp.shape[0])
ydatanew = np.interp(newt, timestamp, strain)