columbus3 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/README.textile +62 -0
  3. data/bower_components/flot/.bower.json +19 -0
  4. data/bower_components/flot/.gitignore +3 -0
  5. data/bower_components/flot/.travis.yml +3 -0
  6. data/bower_components/flot/API.md +1498 -0
  7. data/bower_components/flot/CONTRIBUTING.md +98 -0
  8. data/bower_components/flot/FAQ.md +75 -0
  9. data/bower_components/flot/LICENSE.txt +22 -0
  10. data/bower_components/flot/Makefile +12 -0
  11. data/bower_components/flot/NEWS.md +1026 -0
  12. data/bower_components/flot/PLUGINS.md +143 -0
  13. data/bower_components/flot/README.md +110 -0
  14. data/bower_components/flot/component.json +8 -0
  15. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-1.json +4 -0
  16. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-2.json +4 -0
  17. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-3.json +4 -0
  18. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-4.json +4 -0
  19. data/bower_components/flot/examples/ajax/data-eu-gdp-growth-5.json +4 -0
  20. data/bower_components/flot/examples/ajax/data-eu-gdp-growth.json +4 -0
  21. data/bower_components/flot/examples/ajax/data-japan-gdp-growth.json +4 -0
  22. data/bower_components/flot/examples/ajax/data-usa-gdp-growth.json +4 -0
  23. data/bower_components/flot/examples/ajax/index.html +173 -0
  24. data/bower_components/flot/examples/annotating/index.html +87 -0
  25. data/bower_components/flot/examples/axes-interacting/index.html +97 -0
  26. data/bower_components/flot/examples/axes-multiple/index.html +77 -0
  27. data/bower_components/flot/examples/axes-time-zones/date.js +893 -0
  28. data/bower_components/flot/examples/axes-time-zones/index.html +114 -0
  29. data/bower_components/flot/examples/axes-time-zones/tz/africa +1181 -0
  30. data/bower_components/flot/examples/axes-time-zones/tz/antarctica +413 -0
  31. data/bower_components/flot/examples/axes-time-zones/tz/asia +2717 -0
  32. data/bower_components/flot/examples/axes-time-zones/tz/australasia +1719 -0
  33. data/bower_components/flot/examples/axes-time-zones/tz/backward +117 -0
  34. data/bower_components/flot/examples/axes-time-zones/tz/etcetera +81 -0
  35. data/bower_components/flot/examples/axes-time-zones/tz/europe +2856 -0
  36. data/bower_components/flot/examples/axes-time-zones/tz/factory +10 -0
  37. data/bower_components/flot/examples/axes-time-zones/tz/iso3166.tab +276 -0
  38. data/bower_components/flot/examples/axes-time-zones/tz/leapseconds +100 -0
  39. data/bower_components/flot/examples/axes-time-zones/tz/northamerica +3235 -0
  40. data/bower_components/flot/examples/axes-time-zones/tz/pacificnew +28 -0
  41. data/bower_components/flot/examples/axes-time-zones/tz/solar87 +390 -0
  42. data/bower_components/flot/examples/axes-time-zones/tz/solar88 +390 -0
  43. data/bower_components/flot/examples/axes-time-zones/tz/solar89 +395 -0
  44. data/bower_components/flot/examples/axes-time-zones/tz/southamerica +1711 -0
  45. data/bower_components/flot/examples/axes-time-zones/tz/systemv +38 -0
  46. data/bower_components/flot/examples/axes-time-zones/tz/yearistype.sh +38 -0
  47. data/bower_components/flot/examples/axes-time-zones/tz/zone.tab +441 -0
  48. data/bower_components/flot/examples/axes-time/index.html +137 -0
  49. data/bower_components/flot/examples/background.png +0 -0
  50. data/bower_components/flot/examples/basic-options/index.html +91 -0
  51. data/bower_components/flot/examples/basic-usage/index.html +57 -0
  52. data/bower_components/flot/examples/canvas/index.html +75 -0
  53. data/bower_components/flot/examples/categories/index.html +64 -0
  54. data/bower_components/flot/examples/examples.css +97 -0
  55. data/bower_components/flot/examples/image/hs-2004-27-a-large-web.jpg +0 -0
  56. data/bower_components/flot/examples/image/index.html +69 -0
  57. data/bower_components/flot/examples/index.html +80 -0
  58. data/bower_components/flot/examples/interacting/index.html +118 -0
  59. data/bower_components/flot/examples/navigate/arrow-down.gif +0 -0
  60. data/bower_components/flot/examples/navigate/arrow-left.gif +0 -0
  61. data/bower_components/flot/examples/navigate/arrow-right.gif +0 -0
  62. data/bower_components/flot/examples/navigate/arrow-up.gif +0 -0
  63. data/bower_components/flot/examples/navigate/index.html +153 -0
  64. data/bower_components/flot/examples/percentiles/index.html +79 -0
  65. data/bower_components/flot/examples/realtime/index.html +122 -0
  66. data/bower_components/flot/examples/resize/index.html +76 -0
  67. data/bower_components/flot/examples/selection/index.html +152 -0
  68. data/bower_components/flot/examples/series-errorbars/index.html +150 -0
  69. data/bower_components/flot/examples/series-pie/index.html +818 -0
  70. data/bower_components/flot/examples/series-toggle/index.html +121 -0
  71. data/bower_components/flot/examples/series-types/index.html +90 -0
  72. data/bower_components/flot/examples/shared/jquery-ui/jquery-ui.min.css +6 -0
  73. data/bower_components/flot/examples/stacking/index.html +107 -0
  74. data/bower_components/flot/examples/symbols/index.html +76 -0
  75. data/bower_components/flot/examples/threshold/index.html +76 -0
  76. data/bower_components/flot/examples/tracking/index.html +135 -0
  77. data/bower_components/flot/examples/visitors/index.html +147 -0
  78. data/bower_components/flot/examples/zooming/index.html +144 -0
  79. data/bower_components/flot/excanvas.js +1428 -0
  80. data/bower_components/flot/excanvas.min.js +1 -0
  81. data/bower_components/flot/flot.jquery.json +27 -0
  82. data/bower_components/flot/jquery.colorhelpers.js +180 -0
  83. data/bower_components/flot/jquery.flot.canvas.js +345 -0
  84. data/bower_components/flot/jquery.flot.categories.js +190 -0
  85. data/bower_components/flot/jquery.flot.crosshair.js +176 -0
  86. data/bower_components/flot/jquery.flot.errorbars.js +353 -0
  87. data/bower_components/flot/jquery.flot.fillbetween.js +226 -0
  88. data/bower_components/flot/jquery.flot.image.js +241 -0
  89. data/bower_components/flot/jquery.flot.js +3168 -0
  90. data/bower_components/flot/jquery.flot.navigate.js +346 -0
  91. data/bower_components/flot/jquery.flot.pie.js +820 -0
  92. data/bower_components/flot/jquery.flot.resize.js +59 -0
  93. data/bower_components/flot/jquery.flot.selection.js +360 -0
  94. data/bower_components/flot/jquery.flot.stack.js +188 -0
  95. data/bower_components/flot/jquery.flot.symbol.js +71 -0
  96. data/bower_components/flot/jquery.flot.threshold.js +142 -0
  97. data/bower_components/flot/jquery.flot.time.js +432 -0
  98. data/bower_components/flot/jquery.js +9472 -0
  99. data/bower_components/flot/package.json +11 -0
  100. data/bower_components/jquery/.bower.json +38 -0
  101. data/bower_components/jquery/MIT-LICENSE.txt +21 -0
  102. data/bower_components/jquery/bower.json +28 -0
  103. data/bower_components/jquery/dist/jquery.js +9210 -0
  104. data/bower_components/jquery/dist/jquery.min.js +5 -0
  105. data/bower_components/jquery/dist/jquery.min.map +1 -0
  106. data/bower_components/jquery/src/ajax.js +786 -0
  107. data/bower_components/jquery/src/ajax/jsonp.js +89 -0
  108. data/bower_components/jquery/src/ajax/load.js +75 -0
  109. data/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  110. data/bower_components/jquery/src/ajax/parseXML.js +28 -0
  111. data/bower_components/jquery/src/ajax/script.js +64 -0
  112. data/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  113. data/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  114. data/bower_components/jquery/src/ajax/xhr.js +136 -0
  115. data/bower_components/jquery/src/attributes.js +11 -0
  116. data/bower_components/jquery/src/attributes/attr.js +141 -0
  117. data/bower_components/jquery/src/attributes/classes.js +158 -0
  118. data/bower_components/jquery/src/attributes/prop.js +94 -0
  119. data/bower_components/jquery/src/attributes/support.js +35 -0
  120. data/bower_components/jquery/src/attributes/val.js +161 -0
  121. data/bower_components/jquery/src/callbacks.js +205 -0
  122. data/bower_components/jquery/src/core.js +502 -0
  123. data/bower_components/jquery/src/core/access.js +60 -0
  124. data/bower_components/jquery/src/core/init.js +123 -0
  125. data/bower_components/jquery/src/core/parseHTML.js +39 -0
  126. data/bower_components/jquery/src/core/ready.js +97 -0
  127. data/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  128. data/bower_components/jquery/src/css.js +450 -0
  129. data/bower_components/jquery/src/css/addGetHookIf.js +22 -0
  130. data/bower_components/jquery/src/css/curCSS.js +57 -0
  131. data/bower_components/jquery/src/css/defaultDisplay.js +70 -0
  132. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  133. data/bower_components/jquery/src/css/support.js +96 -0
  134. data/bower_components/jquery/src/css/swap.js +28 -0
  135. data/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  136. data/bower_components/jquery/src/css/var/getStyles.js +12 -0
  137. data/bower_components/jquery/src/css/var/isHidden.js +13 -0
  138. data/bower_components/jquery/src/css/var/rmargin.js +3 -0
  139. data/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  140. data/bower_components/jquery/src/data.js +178 -0
  141. data/bower_components/jquery/src/data/Data.js +181 -0
  142. data/bower_components/jquery/src/data/accepts.js +20 -0
  143. data/bower_components/jquery/src/data/var/data_priv.js +5 -0
  144. data/bower_components/jquery/src/data/var/data_user.js +5 -0
  145. data/bower_components/jquery/src/deferred.js +149 -0
  146. data/bower_components/jquery/src/deprecated.js +13 -0
  147. data/bower_components/jquery/src/dimensions.js +50 -0
  148. data/bower_components/jquery/src/effects.js +648 -0
  149. data/bower_components/jquery/src/effects/Tween.js +114 -0
  150. data/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  151. data/bower_components/jquery/src/event.js +868 -0
  152. data/bower_components/jquery/src/event/ajax.js +13 -0
  153. data/bower_components/jquery/src/event/alias.js +39 -0
  154. data/bower_components/jquery/src/event/support.js +9 -0
  155. data/bower_components/jquery/src/exports/amd.js +24 -0
  156. data/bower_components/jquery/src/exports/global.js +32 -0
  157. data/bower_components/jquery/src/intro.js +44 -0
  158. data/bower_components/jquery/src/jquery.js +37 -0
  159. data/bower_components/jquery/src/manipulation.js +580 -0
  160. data/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  161. data/bower_components/jquery/src/manipulation/support.js +32 -0
  162. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  163. data/bower_components/jquery/src/offset.js +207 -0
  164. data/bower_components/jquery/src/outro.js +1 -0
  165. data/bower_components/jquery/src/queue.js +142 -0
  166. data/bower_components/jquery/src/queue/delay.js +22 -0
  167. data/bower_components/jquery/src/selector-native.js +172 -0
  168. data/bower_components/jquery/src/selector-sizzle.js +14 -0
  169. data/bower_components/jquery/src/selector.js +1 -0
  170. data/bower_components/jquery/src/serialize.js +111 -0
  171. data/bower_components/jquery/src/sizzle/dist/sizzle.js +2067 -0
  172. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  173. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  174. data/bower_components/jquery/src/traversing.js +199 -0
  175. data/bower_components/jquery/src/traversing/findFilter.js +100 -0
  176. data/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  177. data/bower_components/jquery/src/var/arr.js +3 -0
  178. data/bower_components/jquery/src/var/class2type.js +4 -0
  179. data/bower_components/jquery/src/var/concat.js +5 -0
  180. data/bower_components/jquery/src/var/hasOwn.js +5 -0
  181. data/bower_components/jquery/src/var/indexOf.js +5 -0
  182. data/bower_components/jquery/src/var/pnum.js +3 -0
  183. data/bower_components/jquery/src/var/push.js +5 -0
  184. data/bower_components/jquery/src/var/rnotwhite.js +3 -0
  185. data/bower_components/jquery/src/var/slice.js +5 -0
  186. data/bower_components/jquery/src/var/strundefined.js +3 -0
  187. data/bower_components/jquery/src/var/support.js +4 -0
  188. data/bower_components/jquery/src/var/toString.js +5 -0
  189. data/bower_components/jquery/src/wrap.js +79 -0
  190. data/columbus3.gemspec +1 -1
  191. data/exe/columbus3 +72 -7
  192. data/lib/columbus3.rb +2 -1
  193. data/lib/columbus3/metadata/sidecar.rb +10 -1
  194. data/lib/columbus3/renderer/flot_renderer.rb +66 -0
  195. data/lib/columbus3/renderer/{renderer.rb → leaflet_renderer.rb} +0 -0
  196. data/lib/columbus3/version.rb +1 -1
  197. data/lib/html/flot.html.erb +106 -0
  198. metadata +194 -5
  199. data/README.md +0 -41
