@ -68,22 +68,29 @@ type Sys struct {
}
func iconToEmoji(icon string) {
var em string
//info. from https://openweathermap.org/weather-conditions
var emoji string
switch icon {
case "Clouds":
em = "☁️"
emoji = "☁️"
case "Drizzle":
em = "🌧️"
emoji = "🌧️"
case "Rain":
case "Snow":
em = "❄️"
emoji = "❄️"
case "Clear":
em = "☀️"
emoji = "☀️"
case "Mist":
emoji = "🌫️"
case "Tornado":
emoji = "🌪️"
case "Thunderstorm":
emoji = "⛈"
default:
emoji = "️❓"
fmt.Print(em)
fmt.Print(emoji)
func printWeather(data WeatherAPI) {