You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "D:\science_tech\Code_git_clone\besttracks\mytest.py", line 7, in
print(TCs_CMA)
File "D:\science_tech\Code_git_clone\besttracks\besttracks\core.py", line 683, in repr
max(yrs), self.total_duration()))
File "D:\science_tech\Code_git_clone\besttracks\besttracks\core.py", line 521, in total_duration
return sum([p.duration() for p in self.particles])
TypeError: unsupported operand type(s) for +: 'int' and 'Timedelta'
def total_duration(self):
"""
Get total duration of this ParticleSet in unit of days.
"""
return sum([p.duration() for p in self.particles])
def duration(self):
"""
Get duration (days) of this particle.
Returns
----------
re: float
Duration of this particle in unit of day
"""
duration = np.ptp(self.records['TIME'])
return pd.to_timedelta([duration]).astype('timedelta64[h]')[0] / 24.0
The text was updated successfully, but these errors were encountered:
Traceback (most recent call last):
File "D:\science_tech\Code_git_clone\besttracks\mytest.py", line 7, in
print(TCs_CMA)
File "D:\science_tech\Code_git_clone\besttracks\besttracks\core.py", line 683, in repr
max(yrs), self.total_duration()))
File "D:\science_tech\Code_git_clone\besttracks\besttracks\core.py", line 521, in total_duration
return sum([p.duration() for p in self.particles])
TypeError: unsupported operand type(s) for +: 'int' and 'Timedelta'
def total_duration(self):
"""
Get total duration of this ParticleSet in unit of days.
"""
return sum([p.duration() for p in self.particles])
def duration(self):
"""
Get duration (days) of this particle.
The text was updated successfully, but these errors were encountered: