Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type MonthWeather ¶
type MonthWeather struct {
Good float64 `json:"g"`
Bad float64 `json:"b"`
// contains filtered or unexported fields
}
MonthWeather All the data for the entire month is condensed down to MonthWeather
type Node ¶
type Node struct {
ShortZip []int `json:"z,omitempty"`
City string `json:"c,omitempty"`
State string `json:"s,omitempty"`
Weather *SmallWeather `json:"w,omitempty"`
// contains filtered or unexported fields
}
Node A spot on the final map that is exported to a json file
type SmallWeather ¶
type SmallWeather struct {
Months *[24]int `json:"m,omitempty"`
// contains filtered or unexported fields
}
type Station ¶
type Station struct {
Weather TotalWeather `json:"w"`
// contains filtered or unexported fields
}
Station Contains one station with weather and location
type TotalWeather ¶
type TotalWeather struct {
Months map[string]MonthWeather `json:"m"`
// contains filtered or unexported fields
}
TotalWeather All the weather for a year
Click to show internal directories.
Click to hide internal directories.