Change timezone to fixed UTC offset

Avatar of the author Willem Schots
22 Jan, 2024
~2 min.
RSS

If for any reason you explicitly need a consistent offset from UTC you probably want to use “fixed zone” Locations.

“Fixed” in this case means that the resulting timezone will not be influenced by Daylight Saving Time (DST) or other changes.

This snippet will show you how to create a fixed timezone using the time.FixedZone function and then use it to represent a time instant.

Before we dive in, it’s good to know how time.Time values represent time instants. Learn more here.

Change to a specific UTC offset

The time.FixedZone function creates a new time.Location reference with a fixed offset from UTC.

By passing this reference to the t.In(loc *time.Location) method we can create a new time.Time value in that location.

For example:

main.go
package main

import (
	"fmt"
	"time"
)

func main() {
	// t1 represents a time instant in UTC.
	t1 := time.Date(2024, 01, 22, 13, 37, 0, 0, time.UTC)

	// create a timezone 2 hours west of UTC
	westOfUTC := time.FixedZone("UTC-2", -2*60*60)
	// t2 represents the same time instant in UTC-2
	t2 := t1.In(westOfUTC)

	fmt.Println(t1.String())
	fmt.Println(t2.String())
	fmt.Printf("same time instant: %v\n", t1.Equal(t2))
}

Here we initially have a t1 value in the UTC timezone.

We then use time.FixedZone to create a new location called UTC-2. This location is always 2 hours west of UTC.

Finally, we use t1.In(westOfUTC) to create t2. This time.Time value will be in the UTC-2 timezone.

t1 and t2 represent the same time instant, but they will have different clock values. t2 will read 2 hours before t1.

If you run the example you can see that’s the case.

🎓

Subscribe to my Newsletter and Keep Learning.

Gain access to more content and get notified of the latest articles:

I send emails every 1-2 weeks and will keep your data safe. You can unsubscribe at any time.

Hello! I'm the Willem behind willem.dev

I created this website to help new Go developers, I hope it brings you some value! :)

You can follow me on Twitter/X, LinkedIn or Mastodon.

Thanks for reading!