Python-Api-Study-on-Weather

Python API - What’s the Weather Like?

Background

Whether financial, political, or social – data’s true power lies in its ability to answer questions definitively. So let’s answer a fundamental question: “What’s the weather like as we approach the equator?”

Equator

Part I - WeatherPy

In this example, I will be creating a Python script to visualise the weather of 500+ cities across the world of varying distance from the equator. To accomplish this, I will be utilising a simple Python library, the OpenWeatherMap API to create a representative model of weather across world cities.

First requirement is to create a series of scatter plots to showcase the following relationships:

Second requirement is to run linear regression on each relationship, only this time separating them into Northern Hemisphere (greater than or equal to 0 degrees latitude) and Southern Hemisphere (less than 0 degrees latitude):

Final notebook will show:

Part II - VacationPy

Now let’s work with weather data to plan future vacations. I’ll use jupyter-gmaps and the Google Places API for this part of the assignment.