-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.41 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Python API Challenge</title>
</head>
<body>
<h1>Python API Challenge</h1>
<hr>
<p>
The purpose of this project was to explore the use of APIs to gather data via the use of Python Libraries.
It focused on using the OpenWeatherMap and Google Places APIs to gather meteorological and locational data of a representative
sample of cities from around the globe.
</p>
<p>
The first section, entitled WeatherPy, used a series of API calls to OpenWeatherMap to gather data on the peak temperature,
humidity, cloudiness, and wind speed of a random selection of cities worldwide and attempt to determine any correlation
between any of those 4 factors and city latitude. The only discernable trend discovered was that max daily temperature
correlates strongly with closeness to the equator.
</p>
<p>
The second section, VacationPy, used calls to the Google Places APIs to select out cities from the previous list which had
hotels within a certain range of the city's coordinates that fit a set of weather criteria and create a marker layer for a
gmaps figure.
</p>
<hr>
<h2>VactionPy Map Image</h2>
<img src="https://github.com/kellnergp/python-api-challenge/blob/main/VacationPy/map.png?raw=true" alt="Final Map Screenshot" />
</body>
</html>