Show temperature at your location (one value for current temperature, update each hour, another - 24 hours predictions for present day) as well as your city, country, and which day is today.
As an experimental option, you could see predictions for weather temperatures for the next 1, 7, 10 days(predict temperature at 12:00 AM in your city).
If your city not in DB, you will see all predictions are equal to temperature, which you got by the first visit. Each day for each available city in the DB script will update the parameter of temperature. And for each city script will create a machine learning model to predict temperature for the next 1, 7, 10 days.
From 1 to 10 observation LinearRegression model will be used for predictions in your city. After 10 days, a more complex RNN model will be used for predictions in your city.
Also (from version 2.3.0) added another ML model, which make prediction for temperatures for each of 24 hours for one day (chose LinearRegression) and update temperatures by hour each hour.
Code for backend part host on Google AppEngine. After sending the request, you should receive the result within one minute maximum.
If you want to know how it's working under the hood by looking into the code - welcome to visit github repo for backend(https://github.com/Oysiyl/Weather_app) and frontend(https://github.com/Oysiyl/simple-weather-app) parts
This snap hasn't been updated in a while. It might be unmaintained and have stability or security issues.
Thank you for your report. Information you provided will help us investigate further.
There was an error while sending your report. Please try again later.
Snaps are applications packaged with all their dependencies to run on all popular Linux distributions from a single build. They update automatically and roll back gracefully.
Snaps are discoverable and installable from the Snap Store, an app store with an audience of millions.
Snap can be installed from the command line on openSUSE Leap 15.x and Tumbleweed.
You need first add the snappy repository from the terminal. Choose the appropriate command depending on your installed openSUSE flavor.
Tumbleweed:
sudo zypper addrepo --refresh https://download.opensuse.org/repositories/system:/snappy/openSUSE_Tumbleweed snappy
Leap 15.x:
sudo zypper addrepo --refresh https://download.opensuse.org/repositories/system:/snappy/openSUSE_Leap_15.6 snappy
If needed, Swap out openSUSE_Leap_15. for, openSUSE_Leap_16.0 if you’re using a different version of openSUSE.
With the repository added, import its GPG key:
sudo zypper --gpg-auto-import-keys refresh
Finally, upgrade the package cache to include the new snappy repository:
sudo zypper dup --from snappy
Snap can now be installed with the following:
sudo zypper install snapd
You then need to either reboot, logout/login or source /etc/profile to have /snap/bin added to PATH.
Additionally, enable and start both the snapd and the snapd.apparmor services with the following commands:
sudo systemctl enable --now snapd
sudo systemctl enable --now snapd.apparmor
To install simple-weather-app, simply use the following command:
sudo snap install simple-weather-app --edge
Browse and find snaps from the convenience of your desktop using the snap store snap.
Interested to find out more about snaps? Want to publish your own application? Visit snapcraft.io now.