content/flux/v0/stdlib/timezone/fixed.md
timezone.fixed() returns a location record with a fixed offset.
(offset: A) => {zone: string, offset: A}
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
({{< req >}}) Fixed duration for the location offset. This duration is the offset from UTC.
import "timezone"
timezone.fixed(offset: -8h)// Returns {offset: -8h, zone: "UTC"}
import "timezone"
// This results in midnight at 00:00:00-08:00 on any day.
option location = timezone.fixed(offset: -8h)
[!Note] The
locationoption only affects boundaries used for windowing, specifically around time shifts like daylight savings. It does not change timestamps in the_timecolumn, which are always UTC.