-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Add shorter/simpler weather condition options. #2134
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,3 +59,26 @@ const char* Pinetime::Applications::Screens::Symbols::GetCondition(const Pinetim | |
| return ""; | ||
| } | ||
| } | ||
|
|
||
| const char* Pinetime::Applications::Screens::Symbols::GetSimpleCondition(const Pinetime::Controllers::SimpleWeatherService::Icons icon) { | ||
| switch (icon) { | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::Sun: | ||
| return "Clear"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::CloudsSun: | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::Clouds: | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds: | ||
| return "Clouds"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::CloudShowerHeavy: | ||
| return "Rain"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::CloudSunRain: | ||
| return "Drizzle"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm: | ||
| return "Thunder"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::Snow: | ||
| return "Snow"; | ||
| case Pinetime::Controllers::SimpleWeatherService::Icons::Smog: | ||
| return "Mist"; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This (
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I agree it's not great having to describe fog, mist, dust, smoke etc all with one word. I guess you could go for "Turbid" but that's probably overdoing it a bit... mist is probably the best catch all |
||
| default: | ||
| return ""; | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To me drizzle is quite different from rain showers, it implies fine droplets at a low intensity whereas showers can be heavy but brief (more importantly one justifies an umbrella and the other might not!). I think "Showers" might fit better or just "Rain" even
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, "Drizzle" should be changed to "Rain" in my opinion. I'm not a huge fan of "Shower" for the heavier rain case as I feel like that could be misinterpreted as a light shower as well as a heavy shower... perhaps we could change the GetCondition return to "Downpour" for CloudsShowerHeavy, and make it "Pour" for GetSimpleCondition? Just a suggestion, not sure how everyone would interpret "Pour" though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These conditions are determined directly from the OpenWeather condition codes (which is also what Gadgetbridge uses). The actual API has a higher level of precision (light drizzle vs heavy shower and so on), but the weather apps compatible with Gadgetbridge for the most part only support a handful of the condition codes in the spec.
I would not recommend deviating from this spec, as it would compound the delta between the weather app and gadgetbridge...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the spec link!
I think "Showers" fits this best having looked at what code 03d is used for
It ranges from "light intensity drizzle" to " heavy intensity shower rain", and I think it'd be better to overstate rather than understate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's been a while since I last thought about this PR, and I'm having trouble putting myself into my original mindset. Is the consensus here changing drizzle to showers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would agree with following existing codes unless there's a really good reason to reword.