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
"allow_time_extrapolation and time_periodic cannot be used together. allow_time_extrapolation is set to False",
FieldSetWarning,
stacklevel=2,
)
self.allow_time_extrapolation=False
Thoughts on just raising a ValueError instead? Its incorrect usage of the API, and I think explicitly failing would be nicer than implicitly working under different settings
The text was updated successfully, but these errors were encountered:
Yes, good point that a ValueError would be more appropriate and cleaner here; the code then also don't need to implicitly decide that time_periodic is a more important setting than allow_time_interpolation
We have some warnings along the lines of
Parcels/parcels/field.py
Lines 232 to 238 in 5fff42c
Thoughts on just raising a ValueError instead? Its incorrect usage of the API, and I think explicitly failing would be nicer than implicitly working under different settings
The text was updated successfully, but these errors were encountered: