Web application which is using Web API from OpenWeatherMap. I am using free subscription which contains:
- Current weather
- 5 days every 3 hours forecast
- UV index
- Weather maps
- Weather alerts
This web application is with ASP.NET Core 2.2 and EF Core.
WeatherApp is still under development.
To load the database you should go to SQL_scripts folder. You will see 2 SQL script files:
- WeatherApp-createObjects.sql - this file is for creating tables and schemas
- WeatherApp-loadData.sql - this file is for inserting data into tables
Connect to the SQL Server Management Studio by choosing the server name, user name and password.
Add new Database by clicking on Databases folder in Object Explorer. Name new database as WeatherApp. Click Ok to create new database.
From the File menu, choose Open and then File to open sql script. Select the WeatherApp-createObjects.sql and click open. Click Execute option to execute the SQL script.
Repeat step 3 but now choose WeatherApp-loadData.sql file. Click Execute to exectute SQL script.