@@ -0,0 +1,38 @@
1
+ # <pre>
2
+ # This file is in the public domain, so clarified as of
3
+ # 2009-05-17 by Arthur David Olson.
4
+
5
+ # Old rules, should the need arise.
6
+ # No attempt is made to handle Newfoundland, since it cannot be expressed
7
+ # using the System V "TZ" scheme (half-hour offset), or anything outside
8
+ # North America (no support for non-standard DST start/end dates), nor
9
+ # the changes in the DST rules in the US after 1976 (which occurred after
10
+ # the old rules were written).
11
+ #
12
+ # If you need the old rules, uncomment ## lines.
13
+ # Compile this *without* leap second correction for true conformance.
14
+
15
+ # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
16
+ Rule SystemV min 1973 - Apr lastSun 2:00 1:00 D
17
+ Rule SystemV min 1973 - Oct lastSun 2:00 0 S
18
+ Rule SystemV 1974 only - Jan 6 2:00 1:00 D
19
+ Rule SystemV 1974 only - Nov lastSun 2:00 0 S
20
+ Rule SystemV 1975 only - Feb 23 2:00 1:00 D
21
+ Rule SystemV 1975 only - Oct lastSun 2:00 0 S
22
+ Rule SystemV 1976 max - Apr lastSun 2:00 1:00 D
23
+ Rule SystemV 1976 max - Oct lastSun 2:00 0 S
24
+
25
+ # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
26
+ ## Zone SystemV/AST4ADT -4:00 SystemV A%sT
27
+ ## Zone SystemV/EST5EDT -5:00 SystemV E%sT
28
+ ## Zone SystemV/CST6CDT -6:00 SystemV C%sT
29
+ ## Zone SystemV/MST7MDT -7:00 SystemV M%sT
30
+ ## Zone SystemV/PST8PDT -8:00 SystemV P%sT
31
+ ## Zone SystemV/YST9YDT -9:00 SystemV Y%sT
32
+ ## Zone SystemV/AST4 -4:00 - AST
33
+ ## Zone SystemV/EST5 -5:00 - EST
34
+ ## Zone SystemV/CST6 -6:00 - CST
35
+ ## Zone SystemV/MST7 -7:00 - MST
36
+ ## Zone SystemV/PST8 -8:00 - PST
37
+ ## Zone SystemV/YST9 -9:00 - YST
38
+ ## Zone SystemV/HST10 -10:00 - HST
@@ -0,0 +1,38 @@
1
+ #! /bin/sh
2
+
3
+ : 'This file is in the public domain, so clarified as of'
4
+ : '2006-07-17 by Arthur David Olson.'
5
+
6
+ case $#-$1 in
7
+ 2-|2-0*|2-*[!0-9]*)
8
+ echo "$0: wild year - $1" >&2
9
+ exit 1 ;;
10
+ esac
11
+
12
+ case $#-$2 in
13
+ 2-even)
14
+ case $1 in
15
+ *[24680]) exit 0 ;;
16
+ *) exit 1 ;;
17
+ esac ;;
18
+ 2-nonpres|2-nonuspres)
19
+ case $1 in
20
+ *[02468][048]|*[13579][26]) exit 1 ;;
21
+ *) exit 0 ;;
22
+ esac ;;
23
+ 2-odd)
24
+ case $1 in
25
+ *[13579]) exit 0 ;;
26
+ *) exit 1 ;;
27
+ esac ;;
28
+ 2-uspres)
29
+ case $1 in
30
+ *[02468][048]|*[13579][26]) exit 0 ;;
31
+ *) exit 1 ;;
32
+ esac ;;
33
+ 2-*)
34
+ echo "$0: wild type - $2" >&2 ;;
35
+ esac
36
+
37
+ echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
38
+ exit 1
@@ -0,0 +1,441 @@
1
+ # <pre>
2
+ # This file is in the public domain, so clarified as of
3
+ # 2009-05-17 by Arthur David Olson.
4
+ #
5
+ # TZ zone descriptions
6
+ #
7
+ # From Paul Eggert (1996-08-05):
8
+ #
9
+ # This file contains a table with the following columns:
10
+ # 1. ISO 3166 2-character country code. See the file `iso3166.tab'.
11
+ # 2. Latitude and longitude of the zone's principal location
12
+ # in ISO 6709 sign-degrees-minutes-seconds format,
13
+ # either +-DDMM+-DDDMM or +-DDMMSS+-DDDMMSS,
14
+ # first latitude (+ is north), then longitude (+ is east).
15
+ # 3. Zone name used in value of TZ environment variable.
16
+ # 4. Comments; present if and only if the country has multiple rows.
17
+ #
18
+ # Columns are separated by a single tab.
19
+ # The table is sorted first by country, then an order within the country that
20
+ # (1) makes some geographical sense, and
21
+ # (2) puts the most populous zones first, where that does not contradict (1).
22
+ #
23
+ # Lines beginning with `#' are comments.
24
+ #
25
+ #country-
26
+ #code coordinates TZ comments
27
+ AD +4230+00131 Europe/Andorra
28
+ AE +2518+05518 Asia/Dubai
29
+ AF +3431+06912 Asia/Kabul
30
+ AG +1703-06148 America/Antigua
31
+ AI +1812-06304 America/Anguilla
32
+ AL +4120+01950 Europe/Tirane
33
+ AM +4011+04430 Asia/Yerevan
34
+ AO -0848+01314 Africa/Luanda
35
+ AQ -7750+16636 Antarctica/McMurdo McMurdo Station, Ross Island
36
+ AQ -9000+00000 Antarctica/South_Pole Amundsen-Scott Station, South Pole
37
+ AQ -6734-06808 Antarctica/Rothera Rothera Station, Adelaide Island
38
+ AQ -6448-06406 Antarctica/Palmer Palmer Station, Anvers Island
39
+ AQ -6736+06253 Antarctica/Mawson Mawson Station, Holme Bay
40
+ AQ -6835+07758 Antarctica/Davis Davis Station, Vestfold Hills
41
+ AQ -6617+11031 Antarctica/Casey Casey Station, Bailey Peninsula
42
+ AQ -7824+10654 Antarctica/Vostok Vostok Station, Lake Vostok
43
+ AQ -6640+14001 Antarctica/DumontDUrville Dumont-d'Urville Station, Terre Adelie
44
+ AQ -690022+0393524 Antarctica/Syowa Syowa Station, E Ongul I
45
+ AQ -5430+15857 Antarctica/Macquarie Macquarie Island Station, Macquarie Island
46
+ AR -3436-05827 America/Argentina/Buenos_Aires Buenos Aires (BA, CF)
47
+ AR -3124-06411 America/Argentina/Cordoba most locations (CB, CC, CN, ER, FM, MN, SE, SF)
48
+ AR -2447-06525 America/Argentina/Salta (SA, LP, NQ, RN)
49
+ AR -2411-06518 America/Argentina/Jujuy Jujuy (JY)
50
+ AR -2649-06513 America/Argentina/Tucuman Tucuman (TM)
51
+ AR -2828-06547 America/Argentina/Catamarca Catamarca (CT), Chubut (CH)
52
+ AR -2926-06651 America/Argentina/La_Rioja La Rioja (LR)
53
+ AR -3132-06831 America/Argentina/San_Juan San Juan (SJ)
54
+ AR -3253-06849 America/Argentina/Mendoza Mendoza (MZ)
55
+ AR -3319-06621 America/Argentina/San_Luis San Luis (SL)
56
+ AR -5138-06913 America/Argentina/Rio_Gallegos Santa Cruz (SC)
57
+ AR -5448-06818 America/Argentina/Ushuaia Tierra del Fuego (TF)
58
+ AS -1416-17042 Pacific/Pago_Pago
59
+ AT +4813+01620 Europe/Vienna
60
+ AU -3133+15905 Australia/Lord_Howe Lord Howe Island
61
+ AU -4253+14719 Australia/Hobart Tasmania - most locations
62
+ AU -3956+14352 Australia/Currie Tasmania - King Island
63
+ AU -3749+14458 Australia/Melbourne Victoria
64
+ AU -3352+15113 Australia/Sydney New South Wales - most locations
65
+ AU -3157+14127 Australia/Broken_Hill New South Wales - Yancowinna
66
+ AU -2728+15302 Australia/Brisbane Queensland - most locations
67
+ AU -2016+14900 Australia/Lindeman Queensland - Holiday Islands
68
+ AU -3455+13835 Australia/Adelaide South Australia
69
+ AU -1228+13050 Australia/Darwin Northern Territory
70
+ AU -3157+11551 Australia/Perth Western Australia - most locations
71
+ AU -3143+12852 Australia/Eucla Western Australia - Eucla area
72
+ AW +1230-06958 America/Aruba
73
+ AX +6006+01957 Europe/Mariehamn
74
+ AZ +4023+04951 Asia/Baku
75
+ BA +4352+01825 Europe/Sarajevo
76
+ BB +1306-05937 America/Barbados
77
+ BD +2343+09025 Asia/Dhaka
78
+ BE +5050+00420 Europe/Brussels
79
+ BF +1222-00131 Africa/Ouagadougou
80
+ BG +4241+02319 Europe/Sofia
81
+ BH +2623+05035 Asia/Bahrain
82
+ BI -0323+02922 Africa/Bujumbura
83
+ BJ +0629+00237 Africa/Porto-Novo
84
+ BL +1753-06251 America/St_Barthelemy
85
+ BM +3217-06446 Atlantic/Bermuda
86
+ BN +0456+11455 Asia/Brunei
87
+ BO -1630-06809 America/La_Paz
88
+ BQ +120903-0681636 America/Kralendijk
89
+ BR -0351-03225 America/Noronha Atlantic islands
90
+ BR -0127-04829 America/Belem Amapa, E Para
91
+ BR -0343-03830 America/Fortaleza NE Brazil (MA, PI, CE, RN, PB)
92
+ BR -0803-03454 America/Recife Pernambuco
93
+ BR -0712-04812 America/Araguaina Tocantins
94
+ BR -0940-03543 America/Maceio Alagoas, Sergipe
95
+ BR -1259-03831 America/Bahia Bahia
96
+ BR -2332-04637 America/Sao_Paulo S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)
97
+ BR -2027-05437 America/Campo_Grande Mato Grosso do Sul
98
+ BR -1535-05605 America/Cuiaba Mato Grosso
99
+ BR -0226-05452 America/Santarem W Para
100
+ BR -0846-06354 America/Porto_Velho Rondonia
101
+ BR +0249-06040 America/Boa_Vista Roraima
102
+ BR -0308-06001 America/Manaus E Amazonas
103
+ BR -0640-06952 America/Eirunepe W Amazonas
104
+ BR -0958-06748 America/Rio_Branco Acre
105
+ BS +2505-07721 America/Nassau
106
+ BT +2728+08939 Asia/Thimphu
107
+ BW -2439+02555 Africa/Gaborone
108
+ BY +5354+02734 Europe/Minsk
109
+ BZ +1730-08812 America/Belize
110
+ CA +4734-05243 America/St_Johns Newfoundland Time, including SE Labrador
111
+ CA +4439-06336 America/Halifax Atlantic Time - Nova Scotia (most places), PEI
112
+ CA +4612-05957 America/Glace_Bay Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971
113
+ CA +4606-06447 America/Moncton Atlantic Time - New Brunswick
114
+ CA +5320-06025 America/Goose_Bay Atlantic Time - Labrador - most locations
115
+ CA +5125-05707 America/Blanc-Sablon Atlantic Standard Time - Quebec - Lower North Shore
116
+ CA +4531-07334 America/Montreal Eastern Time - Quebec - most locations
117
+ CA +4339-07923 America/Toronto Eastern Time - Ontario - most locations
118
+ CA +4901-08816 America/Nipigon Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973
119
+ CA +4823-08915 America/Thunder_Bay Eastern Time - Thunder Bay, Ontario
120
+ CA +6344-06828 America/Iqaluit Eastern Time - east Nunavut - most locations
121
+ CA +6608-06544 America/Pangnirtung Eastern Time - Pangnirtung, Nunavut
122
+ CA +744144-0944945 America/Resolute Central Standard Time - Resolute, Nunavut
123
+ CA +484531-0913718 America/Atikokan Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut
124
+ CA +624900-0920459 America/Rankin_Inlet Central Time - central Nunavut
125
+ CA +4953-09709 America/Winnipeg Central Time - Manitoba & west Ontario
126
+ CA +4843-09434 America/Rainy_River Central Time - Rainy River & Fort Frances, Ontario
127
+ CA +5024-10439 America/Regina Central Standard Time - Saskatchewan - most locations
128
+ CA +5017-10750 America/Swift_Current Central Standard Time - Saskatchewan - midwest
129
+ CA +5333-11328 America/Edmonton Mountain Time - Alberta, east British Columbia & west Saskatchewan
130
+ CA +690650-1050310 America/Cambridge_Bay Mountain Time - west Nunavut
131
+ CA +6227-11421 America/Yellowknife Mountain Time - central Northwest Territories
132
+ CA +682059-1334300 America/Inuvik Mountain Time - west Northwest Territories
133
+ CA +4906-11631 America/Creston Mountain Standard Time - Creston, British Columbia
134
+ CA +5946-12014 America/Dawson_Creek Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia
135
+ CA +4916-12307 America/Vancouver Pacific Time - west British Columbia
136
+ CA +6043-13503 America/Whitehorse Pacific Time - south Yukon
137
+ CA +6404-13925 America/Dawson Pacific Time - north Yukon
138
+ CC -1210+09655 Indian/Cocos
139
+ CD -0418+01518 Africa/Kinshasa west Dem. Rep. of Congo
140
+ CD -1140+02728 Africa/Lubumbashi east Dem. Rep. of Congo
141
+ CF +0422+01835 Africa/Bangui
142
+ CG -0416+01517 Africa/Brazzaville
143
+ CH +4723+00832 Europe/Zurich
144
+ CI +0519-00402 Africa/Abidjan
145
+ CK -2114-15946 Pacific/Rarotonga
146
+ CL -3327-07040 America/Santiago most locations
147
+ CL -2709-10926 Pacific/Easter Easter Island & Sala y Gomez
148
+ CM +0403+00942 Africa/Douala
149
+ CN +3114+12128 Asia/Shanghai east China - Beijing, Guangdong, Shanghai, etc.
150
+ CN +4545+12641 Asia/Harbin Heilongjiang (except Mohe), Jilin
151
+ CN +2934+10635 Asia/Chongqing central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
152
+ CN +4348+08735 Asia/Urumqi most of Tibet & Xinjiang
153
+ CN +3929+07559 Asia/Kashgar west Tibet & Xinjiang
154
+ CO +0436-07405 America/Bogota
155
+ CR +0956-08405 America/Costa_Rica
156
+ CU +2308-08222 America/Havana
157
+ CV +1455-02331 Atlantic/Cape_Verde
158
+ CW +1211-06900 America/Curacao
159
+ CX -1025+10543 Indian/Christmas
160
+ CY +3510+03322 Asia/Nicosia
161
+ CZ +5005+01426 Europe/Prague
162
+ DE +5230+01322 Europe/Berlin
163
+ DJ +1136+04309 Africa/Djibouti
164
+ DK +5540+01235 Europe/Copenhagen
165
+ DM +1518-06124 America/Dominica
166
+ DO +1828-06954 America/Santo_Domingo
167
+ DZ +3647+00303 Africa/Algiers
168
+ EC -0210-07950 America/Guayaquil mainland
169
+ EC -0054-08936 Pacific/Galapagos Galapagos Islands
170
+ EE +5925+02445 Europe/Tallinn
171
+ EG +3003+03115 Africa/Cairo
172
+ EH +2709-01312 Africa/El_Aaiun
173
+ ER +1520+03853 Africa/Asmara
174
+ ES +4024-00341 Europe/Madrid mainland
175
+ ES +3553-00519 Africa/Ceuta Ceuta & Melilla
176
+ ES +2806-01524 Atlantic/Canary Canary Islands
177
+ ET +0902+03842 Africa/Addis_Ababa
178
+ FI +6010+02458 Europe/Helsinki
179
+ FJ -1808+17825 Pacific/Fiji
180
+ FK -5142-05751 Atlantic/Stanley
181
+ FM +0725+15147 Pacific/Chuuk Chuuk (Truk) and Yap
182
+ FM +0658+15813 Pacific/Pohnpei Pohnpei (Ponape)
183
+ FM +0519+16259 Pacific/Kosrae Kosrae
184
+ FO +6201-00646 Atlantic/Faroe
185
+ FR +4852+00220 Europe/Paris
186
+ GA +0023+00927 Africa/Libreville
187
+ GB +513030-0000731 Europe/London
188
+ GD +1203-06145 America/Grenada
189
+ GE +4143+04449 Asia/Tbilisi
190
+ GF +0456-05220 America/Cayenne
191
+ GG +4927-00232 Europe/Guernsey
192
+ GH +0533-00013 Africa/Accra
193
+ GI +3608-00521 Europe/Gibraltar
194
+ GL +6411-05144 America/Godthab most locations
195
+ GL +7646-01840 America/Danmarkshavn east coast, north of Scoresbysund
196
+ GL +7029-02158 America/Scoresbysund Scoresbysund / Ittoqqortoormiit
197
+ GL +7634-06847 America/Thule Thule / Pituffik
198
+ GM +1328-01639 Africa/Banjul
199
+ GN +0931-01343 Africa/Conakry
200
+ GP +1614-06132 America/Guadeloupe
201
+ GQ +0345+00847 Africa/Malabo
202
+ GR +3758+02343 Europe/Athens
203
+ GS -5416-03632 Atlantic/South_Georgia
204
+ GT +1438-09031 America/Guatemala
205
+ GU +1328+14445 Pacific/Guam
206
+ GW +1151-01535 Africa/Bissau
207
+ GY +0648-05810 America/Guyana
208
+ HK +2217+11409 Asia/Hong_Kong
209
+ HN +1406-08713 America/Tegucigalpa
210
+ HR +4548+01558 Europe/Zagreb
211
+ HT +1832-07220 America/Port-au-Prince
212
+ HU +4730+01905 Europe/Budapest
213
+ ID -0610+10648 Asia/Jakarta Java & Sumatra
214
+ ID -0002+10920 Asia/Pontianak west & central Borneo
215
+ ID -0507+11924 Asia/Makassar east & south Borneo, Sulawesi (Celebes), Bali, Nusa Tengarra, west Timor
216
+ ID -0232+14042 Asia/Jayapura west New Guinea (Irian Jaya) & Malukus (Moluccas)
217
+ IE +5320-00615 Europe/Dublin
218
+ IL +3146+03514 Asia/Jerusalem
219
+ IM +5409-00428 Europe/Isle_of_Man
220
+ IN +2232+08822 Asia/Kolkata
221
+ IO -0720+07225 Indian/Chagos
222
+ IQ +3321+04425 Asia/Baghdad
223
+ IR +3540+05126 Asia/Tehran
224
+ IS +6409-02151 Atlantic/Reykjavik
225
+ IT +4154+01229 Europe/Rome
226
+ JE +4912-00207 Europe/Jersey
227
+ JM +1800-07648 America/Jamaica
228
+ JO +3157+03556 Asia/Amman
229
+ JP +353916+1394441 Asia/Tokyo
230
+ KE -0117+03649 Africa/Nairobi
231
+ KG +4254+07436 Asia/Bishkek
232
+ KH +1133+10455 Asia/Phnom_Penh
233
+ KI +0125+17300 Pacific/Tarawa Gilbert Islands
234
+ KI -0308-17105 Pacific/Enderbury Phoenix Islands
235
+ KI +0152-15720 Pacific/Kiritimati Line Islands
236
+ KM -1141+04316 Indian/Comoro
237
+ KN +1718-06243 America/St_Kitts
238
+ KP +3901+12545 Asia/Pyongyang
239
+ KR +3733+12658 Asia/Seoul
240
+ KW +2920+04759 Asia/Kuwait
241
+ KY +1918-08123 America/Cayman
242
+ KZ +4315+07657 Asia/Almaty most locations
243
+ KZ +4448+06528 Asia/Qyzylorda Qyzylorda (Kyzylorda, Kzyl-Orda)
244
+ KZ +5017+05710 Asia/Aqtobe Aqtobe (Aktobe)
245
+ KZ +4431+05016 Asia/Aqtau Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)
246
+ KZ +5113+05121 Asia/Oral West Kazakhstan
247
+ LA +1758+10236 Asia/Vientiane
248
+ LB +3353+03530 Asia/Beirut
249
+ LC +1401-06100 America/St_Lucia
250
+ LI +4709+00931 Europe/Vaduz
251
+ LK +0656+07951 Asia/Colombo
252
+ LR +0618-01047 Africa/Monrovia
253
+ LS -2928+02730 Africa/Maseru
254
+ LT +5441+02519 Europe/Vilnius
255
+ LU +4936+00609 Europe/Luxembourg
256
+ LV +5657+02406 Europe/Riga
257
+ LY +3254+01311 Africa/Tripoli
258
+ MA +3339-00735 Africa/Casablanca
259
+ MC +4342+00723 Europe/Monaco
260
+ MD +4700+02850 Europe/Chisinau
261
+ ME +4226+01916 Europe/Podgorica
262
+ MF +1804-06305 America/Marigot
263
+ MG -1855+04731 Indian/Antananarivo
264
+ MH +0709+17112 Pacific/Majuro most locations
265
+ MH +0905+16720 Pacific/Kwajalein Kwajalein
266
+ MK +4159+02126 Europe/Skopje
267
+ ML +1239-00800 Africa/Bamako
268
+ MM +1647+09610 Asia/Rangoon
269
+ MN +4755+10653 Asia/Ulaanbaatar most locations
270
+ MN +4801+09139 Asia/Hovd Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan
271
+ MN +4804+11430 Asia/Choibalsan Dornod, Sukhbaatar
272
+ MO +2214+11335 Asia/Macau
273
+ MP +1512+14545 Pacific/Saipan
274
+ MQ +1436-06105 America/Martinique
275
+ MR +1806-01557 Africa/Nouakchott
276
+ MS +1643-06213 America/Montserrat
277
+ MT +3554+01431 Europe/Malta
278
+ MU -2010+05730 Indian/Mauritius
279
+ MV +0410+07330 Indian/Maldives
280
+ MW -1547+03500 Africa/Blantyre
281
+ MX +1924-09909 America/Mexico_City Central Time - most locations
282
+ MX +2105-08646 America/Cancun Central Time - Quintana Roo
283
+ MX +2058-08937 America/Merida Central Time - Campeche, Yucatan
284
+ MX +2540-10019 America/Monterrey Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border
285
+ MX +2550-09730 America/Matamoros US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border
286
+ MX +2313-10625 America/Mazatlan Mountain Time - S Baja, Nayarit, Sinaloa
287
+ MX +2838-10605 America/Chihuahua Mexican Mountain Time - Chihuahua away from US border
288
+ MX +2934-10425 America/Ojinaga US Mountain Time - Chihuahua near US border
289
+ MX +2904-11058 America/Hermosillo Mountain Standard Time - Sonora
290
+ MX +3232-11701 America/Tijuana US Pacific Time - Baja California near US border
291
+ MX +3018-11452 America/Santa_Isabel Mexican Pacific Time - Baja California away from US border
292
+ MX +2048-10515 America/Bahia_Banderas Mexican Central Time - Bahia de Banderas
293
+ MY +0310+10142 Asia/Kuala_Lumpur peninsular Malaysia
294
+ MY +0133+11020 Asia/Kuching Sabah & Sarawak
295
+ MZ -2558+03235 Africa/Maputo
296
+ NA -2234+01706 Africa/Windhoek
297
+ NC -2216+16627 Pacific/Noumea
298
+ NE +1331+00207 Africa/Niamey
299
+ NF -2903+16758 Pacific/Norfolk
300
+ NG +0627+00324 Africa/Lagos
301
+ NI +1209-08617 America/Managua
302
+ NL +5222+00454 Europe/Amsterdam
303
+ NO +5955+01045 Europe/Oslo
304
+ NP +2743+08519 Asia/Kathmandu
305
+ NR -0031+16655 Pacific/Nauru
306
+ NU -1901-16955 Pacific/Niue
307
+ NZ -3652+17446 Pacific/Auckland most locations
308
+ NZ -4357-17633 Pacific/Chatham Chatham Islands
309
+ OM +2336+05835 Asia/Muscat
310
+ PA +0858-07932 America/Panama
311
+ PE -1203-07703 America/Lima
312
+ PF -1732-14934 Pacific/Tahiti Society Islands
313
+ PF -0900-13930 Pacific/Marquesas Marquesas Islands
314
+ PF -2308-13457 Pacific/Gambier Gambier Islands
315
+ PG -0930+14710 Pacific/Port_Moresby
316
+ PH +1435+12100 Asia/Manila
317
+ PK +2452+06703 Asia/Karachi
318
+ PL +5215+02100 Europe/Warsaw
319
+ PM +4703-05620 America/Miquelon
320
+ PN -2504-13005 Pacific/Pitcairn
321
+ PR +182806-0660622 America/Puerto_Rico
322
+ PS +3130+03428 Asia/Gaza Gaza Strip
323
+ PS +313200+0350542 Asia/Hebron West Bank
324
+ PT +3843-00908 Europe/Lisbon mainland
325
+ PT +3238-01654 Atlantic/Madeira Madeira Islands
326
+ PT +3744-02540 Atlantic/Azores Azores
327
+ PW +0720+13429 Pacific/Palau
328
+ PY -2516-05740 America/Asuncion
329
+ QA +2517+05132 Asia/Qatar
330
+ RE -2052+05528 Indian/Reunion
331
+ RO +4426+02606 Europe/Bucharest
332
+ RS +4450+02030 Europe/Belgrade
333
+ RU +5443+02030 Europe/Kaliningrad Moscow-01 - Kaliningrad
334
+ RU +5545+03735 Europe/Moscow Moscow+00 - west Russia
335
+ RU +4844+04425 Europe/Volgograd Moscow+00 - Caspian Sea
336
+ RU +5312+05009 Europe/Samara Moscow+00 - Samara, Udmurtia
337
+ RU +5651+06036 Asia/Yekaterinburg Moscow+02 - Urals
338
+ RU +5500+07324 Asia/Omsk Moscow+03 - west Siberia
339
+ RU +5502+08255 Asia/Novosibirsk Moscow+03 - Novosibirsk
340
+ RU +5345+08707 Asia/Novokuznetsk Moscow+03 - Novokuznetsk
341
+ RU +5601+09250 Asia/Krasnoyarsk Moscow+04 - Yenisei River
342
+ RU +5216+10420 Asia/Irkutsk Moscow+05 - Lake Baikal
343
+ RU +6200+12940 Asia/Yakutsk Moscow+06 - Lena River
344
+ RU +4310+13156 Asia/Vladivostok Moscow+07 - Amur River
345
+ RU +4658+14242 Asia/Sakhalin Moscow+07 - Sakhalin Island
346
+ RU +5934+15048 Asia/Magadan Moscow+08 - Magadan
347
+ RU +5301+15839 Asia/Kamchatka Moscow+08 - Kamchatka
348
+ RU +6445+17729 Asia/Anadyr Moscow+08 - Bering Sea
349
+ RW -0157+03004 Africa/Kigali
350
+ SA +2438+04643 Asia/Riyadh
351
+ SB -0932+16012 Pacific/Guadalcanal
352
+ SC -0440+05528 Indian/Mahe
353
+ SD +1536+03232 Africa/Khartoum
354
+ SE +5920+01803 Europe/Stockholm
355
+ SG +0117+10351 Asia/Singapore
356
+ SH -1555-00542 Atlantic/St_Helena
357
+ SI +4603+01431 Europe/Ljubljana
358
+ SJ +7800+01600 Arctic/Longyearbyen
359
+ SK +4809+01707 Europe/Bratislava
360
+ SL +0830-01315 Africa/Freetown
361
+ SM +4355+01228 Europe/San_Marino
362
+ SN +1440-01726 Africa/Dakar
363
+ SO +0204+04522 Africa/Mogadishu
364
+ SR +0550-05510 America/Paramaribo
365
+ SS +0451+03136 Africa/Juba
366
+ ST +0020+00644 Africa/Sao_Tome
367
+ SV +1342-08912 America/El_Salvador
368
+ SX +180305-0630250 America/Lower_Princes
369
+ SY +3330+03618 Asia/Damascus
370
+ SZ -2618+03106 Africa/Mbabane
371
+ TC +2128-07108 America/Grand_Turk
372
+ TD +1207+01503 Africa/Ndjamena
373
+ TF -492110+0701303 Indian/Kerguelen
374
+ TG +0608+00113 Africa/Lome
375
+ TH +1345+10031 Asia/Bangkok
376
+ TJ +3835+06848 Asia/Dushanbe
377
+ TK -0922-17114 Pacific/Fakaofo
378
+ TL -0833+12535 Asia/Dili
379
+ TM +3757+05823 Asia/Ashgabat
380
+ TN +3648+01011 Africa/Tunis
381
+ TO -2110-17510 Pacific/Tongatapu
382
+ TR +4101+02858 Europe/Istanbul
383
+ TT +1039-06131 America/Port_of_Spain
384
+ TV -0831+17913 Pacific/Funafuti
385
+ TW +2503+12130 Asia/Taipei
386
+ TZ -0648+03917 Africa/Dar_es_Salaam
387
+ UA +5026+03031 Europe/Kiev most locations
388
+ UA +4837+02218 Europe/Uzhgorod Ruthenia
389
+ UA +4750+03510 Europe/Zaporozhye Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk
390
+ UA +4457+03406 Europe/Simferopol central Crimea
391
+ UG +0019+03225 Africa/Kampala
392
+ UM +1645-16931 Pacific/Johnston Johnston Atoll
393
+ UM +2813-17722 Pacific/Midway Midway Islands
394
+ UM +1917+16637 Pacific/Wake Wake Island
395
+ US +404251-0740023 America/New_York Eastern Time
396
+ US +421953-0830245 America/Detroit Eastern Time - Michigan - most locations
397
+ US +381515-0854534 America/Kentucky/Louisville Eastern Time - Kentucky - Louisville area
398
+ US +364947-0845057 America/Kentucky/Monticello Eastern Time - Kentucky - Wayne County
399
+ US +394606-0860929 America/Indiana/Indianapolis Eastern Time - Indiana - most locations
400
+ US +384038-0873143 America/Indiana/Vincennes Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties
401
+ US +410305-0863611 America/Indiana/Winamac Eastern Time - Indiana - Pulaski County
402
+ US +382232-0862041 America/Indiana/Marengo Eastern Time - Indiana - Crawford County
403
+ US +382931-0871643 America/Indiana/Petersburg Eastern Time - Indiana - Pike County
404
+ US +384452-0850402 America/Indiana/Vevay Eastern Time - Indiana - Switzerland County
405
+ US +415100-0873900 America/Chicago Central Time
406
+ US +375711-0864541 America/Indiana/Tell_City Central Time - Indiana - Perry County
407
+ US +411745-0863730 America/Indiana/Knox Central Time - Indiana - Starke County
408
+ US +450628-0873651 America/Menominee Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties
409
+ US +470659-1011757 America/North_Dakota/Center Central Time - North Dakota - Oliver County
410
+ US +465042-1012439 America/North_Dakota/New_Salem Central Time - North Dakota - Morton County (except Mandan area)
411
+ US +471551-1014640 America/North_Dakota/Beulah Central Time - North Dakota - Mercer County
412
+ US +394421-1045903 America/Denver Mountain Time
413
+ US +433649-1161209 America/Boise Mountain Time - south Idaho & east Oregon
414
+ US +364708-1084111 America/Shiprock Mountain Time - Navajo
415
+ US +332654-1120424 America/Phoenix Mountain Standard Time - Arizona
416
+ US +340308-1181434 America/Los_Angeles Pacific Time
417
+ US +611305-1495401 America/Anchorage Alaska Time
418
+ US +581807-1342511 America/Juneau Alaska Time - Alaska panhandle
419
+ US +571035-1351807 America/Sitka Alaska Time - southeast Alaska panhandle
420
+ US +593249-1394338 America/Yakutat Alaska Time - Alaska panhandle neck
421
+ US +643004-1652423 America/Nome Alaska Time - west Alaska
422
+ US +515248-1763929 America/Adak Aleutian Islands
423
+ US +550737-1313435 America/Metlakatla Metlakatla Time - Annette Island
424
+ US +211825-1575130 Pacific/Honolulu Hawaii
425
+ UY -3453-05611 America/Montevideo
426
+ UZ +3940+06648 Asia/Samarkand west Uzbekistan
427
+ UZ +4120+06918 Asia/Tashkent east Uzbekistan
428
+ VA +415408+0122711 Europe/Vatican
429
+ VC +1309-06114 America/St_Vincent
430
+ VE +1030-06656 America/Caracas
431
+ VG +1827-06437 America/Tortola
432
+ VI +1821-06456 America/St_Thomas
433
+ VN +1045+10640 Asia/Ho_Chi_Minh
434
+ VU -1740+16825 Pacific/Efate
435
+ WF -1318-17610 Pacific/Wallis
436
+ WS -1350-17144 Pacific/Apia
437
+ YE +1245+04512 Asia/Aden
438
+ YT -1247+04514 Indian/Mayotte
439
+ ZA -2615+02800 Africa/Johannesburg
440
+ ZM -1525+02817 Africa/Lusaka
441
+ ZW -1750+03103 Africa/Harare