go-meteologix/pressure.go
Winni Neessen 513d7b863f
Refine DateTime function description in pressure.go
The previous description of the DateTime function in pressure.go was misleading as it implied that the function would return a boolean. The function actually returns the date and time of a Pressure reading. The description has therefore been updated for clarity and accuracy.
2023-06-27 18:59:13 +02:00

48 lines
1 KiB
Go

// SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
//
// SPDX-License-Identifier: MIT
package meteologix
import (
"fmt"
"math"
"time"
)
// Pressure is a type wrapper of an WeatherData for holding pressure
// values in WeatherData
type Pressure WeatherData
// IsAvailable returns true if an Pressure value was
// available at time of query
func (p Pressure) IsAvailable() bool {
return !p.na
}
// DateTime returns the date and time of the Pressure reading
func (p Pressure) DateTime() time.Time {
return p.dt
}
// String satisfies the fmt.Stringer interface for the Pressure type
func (p Pressure) String() string {
return fmt.Sprintf("%.1fhPa", p.fv)
}
// Source returns the Source of Pressure
// If the Source is not available it will return SourceUnknown
func (p Pressure) Source() Source {
return p.s
}
// Value returns the float64 value of an Pressure
// If the Pressure is not available in the WeatherData
// Vaule will return math.NaN instead.
func (p Pressure) Value() float64 {
if p.na {
return math.NaN()
}
return p.fv
}