Weather Forcasting
Weather Forcasting
Weather Forecasting is a web application that uses a weather API powered by Weather.io. This application allows the user to type in a city, state, country, and measurement unit, and then generates the current weather in the specified units for that area. It also generates a 7 day forecast. This application was completely developed in Visual Studio Code using a combination of html, css, and Javascript. The application serializes the user input and then calls an api using .getJSON. Within the API call it uses the serialized data which includes a hidden API key to generate the exact data that the user would like from the database. I then have the data appended to the html file within a table.
API Call:
$.getJSON(‘https://api.weatherbit.io/v2.0/current’,the_serialized_data, function(data)