type ForecastSys …
type Temperature …
type City …
type ForecastWeather …
type ForecastWeatherJson …
type ForecastWeatherData …
func NewForecast(forecastType, unit, lang, key string, options ...Option) (*ForecastWeatherData, error) { … }
func (f *ForecastWeatherData) DailyByName(location string, days int) error { … }
func (f *ForecastWeatherData) DailyByCoordinates(location *Coordinates, days int) error { … }
func (f *ForecastWeatherData) DailyByID(id, days int) error { … }
func (f *ForecastWeatherData) DailyByZip(zip int, countryCode string, days int) error { … }
func (f *ForecastWeatherData) DailyByZipcode(zip string, countryCode string, days int) error { … }