Skip to content

Latest commit

 

History

History
executable file
·
24 lines (17 loc) · 1.23 KB

File metadata and controls

executable file
·
24 lines (17 loc) · 1.23 KB

##Weather Forecast Project Spring Boot Application which gets the weather forecast of a specific city. The Application expose API /data to retrieve the averages of the following 3 Days. Api Doc must be retrieved through the Swagger Documentation exposed at the url /swagger-ui.html#/

The weather forecasts are calculated from 6:00 to 18:00 for daylight hours, from 18:00 to 6:00 for night hours. For more accurate data the calculation of the average temperature for night / day hours starts from the next time window. Example a call made at 16:00 will be calculated from 18:00 up to the next 3 days.

The weather data are requested at the web service https://openweathermap.org/, parameters and API KEY must be changed on the application.properties file.

Minimal Requirements

For running the application you must have jdk 8 installed and set the java environment variable in the classpath.

##Running Instruction