you can also convert data by requesting it in imperial format from the api like so....
`fetch("https://api.openweathermap.org/data/2.5/weather?q=salt lake city&units=imperial") .then(res => res.json()) .then(data => console.log(data))
`