Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors caused by times not convertible to datetime #5237

Open
stephenworsley opened this issue Apr 5, 2023 · 2 comments
Open

Errors caused by times not convertible to datetime #5237

stephenworsley opened this issue Apr 5, 2023 · 2 comments

Comments

@stephenworsley
Copy link
Contributor

stephenworsley commented Apr 5, 2023

馃悰 Bug Report

Time coordinates can sometimes have units which will cause an error when you try and convert thier points to datetimes. For example, when the units are in "years since date" format. This causes an error when plotting against this time axis or when printing a cube with a scalar coordinate of this form. In such cases, it might be appropriate to represent the raw points (and raising a warning) rather than failing outright.

This could potentially by solved by adding try/except in places like here:

iris/lib/iris/coords.py

Lines 2166 to 2169 in b2b4e3b

if self.units.is_time_reference():
point = self.units.num2date(point)
if bound is not None:
bound = self.units.num2date(bound)

@acchamber
Copy link
Contributor

bug_ncdump.txt

ncdump of file in question that gives this error

@rcomer
Copy link
Member

rcomer commented Apr 5, 2023

Think SciTools/cf-units#279 may be relevant here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: No status
Development

No branches or pull requests

3 participants