Replies: 1 comment
-
I think the short answer is yes, so I've opened #2707 to discuss as an enhancement. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Whilst considering the PR for #2701, I realized that there are some other painful edge cases in MetPy + METAR parsing. Presently, MetPy requires the user to either:
The issue is that neither of those will work for the situation of a user processing a stream of observations from a system like NOAAPort / LDM IDD. They will have situations where the METAR day, WMO header date, and calendar date may not match.
Should all this business logic / boilerplate be shunted to every user attempting to parse METARs with MetPy?
In python-metar we do have business logic that attempts to help the user out by using the current
utcnow()
value to more accurately guess a timestamp when no month/year is provided to the parsing library.Should a similar approach be added to MetPy?
Beta Was this translation helpful? Give feedback.
All reactions