Replies: 1 comment 8 replies
-
It effects our own applications, too, like alerts.weather.gov. This formatting comes straight from the weather offices, and the office would have to send multiple versions of the same data for weather-ready services that need the formatting. Reconciling this is long overdue, but will take a coordinated effort across the organization. The API is getting a lot of resources for improvements, I'll check if this is on their list. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the alerts the api provides, we get a ton of useful information, in a standardized, machine-readable format. This is amazing, and extremely useful for creating software that can present many types of events in a consistent manner.
Unfortunately, the documentation of this standard only applies to the structure of the data, not the structure of the text in the fields of the data. Particularly, the
headline
,description
, andinstruction
fields seem inconsistent in formatting from alert type to alert type, and from forecast office to forecast office. On it's own, this isn't a big issue. However, as these messages formats are designed for presentation on TV, they are pre-formatted with newlines in the middle of sentences (and sometimes words), and designed to be displayed in monospace font.This creates usability issues:
Example
By establishing a standard (or documenting an existing one), it would allow developers to parse and re-display the messages in nicer, easier to read formats than the raw mono-text format we have currently.
Beta Was this translation helpful? Give feedback.
All reactions