README
tz
Deprecated: Use time/tzdata available in Go 1.15. time/tzdata does not work exactly the same as it defaults to local tzdata when available where as this package always uses embedded data. This package will be maintained until Go 1.16 is released.
Predictably load time.Location
s regardless of operating system.
import "4d63.com/tz"
loc, err := tz.LoadLocation("Australia/Sydney")
Docs and examples at https://godoc.org/4d63.com/tz.
This package exists because of https://github.com/golang/go/issues/21881.
Documentation
Overview ¶
Package tz contains time zone info so that you can predictably load Locations regardless of the locations available on the locally running operating system.
The stdlib time.LoadLocation function loads timezone data from the operating system or from zoneinfo.zip in a local Go installation. Both of these are often missing from some operating systems, especially Windows.
This package has the zoneinfo.zip from Go embedded into the package so that queries to load a location always return the same data regardless of operating system.
This package exists because of https://github.com/golang/go/issues/21881.
Index ¶
Examples ¶
Constants ¶
Variables ¶
Functions ¶
func LoadLocation ¶
LoadLocation loads timezone data from embedded tzinfo and does not rely on the operating system providing tzdata.
Same as time.LoadLocation if name is "" or "UTC", time.UTC is returned, and if name is "Local", time.Local is returned.
Returns an error if the name is unknown.