
Last chance! 50% off unlimited learning
Sale ends in
stri_timezone_list(region = NA_character_, offset = NA_integer_)
NA
for all regionsNA
for all offsetsoffset
and region
are NA
(the default), then
all time zones are returned. Otherwise,
only time zone identifiers with a given raw offset from GMT
and/or time zones corresponding to a given region are provided.
Note that the effect of daylight savings time is ignored.A time zone represents an offset applied to the Greenwich Mean Time (GMT) to obtain local time (Universal Coordinated Time, or UTC, is similar, but not precisely identical, to GMT; in ICU the two terms are used interchangeably since ICU does not concern itself with either leap seconds or historical behavior). The offset might vary throughout the year, if daylight savings time (DST) is used, or might be the same all year long. Typically, regions closer to the equator do not use DST. If DST is in use, then specific rules define the point at which the offset changes and the amount by which it changes.
If DST is observed, then three additional bits of information are needed:
ICU 4.8 Time Zone Names. http://site.icu-project.org/design/formatting/timezone/icu-4-8-time-zone-names
ICU TimeZone classes -- ICU User Guide, http://userguide.icu-project.org/datetime/timezone
Date/Time Services -- ICU User Guide, http://userguide.icu-project.org/datetime
stri_datetime_add
,
stri_datetime_create
,
stri_datetime_fields
,
stri_datetime_format
,
stri_datetime_fstr
,
stri_datetime_now
,
stri_datetime_symbols
,
stri_timezone_get
,
stri_timezone_info
Other timezone: stri_timezone_get
,
stri_timezone_info
stri_timezone_list()
stri_timezone_list(offset=1)
stri_timezone_list(offset=5.5)
stri_timezone_list(offset=5.75)
stri_timezone_list(region="PL")
stri_timezone_list(region="US", offset=-10)
# Fetch info on all time zones
do.call(rbind.data.frame,
lapply(stri_timezone_list(), function(tz) stri_timezone_info(tz)))
Run the code above in your browser using DataLab