-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
executable file
·106 lines (81 loc) · 2.55 KB
/
main.go
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package main
import (
"fmt"
"io/ioutil"
"net/http"
"time"
"github.com/Jeffail/gabs"
"errors"
)
type Coordinate struct {
Latitude float64
Longitude float64
}
const weatherCityUrlTemplate string = "https://www.metaweather.com/api//location/search/?lattlong=%f,%f"
const weatherUrlTemplate string = "https://www.metaweather.com/api/location/%d/%d/%d/%d"
const cityUrls string = "https://public.opendatasoft.com/api/records/1.0/search/?dataset=1000-largest-us-cities-by-population-with-geographic-coordinates&facet=city&facet=state&sort=population&rows=100"
func main() {
cityData, err := doGetRequest(cityUrls)
if err != nil {
panic(err)
}
cityDataParsed, _ := gabs.ParseJSON(cityData)
cities, _ := cityDataParsed.Path("records").Children()
cityCoordinates := [100]Coordinate{}
temperatures := make([]float64, 0)
for i, city := range cities {
coord := city.Path("fields.coordinates").Data().([]interface{})
cityCoordinates[i] = Coordinate{
Latitude: coord[0].(float64),
Longitude: coord[1].(float64),
}
temp, err := getCurrentTemperatureForCoordinates(cityCoordinates[i])
if nil != err {
fmt.Printf("Error getting temperature data for city: %s\n", err)
continue
}
temperatures = append(temperatures, temp)
}
// Compute mean
var total float64
for _, temp := range temperatures {
total += temp
}
mean := total / float64(len(temperatures))
fmt.Printf("~~~~~~~~\nmean: %f\n", mean)
}
func getCurrentTemperatureForCoordinates(coord Coordinate) (result float64, err error) {
weatherCityData, err := doGetRequest(fmt.Sprintf(weatherCityUrlTemplate, coord.Latitude, coord.Longitude))
if err != nil {
panic(err)
}
weatherCitiesParsed, _ := gabs.ParseJSON(weatherCityData)
weatherCityWoeids := weatherCitiesParsed.Path("woeid").Data().([]interface{})
weatherURLFormatted := fmt.Sprintf(weatherUrlTemplate, int64(weatherCityWoeids[0].(float64)), time.Now().Year(),
int(time.Now().Month()), time.Now().Day())
weatherData, err := doGetRequest(weatherURLFormatted)
if err != nil {
return result, err
}
weatherDataParsed, _ := gabs.ParseJSON(weatherData)
tempNode := weatherDataParsed.Path("the_temp").Data().([]interface{})[0]
if tempNode == nil {
err = errors.New("no temp data found")
return result, err
}
result = tempNode.(float64)
fmt.Printf("temp: %f\n", result)
return result, err
}
func doGetRequest(url string) ([]byte, error) {
res, err := http.Get(url)
if err != nil {
return nil, err
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
return body, nil
}