xref: /freebsd/contrib/tzdata/etcetera (revision 2289da421684bce31f2c64c6e0843864c8824a63)
11315084cSEdwin Groothuis# <pre>
21315084cSEdwin Groothuis# This file is in the public domain, so clarified as of
31315084cSEdwin Groothuis# 2009-05-17 by Arthur David Olson.
41315084cSEdwin Groothuis
51315084cSEdwin Groothuis# These entries are mostly present for historical reasons, so that
61315084cSEdwin Groothuis# people in areas not otherwise covered by the tz files could "zic -l"
71315084cSEdwin Groothuis# to a time zone that was right for their area.  These days, the
81315084cSEdwin Groothuis# tz files cover almost all the inhabited world, and the only practical
91315084cSEdwin Groothuis# need now for the entries that are not on UTC are for ships at sea
101315084cSEdwin Groothuis# that cannot use POSIX TZ settings.
111315084cSEdwin Groothuis
121315084cSEdwin GroothuisZone	Etc/GMT		0	-	GMT
131315084cSEdwin GroothuisZone	Etc/UTC		0	-	UTC
141315084cSEdwin GroothuisZone	Etc/UCT		0	-	UCT
151315084cSEdwin Groothuis
161315084cSEdwin Groothuis# The following link uses older naming conventions,
171315084cSEdwin Groothuis# but it belongs here, not in the file `backward',
18*2289da42SEdwin Groothuis# as functions like gmtime load the "UTC" file to handle leap seconds properly.
191315084cSEdwin Groothuis# We want this to work even on installations that omit the other older names.
20*2289da42SEdwin GroothuisLink	Etc/UTC				UTC
211315084cSEdwin Groothuis
221315084cSEdwin GroothuisLink	Etc/UTC				Etc/Universal
231315084cSEdwin GroothuisLink	Etc/UTC				Etc/Zulu
241315084cSEdwin Groothuis
251315084cSEdwin GroothuisLink	Etc/GMT				Etc/Greenwich
261315084cSEdwin GroothuisLink	Etc/GMT				Etc/GMT-0
271315084cSEdwin GroothuisLink	Etc/GMT				Etc/GMT+0
281315084cSEdwin GroothuisLink	Etc/GMT				Etc/GMT0
291315084cSEdwin Groothuis
301315084cSEdwin Groothuis# We use POSIX-style signs in the Zone names and the output abbreviations,
311315084cSEdwin Groothuis# even though this is the opposite of what many people expect.
321315084cSEdwin Groothuis# POSIX has positive signs west of Greenwich, but many people expect
331315084cSEdwin Groothuis# positive signs east of Greenwich.  For example, TZ='Etc/GMT+4' uses
34c26a5802SEdwin Groothuis# the abbreviation "GMT+4" and corresponds to 4 hours behind UT
351315084cSEdwin Groothuis# (i.e. west of Greenwich) even though many people would expect it to
36c26a5802SEdwin Groothuis# mean 4 hours ahead of UT (i.e. east of Greenwich).
371315084cSEdwin Groothuis#
38b6ef626aSEdwin Groothuis# In the draft 5 of POSIX 1003.1-200x, the angle bracket notation allows for
391315084cSEdwin Groothuis# TZ='<GMT-4>+4'; if you want time zone abbreviations conforming to
401315084cSEdwin Groothuis# ISO 8601 you can use TZ='<-0400>+4'.  Thus the commonly-expected
411315084cSEdwin Groothuis# offset is kept within the angle bracket (and is used for display)
421315084cSEdwin Groothuis# while the POSIX sign is kept outside the angle bracket (and is used
431315084cSEdwin Groothuis# for calculation).
441315084cSEdwin Groothuis#
451315084cSEdwin Groothuis# Do not use a TZ setting like TZ='GMT+4', which is four hours behind
461315084cSEdwin Groothuis# GMT but uses the completely misleading abbreviation "GMT".
471315084cSEdwin Groothuis
481315084cSEdwin Groothuis# Earlier incarnations of this package were not POSIX-compliant,
491315084cSEdwin Groothuis# and had lines such as
501315084cSEdwin Groothuis#		Zone	GMT-12		-12	-	GMT-1200
511315084cSEdwin Groothuis# We did not want things to change quietly if someone accustomed to the old
521315084cSEdwin Groothuis# way does a
531315084cSEdwin Groothuis#		zic -l GMT-12
541315084cSEdwin Groothuis# so we moved the names into the Etc subdirectory.
551315084cSEdwin Groothuis
561315084cSEdwin GroothuisZone	Etc/GMT-14	14	-	GMT-14	# 14 hours ahead of GMT
571315084cSEdwin GroothuisZone	Etc/GMT-13	13	-	GMT-13
581315084cSEdwin GroothuisZone	Etc/GMT-12	12	-	GMT-12
591315084cSEdwin GroothuisZone	Etc/GMT-11	11	-	GMT-11
601315084cSEdwin GroothuisZone	Etc/GMT-10	10	-	GMT-10
611315084cSEdwin GroothuisZone	Etc/GMT-9	9	-	GMT-9
621315084cSEdwin GroothuisZone	Etc/GMT-8	8	-	GMT-8
631315084cSEdwin GroothuisZone	Etc/GMT-7	7	-	GMT-7
641315084cSEdwin GroothuisZone	Etc/GMT-6	6	-	GMT-6
651315084cSEdwin GroothuisZone	Etc/GMT-5	5	-	GMT-5
661315084cSEdwin GroothuisZone	Etc/GMT-4	4	-	GMT-4
671315084cSEdwin GroothuisZone	Etc/GMT-3	3	-	GMT-3
681315084cSEdwin GroothuisZone	Etc/GMT-2	2	-	GMT-2
691315084cSEdwin GroothuisZone	Etc/GMT-1	1	-	GMT-1
701315084cSEdwin GroothuisZone	Etc/GMT+1	-1	-	GMT+1
711315084cSEdwin GroothuisZone	Etc/GMT+2	-2	-	GMT+2
721315084cSEdwin GroothuisZone	Etc/GMT+3	-3	-	GMT+3
731315084cSEdwin GroothuisZone	Etc/GMT+4	-4	-	GMT+4
741315084cSEdwin GroothuisZone	Etc/GMT+5	-5	-	GMT+5
751315084cSEdwin GroothuisZone	Etc/GMT+6	-6	-	GMT+6
761315084cSEdwin GroothuisZone	Etc/GMT+7	-7	-	GMT+7
771315084cSEdwin GroothuisZone	Etc/GMT+8	-8	-	GMT+8
781315084cSEdwin GroothuisZone	Etc/GMT+9	-9	-	GMT+9
791315084cSEdwin GroothuisZone	Etc/GMT+10	-10	-	GMT+10
801315084cSEdwin GroothuisZone	Etc/GMT+11	-11	-	GMT+11
811315084cSEdwin GroothuisZone	Etc/GMT+12	-12	-	GMT+12
82