All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
16 lines
467 B
Go
16 lines
467 B
Go
package core
|
|
|
|
import "gitea.maximumdirect.net/ejr/weatherfeeder/model"
|
|
|
|
// CurrentConditions is an averaged current-conditions aggregate over a recent window.
|
|
type CurrentConditions struct {
|
|
TemperatureC *float64
|
|
ApparentTemperatureC *float64
|
|
DewpointC *float64
|
|
RelativeHumidityPercent *float64
|
|
WindSpeedKmh *float64
|
|
WindDirectionDegrees *float64
|
|
ConditionCode model.WMOCode
|
|
IsDay *bool
|
|
}
|