Gooby 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. data/README +218 -0
  2. data/bin/forerunner_xml_parser.rb +28 -0
  3. data/bin/forerunner_xml_parser.sh +16 -0
  4. data/bin/forerunner_xml_splitter.rb +60 -0
  5. data/bin/gen_gmap.rb +30 -0
  6. data/bin/gen_gmap.sh +19 -0
  7. data/bin/tests_gen.rb +13 -0
  8. data/data/20041113_richmond_marathon.csv +1036 -0
  9. data/data/20041113_richmond_marathon.xml +8663 -0
  10. data/data/20050305_corporate_cup_hm.csv +251 -0
  11. data/data/20050305_corporate_cup_hm.xml +2208 -0
  12. data/data/20050430_nashville_marathon.csv +1208 -0
  13. data/data/20050430_nashville_marathon.xml +10043 -0
  14. data/data/20051119_dowd_ymca_hm.csv +251 -0
  15. data/data/20051119_dowd_ymca_hm.xml +2210 -0
  16. data/data/20051124_hyatt_turkey_trot_8K.csv +321 -0
  17. data/data/20051124_hyatt_turkey_trot_8K.xml +2651 -0
  18. data/data/forerunner_2005.xml +259620 -0
  19. data/data/forerunner_2006.xml +190853 -0
  20. data/data/forerunner_2007.xml +259014 -0
  21. data/data/geo_data.txt +171 -0
  22. data/data/phx.csv +1280 -0
  23. data/data/phx.xml +10620 -0
  24. data/data/run_2007_01_01_16_38_27.xml +2020 -0
  25. data/data/run_2007_01_06_15_27_31.xml +2020 -0
  26. data/data/run_2007_01_10_12_25_47.xml +820 -0
  27. data/data/run_2007_01_10_22_44_54.csv +112 -0
  28. data/data/run_2007_01_10_22_44_54.xml +908 -0
  29. data/data/run_2007_01_11_10_48_45.xml +1292 -0
  30. data/data/run_2007_01_13_15_37_06.xml +1964 -0
  31. data/data/run_2007_01_14_15_46_02.xml +1368 -0
  32. data/data/run_2007_01_15_14_01_48.xml +1868 -0
  33. data/data/run_2007_01_20_16_22_05.xml +1702 -0
  34. data/data/run_2007_01_27_17_32_13.xml +3626 -0
  35. data/data/run_2007_01_28_19_14_52.xml +2538 -0
  36. data/data/run_2007_02_03_14_30_20.xml +2016 -0
  37. data/data/run_2007_02_04_18_02_30.xml +1476 -0
  38. data/data/run_2007_02_17_16_29_35.xml +1236 -0
  39. data/data/run_2007_02_19_14_44_33.xml +1816 -0
  40. data/data/run_2007_02_23_15_53_55.xml +36 -0
  41. data/data/run_2007_02_23_15_55_20.xml +1296 -0
  42. data/data/run_2007_02_24_15_01_35.csv +484 -0
  43. data/data/run_2007_02_24_15_01_35.xml +3884 -0
  44. data/data/test1.txt +4 -0
  45. data/lib/cls_counter_hash.rb +83 -0
  46. data/lib/cls_delim_line.rb +40 -0
  47. data/lib/cls_dttm.rb +84 -0
  48. data/lib/cls_duration.rb +87 -0
  49. data/lib/cls_forerunner_xml_parser.rb +183 -0
  50. data/lib/cls_forerunner_xml_splitter.rb +113 -0
  51. data/lib/cls_geo_data.rb +186 -0
  52. data/lib/cls_gooby_object.rb +23 -0
  53. data/lib/cls_google_map_generator.rb +368 -0
  54. data/lib/cls_history.rb +38 -0
  55. data/lib/cls_lap.rb +27 -0
  56. data/lib/cls_line.rb +78 -0
  57. data/lib/cls_options.rb +74 -0
  58. data/lib/cls_position.rb +49 -0
  59. data/lib/cls_run.rb +199 -0
  60. data/lib/cls_simple_xml_parser.rb +46 -0
  61. data/lib/cls_test_regen.rb +187 -0
  62. data/lib/cls_track.rb +52 -0
  63. data/lib/cls_trackpoint.rb +205 -0
  64. data/lib/mod_introspect.rb +33 -0
  65. data/lib/mod_io.rb +65 -0
  66. data/lib/mod_project_info.rb +81 -0
  67. data/lib/mod_string.rb +26 -0
  68. data/lib/mod_test_helper.rb +22 -0
  69. data/samples/20041113_richmond_marathon.html +532 -0
  70. data/samples/20050305_corporate_cup_hm.html +448 -0
  71. data/samples/20050430_nashville_marathon.html +530 -0
  72. data/samples/gps_point_capture.html +54 -0
  73. data/samples/phoenix_marathon.html +542 -0
  74. data/samples/run_2007_01_10_22_44_54.html +146 -0
  75. data/samples/run_2007_02_24_15_01_35.html +298 -0
  76. data/tests/tst_cls_counter_hash.rb +105 -0
  77. data/tests/tst_cls_delim_line.rb +72 -0
  78. data/tests/tst_cls_dttm.rb +129 -0
  79. data/tests/tst_cls_duration.rb +49 -0
  80. data/tests/tst_cls_forerunner_xml_parser.rb +68 -0
  81. data/tests/tst_cls_geo_data.rb +69 -0
  82. data/tests/tst_cls_gooby_object.rb +24 -0
  83. data/tests/tst_cls_google_map_generator.rb +107 -0
  84. data/tests/tst_cls_history.rb +44 -0
  85. data/tests/tst_cls_lap.rb +36 -0
  86. data/tests/tst_cls_line.rb +108 -0
  87. data/tests/tst_cls_options.rb +77 -0
  88. data/tests/tst_cls_position.rb +64 -0
  89. data/tests/tst_cls_run.rb +140 -0
  90. data/tests/tst_cls_simple_xml_parser.rb +48 -0
  91. data/tests/tst_cls_track.rb +68 -0
  92. data/tests/tst_cls_trackpoint.rb +143 -0
  93. data/tests/tst_gooby.rb +28 -0
  94. data/tests/tst_mod_introspect.rb +30 -0
  95. data/tests/tst_mod_io.rb +51 -0
  96. data/tests/tst_mod_project_info.rb +77 -0
  97. data/tests/tst_mod_string.rb +56 -0
  98. metadata +142 -0
@@ -0,0 +1,448 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6
+ <title> Google Map by Gooby </title>
7
+ <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xQg0TO_bCqGOTsRH2RbuhBZnI0wvRQW0Q92mw1taN1NJCk2cxlQQutfuA" type="text/javascript"></script>
8
+ <script type="text/javascript">
9
+ //<![CDATA[
10
+ function load() {
11
+ if (GBrowserIsCompatible()) {
12
+ var map = new GMap2(document.getElementById("map"));
13
+ map.addControl(new GLargeMapControl());
14
+ map.addControl(new GMapTypeControl());
15
+
16
+ var centerPoint = new GLatLng(35.199685, -80.837205);
17
+ map.setCenter(centerPoint, 13);
18
+
19
+
20
+ var points = new Array();
21
+ points.push(new GLatLng(35.22101,-80.84566)); // 1 (1 of 250.0) 2005-03-05T13:00:29Z 0 00:00:00 0.0
22
+ points.push(new GLatLng(35.22054,-80.84506)); // 2 (2 of 250.0) 2005-03-05T13:00:49Z 20 00:00:20 0.046918021941152
23
+ points.push(new GLatLng(35.21998,-80.84446)); // 3 (3 of 250.0) 2005-03-05T13:01:10Z 41 00:00:41 0.0983360698469204
24
+ points.push(new GLatLng(35.22094,-80.84309)); // 4 (4 of 250.0) 2005-03-05T13:01:54Z 85 00:01:25 0.200210979979266
25
+ points.push(new GLatLng(35.22127,-80.84268)); // 5 (5 of 250.0) 2005-03-05T13:02:09Z 100 00:01:40 0.232697037336493
26
+ points.push(new GLatLng(35.22155,-80.8427)); // 6 (6 of 250.0) 2005-03-05T13:02:19Z 110 00:01:50 0.252075125089657
27
+ points.push(new GLatLng(35.22185,-80.84283)); // 7 (7 of 250.0) 2005-03-05T13:02:29Z 120 00:02:00 0.274062567291757
28
+ points.push(new GLatLng(35.22219,-80.84317)); // 8 (8 of 250.0) 2005-03-05T13:02:41Z 132 00:02:12 0.304395193657625
29
+ points.push(new GLatLng(35.22283,-80.84416)); // 9 (9 of 250.0) 2005-03-05T13:03:10Z 161 00:02:41 0.375650926768755
30
+ points.push(new GLatLng(35.22395,-80.84504)); // 10 (10 of 250.0) 2005-03-05T13:03:53Z 204 00:03:24 0.467600066437587
31
+ points.push(new GLatLng(35.22403,-80.84515)); // 11 (11 of 250.0) 2005-03-05T13:03:57Z 208 00:03:28 0.475912452222793
32
+ points.push(new GLatLng(35.22425,-80.84502)); // 12 (12 of 250.0) 2005-03-05T13:04:04Z 215 00:03:35 0.492790426980333
33
+ points.push(new GLatLng(35.2256,-80.84729)); // 13 (13 of 250.0) 2005-03-05T13:05:11Z 282 00:04:42 0.651262953423234
34
+ points.push(new GLatLng(35.22601,-80.8477)); // 14 (14 of 250.0) 2005-03-05T13:05:27Z 298 00:04:58 0.687839739739913
35
+ points.push(new GLatLng(35.22661,-80.84843)); // 15 (15 of 250.0) 2005-03-05T13:05:54Z 325 00:05:25 0.746285122724138
36
+ points.push(new GLatLng(35.22715,-80.84901)); // 16 (16 of 250.0) 2005-03-05T13:06:16Z 347 00:05:47 0.795918233953314
37
+ points.push(new GLatLng(35.22663,-80.84963)); // 17 (17 of 250.0) 2005-03-05T13:06:38Z 369 00:06:09 0.846069376187672
38
+ points.push(new GLatLng(35.22614,-80.85034)); // 18 (18 of 250.0) 2005-03-05T13:07:01Z 392 00:06:32 0.898526894757261
39
+ points.push(new GLatLng(35.22601,-80.85045)); // 19 (19 of 250.0) 2005-03-05T13:07:06Z 397 00:06:37 0.909445268471631
40
+ points.push(new GLatLng(35.22577,-80.85079)); // 20 (20 of 250.0) 2005-03-05T13:07:17Z 408 00:06:48 0.934806000876925
41
+ points.push(new GLatLng(35.22545,-80.85105)); // 21 (21 of 250.0) 2005-03-05T13:07:29Z 420 00:07:00 0.961341335304109
42
+ points.push(new GLatLng(35.22506,-80.85122)); // 22 (22 of 250.0) 2005-03-05T13:07:42Z 433 00:07:13 0.989943630017703
43
+ points.push(new GLatLng(35.22487,-80.85137)); // 23 (23 of 250.0) 2005-03-05T13:07:49Z 440 00:07:20 1.00556377588005 1.0 00:07:20
44
+ points.push(new GLatLng(35.22474,-80.85146)); // 24 (24 of 250.0) 2005-03-05T13:07:54Z 445 00:07:25 1.01588215675517
45
+ points.push(new GLatLng(35.22444,-80.85184)); // 25 (25 of 250.0) 2005-03-05T13:08:08Z 459 00:07:39 1.04570805809106
46
+ points.push(new GLatLng(35.22434,-80.85217)); // 26 (26 of 250.0) 2005-03-05T13:08:18Z 469 00:07:49 1.06557326927759
47
+ points.push(new GLatLng(35.22399,-80.85405)); // 27 (27 of 250.0) 2005-03-05T13:09:09Z 520 00:08:40 1.17440056804311
48
+ points.push(new GLatLng(35.22506,-80.85521)); // 28 (28 of 250.0) 2005-03-05T13:09:55Z 566 00:09:26 1.27314970425493
49
+ points.push(new GLatLng(35.22592,-80.85596)); // 29 (29 of 250.0) 2005-03-05T13:10:28Z 599 00:09:59 1.34610297134886
50
+ points.push(new GLatLng(35.22695,-80.85671)); // 30 (30 of 250.0) 2005-03-05T13:11:07Z 638 00:10:38 1.42890298309629
51
+ points.push(new GLatLng(35.22734,-80.85633)); // 31 (31 of 250.0) 2005-03-05T13:11:23Z 654 00:10:54 1.46334106463099
52
+ points.push(new GLatLng(35.22897,-80.8544)); // 32 (32 of 250.0) 2005-03-05T13:12:35Z 726 00:12:06 1.62001531054915
53
+ points.push(new GLatLng(35.22964,-80.85371)); // 33 (33 of 250.0) 2005-03-05T13:13:04Z 755 00:12:35 1.68050655491899
54
+ points.push(new GLatLng(35.232,-80.85109)); // 34 (34 of 250.0) 2005-03-05T13:14:48Z 859 00:14:19 1.90061711602528
55
+ points.push(new GLatLng(35.23193,-80.85088)); // 35 (35 of 250.0) 2005-03-05T13:14:54Z 865 00:14:25 1.91341734302992
56
+ points.push(new GLatLng(35.23105,-80.84968)); // 36 (36 of 250.0) 2005-03-05T13:15:36Z 907 00:15:07 2.00442699838485 2.0 00:07:47
57
+ points.push(new GLatLng(35.23032,-80.84895)); // 37 (37 of 250.0) 2005-03-05T13:16:08Z 939 00:15:39 2.06955003935657
58
+ points.push(new GLatLng(35.22998,-80.84882)); // 38 (38 of 250.0) 2005-03-05T13:16:20Z 951 00:15:51 2.0941595900545
59
+ points.push(new GLatLng(35.22974,-80.84888)); // 39 (39 of 250.0) 2005-03-05T13:16:28Z 959 00:15:59 2.11108337231424
60
+ points.push(new GLatLng(35.22925,-80.84893)); // 40 (40 of 250.0) 2005-03-05T13:16:44Z 975 00:16:15 2.14505489093239
61
+ points.push(new GLatLng(35.22882,-80.84886)); // 41 (41 of 250.0) 2005-03-05T13:16:58Z 989 00:16:29 2.17502504361516
62
+ points.push(new GLatLng(35.2285,-80.84862)); // 42 (42 of 250.0) 2005-03-05T13:17:10Z 1001 00:16:41 2.20095299731342
63
+ points.push(new GLatLng(35.22781,-80.84785)); // 43 (43 of 250.0) 2005-03-05T13:17:40Z 1031 00:17:11 2.26545956261107
64
+ points.push(new GLatLng(35.22674,-80.84648)); // 44 (44 of 250.0) 2005-03-05T13:18:33Z 1084 00:18:04 2.37243340465649
65
+ points.push(new GLatLng(35.2264,-80.84611)); // 45 (45 of 250.0) 2005-03-05T13:18:49Z 1100 00:18:20 2.40386385307936
66
+ points.push(new GLatLng(35.22397,-80.84317)); // 46 (46 of 250.0) 2005-03-05T13:20:41Z 1212 00:20:12 2.63991390888025
67
+ points.push(new GLatLng(35.22363,-80.84294)); // 47 (47 of 250.0) 2005-03-05T13:20:51Z 1222 00:20:22 2.66675264078349
68
+ points.push(new GLatLng(35.22331,-80.8426)); // 48 (48 of 250.0) 2005-03-05T13:21:04Z 1235 00:20:35 2.69602795767016
69
+ points.push(new GLatLng(35.22294,-80.84212)); // 49 (49 of 250.0) 2005-03-05T13:21:23Z 1254 00:20:54 2.73327613433162
70
+ points.push(new GLatLng(35.22182,-80.8409)); // 50 (50 of 250.0) 2005-03-05T13:22:08Z 1299 00:21:39 2.83685803071362
71
+ points.push(new GLatLng(35.22142,-80.84038)); // 51 (51 of 250.0) 2005-03-05T13:22:27Z 1318 00:21:58 2.8771710819106
72
+ points.push(new GLatLng(35.22013,-80.83905)); // 52 (52 of 250.0) 2005-03-05T13:23:19Z 1370 00:22:50 2.99369860184411
73
+ points.push(new GLatLng(35.22,-80.83886)); // 53 (53 of 250.0) 2005-03-05T13:23:27Z 1378 00:22:58 3.00768703301529 3.0 00:07:51
74
+ points.push(new GLatLng(35.2191,-80.8377)); // 54 (54 of 250.0) 2005-03-05T13:24:10Z 1421 00:23:41 3.0979826551601
75
+ points.push(new GLatLng(35.2185,-80.83717)); // 55 (55 of 250.0) 2005-03-05T13:24:32Z 1443 00:24:03 3.14910358253967
76
+ points.push(new GLatLng(35.2182,-80.83676)); // 56 (56 of 250.0) 2005-03-05T13:24:47Z 1458 00:24:18 3.18017053416113
77
+ points.push(new GLatLng(35.2173,-80.83577)); // 57 (57 of 250.0) 2005-03-05T13:25:22Z 1493 00:24:53 3.2637709317134
78
+ points.push(new GLatLng(35.21622,-80.83451)); // 58 (58 of 250.0) 2005-03-05T13:26:10Z 1541 00:25:41 3.36685273369255
79
+ points.push(new GLatLng(35.21532,-80.83287)); // 59 (59 of 250.0) 2005-03-05T13:27:06Z 1597 00:26:37 3.47836872674983
80
+ points.push(new GLatLng(35.21431,-80.83142)); // 60 (60 of 250.0) 2005-03-05T13:28:00Z 1651 00:27:31 3.58592481990532
81
+ points.push(new GLatLng(35.21348,-80.83064)); // 61 (61 of 250.0) 2005-03-05T13:28:35Z 1686 00:28:06 3.65822231694953
82
+ points.push(new GLatLng(35.21322,-80.83034)); // 62 (62 of 250.0) 2005-03-05T13:28:48Z 1699 00:28:19 3.68290929709234
83
+ points.push(new GLatLng(35.21298,-80.83006)); // 63 (63 of 250.0) 2005-03-05T13:29:00Z 1711 00:28:31 3.70581685363569
84
+ points.push(new GLatLng(35.2126,-80.8294)); // 64 (64 of 250.0) 2005-03-05T13:29:23Z 1734 00:28:54 3.75139371097094
85
+ points.push(new GLatLng(35.21225,-80.82908)); // 65 (65 of 250.0) 2005-03-05T13:29:37Z 1748 00:29:08 3.7815769596586
86
+ points.push(new GLatLng(35.21157,-80.82863)); // 66 (66 of 250.0) 2005-03-05T13:30:00Z 1771 00:29:31 3.83498558070155
87
+ points.push(new GLatLng(35.21099,-80.82798)); // 67 (67 of 250.0) 2005-03-05T13:30:27Z 1798 00:29:58 3.8893184152624
88
+ points.push(new GLatLng(35.21071,-80.82757)); // 68 (68 of 250.0) 2005-03-05T13:30:42Z 1813 00:30:13 3.91948275228275
89
+ points.push(new GLatLng(35.21015,-80.82644)); // 69 (69 of 250.0) 2005-03-05T13:31:20Z 1851 00:30:51 3.99408715367927
90
+ points.push(new GLatLng(35.21007,-80.82633)); // 70 (70 of 250.0) 2005-03-05T13:31:24Z 1855 00:30:55 4.00240016732769 4.0 00:07:57
91
+ points.push(new GLatLng(35.20979,-80.82599)); // 71 (71 of 250.0) 2005-03-05T13:31:37Z 1868 00:31:08 4.02965092287953
92
+ points.push(new GLatLng(35.20837,-80.82466)); // 72 (72 of 250.0) 2005-03-05T13:32:37Z 1928 00:32:08 4.15319027560221
93
+ points.push(new GLatLng(35.20794,-80.82436)); // 73 (73 of 250.0) 2005-03-05T13:32:52Z 1943 00:32:23 4.18738689295133
94
+ points.push(new GLatLng(35.20736,-80.82414)); // 74 (74 of 250.0) 2005-03-05T13:33:11Z 1962 00:32:42 4.22933945730162
95
+ points.push(new GLatLng(35.20704,-80.8241)); // 75 (75 of 250.0) 2005-03-05T13:33:21Z 1972 00:32:52 4.25156316199676
96
+ points.push(new GLatLng(35.20659,-80.8241)); // 76 (76 of 250.0) 2005-03-05T13:33:35Z 1986 00:33:06 4.28265362467911
97
+ points.push(new GLatLng(35.20607,-80.82414)); // 77 (77 of 250.0) 2005-03-05T13:33:51Z 2002 00:33:22 4.31865129835617
98
+ points.push(new GLatLng(35.2047,-80.82448)); // 78 (78 of 250.0) 2005-03-05T13:34:38Z 2049 00:34:09 4.41523110646448
99
+ points.push(new GLatLng(35.20286,-80.82489)); // 79 (79 of 250.0) 2005-03-05T13:35:42Z 2113 00:35:13 4.5444466773487
100
+ points.push(new GLatLng(35.20142,-80.82511)); // 80 (80 of 250.0) 2005-03-05T13:36:29Z 2160 00:36:00 4.64470853975442
101
+ points.push(new GLatLng(35.20073,-80.82528)); // 81 (81 of 250.0) 2005-03-05T13:36:52Z 2183 00:36:23 4.69333712696039
102
+ points.push(new GLatLng(35.19947,-80.82569)); // 82 (82 of 250.0) 2005-03-05T13:37:35Z 2226 00:37:06 4.78341534575197
103
+ points.push(new GLatLng(35.1985,-80.82612)); // 83 (83 of 250.0) 2005-03-05T13:38:07Z 2258 00:37:38 4.8546942210228
104
+ points.push(new GLatLng(35.19822,-80.82633)); // 84 (84 of 250.0) 2005-03-05T13:38:18Z 2269 00:37:49 4.87738353125698
105
+ points.push(new GLatLng(35.19809,-80.82629)); // 85 (85 of 250.0) 2005-03-05T13:38:21Z 2272 00:37:52 4.88664508854348
106
+ points.push(new GLatLng(35.19794,-80.82633)); // 86 (86 of 250.0) 2005-03-05T13:38:26Z 2277 00:37:57 4.89725196852619
107
+ points.push(new GLatLng(35.19646,-80.82706)); // 87 (87 of 250.0) 2005-03-05T13:39:20Z 2331 00:38:51 5.00749881672153 5.0 00:07:56
108
+ points.push(new GLatLng(35.19588,-80.82734)); // 88 (88 of 250.0) 2005-03-05T13:39:40Z 2351 00:39:11 5.050576534569
109
+ points.push(new GLatLng(35.19507,-80.8276)); // 89 (89 of 250.0) 2005-03-05T13:40:07Z 2378 00:39:38 5.10843268542583
110
+ points.push(new GLatLng(35.19331,-80.82835)); // 90 (90 of 250.0) 2005-03-05T13:41:10Z 2441 00:40:41 5.23719334496019
111
+ points.push(new GLatLng(35.19311,-80.82839)); // 91 (91 of 250.0) 2005-03-05T13:41:17Z 2448 00:40:48 5.25119470467369
112
+ points.push(new GLatLng(35.19305,-80.8279)); // 92 (92 of 250.0) 2005-03-05T13:41:31Z 2462 00:41:02 5.27916957701965
113
+ points.push(new GLatLng(35.19286,-80.82712)); // 93 (93 of 250.0) 2005-03-05T13:41:54Z 2485 00:41:25 5.32512429470667
114
+ points.push(new GLatLng(35.19281,-80.82665)); // 94 (94 of 250.0) 2005-03-05T13:42:07Z 2498 00:41:38 5.35188512689578
115
+ points.push(new GLatLng(35.19341,-80.82526)); // 95 (95 of 250.0) 2005-03-05T13:42:47Z 2538 00:42:18 5.44064176601869
116
+ points.push(new GLatLng(35.19339,-80.82506)); // 96 (96 of 250.0) 2005-03-05T13:42:52Z 2543 00:42:23 5.45201819754931
117
+ points.push(new GLatLng(35.19262,-80.82457)); // 97 (97 of 250.0) 2005-03-05T13:43:15Z 2566 00:42:46 5.51198131194714
118
+ points.push(new GLatLng(35.192,-80.8241)); // 98 (98 of 250.0) 2005-03-05T13:43:41Z 2592 00:43:12 5.56237103993908
119
+ points.push(new GLatLng(35.1915,-80.82378)); // 99 (99 of 250.0) 2005-03-05T13:44:00Z 2611 00:43:31 5.60135579217499
120
+ points.push(new GLatLng(35.18996,-80.82313)); // 100 (100 of 250.0) 2005-03-05T13:44:53Z 2664 00:44:24 5.71390631630715
121
+ points.push(new GLatLng(35.18932,-80.82279)); // 101 (101 of 250.0) 2005-03-05T13:45:14Z 2685 00:44:45 5.76211154544005
122
+ points.push(new GLatLng(35.1879,-80.82223)); // 102 (102 of 250.0) 2005-03-05T13:46:05Z 2736 00:45:36 5.86518904360886
123
+ points.push(new GLatLng(35.18781,-80.82225)); // 103 (103 of 250.0) 2005-03-05T13:46:10Z 2741 00:45:41 5.87150921538085
124
+ points.push(new GLatLng(35.18571,-80.82131)); // 104 (104 of 250.0) 2005-03-05T13:47:20Z 2811 00:46:51 6.02600216440376 6.0 00:08:00
125
+ points.push(new GLatLng(35.1849,-80.82105)); // 105 (105 of 250.0) 2005-03-05T13:47:50Z 2841 00:47:21 6.08385879638182
126
+ points.push(new GLatLng(35.18447,-80.82088)); // 106 (106 of 250.0) 2005-03-05T13:48:06Z 2857 00:47:37 6.11507981370546
127
+ points.push(new GLatLng(35.18376,-80.82045)); // 107 (107 of 250.0) 2005-03-05T13:48:29Z 2880 00:48:00 6.16981423395522
128
+ points.push(new GLatLng(35.18344,-80.82032)); // 108 (108 of 250.0) 2005-03-05T13:48:40Z 2891 00:48:11 6.19310985522704
129
+ points.push(new GLatLng(35.18301,-80.82017)); // 109 (109 of 250.0) 2005-03-05T13:48:56Z 2907 00:48:27 6.22400249414074
130
+ points.push(new GLatLng(35.18271,-80.82011)); // 110 (110 of 250.0) 2005-03-05T13:49:08Z 2919 00:48:39 6.24500459583866
131
+ points.push(new GLatLng(35.18101,-80.81938)); // 111 (111 of 250.0) 2005-03-05T13:50:13Z 2984 00:49:44 6.36948149803506
132
+ points.push(new GLatLng(35.1785,-80.81846)); // 112 (112 of 250.0) 2005-03-05T13:51:53Z 3084 00:51:24 6.550512405446
133
+ points.push(new GLatLng(35.17769,-80.81798)); // 113 (113 of 250.0) 2005-03-05T13:52:22Z 3113 00:51:53 6.61269444995211
134
+ points.push(new GLatLng(35.17734,-80.8177)); // 114 (114 of 250.0) 2005-03-05T13:52:36Z 3127 00:52:07 6.64158687021785
135
+ points.push(new GLatLng(35.17719,-80.81781)); // 115 (115 of 250.0) 2005-03-05T13:52:42Z 3133 00:52:13 6.65366946336068
136
+ points.push(new GLatLng(35.17706,-80.81807)); // 116 (116 of 250.0) 2005-03-05T13:52:50Z 3141 00:52:21 6.67088160702726
137
+ points.push(new GLatLng(35.17599,-80.81925)); // 117 (117 of 250.0) 2005-03-05T13:53:36Z 3187 00:53:07 6.77040907973266
138
+ points.push(new GLatLng(35.17563,-80.81976)); // 118 (118 of 250.0) 2005-03-05T13:53:54Z 3205 00:53:25 6.80846379300353
139
+ points.push(new GLatLng(35.17515,-80.82002)); // 119 (119 of 250.0) 2005-03-05T13:54:10Z 3221 00:53:41 6.8447321568443
140
+ points.push(new GLatLng(35.17483,-80.82045)); // 120 (120 of 250.0) 2005-03-05T13:54:25Z 3236 00:53:56 6.87757273270934
141
+ points.push(new GLatLng(35.17445,-80.82082)); // 121 (121 of 250.0) 2005-03-05T13:54:41Z 3252 00:54:12 6.91112718199423
142
+ points.push(new GLatLng(35.174,-80.82114)); // 122 (122 of 250.0) 2005-03-05T13:54:58Z 3269 00:54:29 6.94708839683731
143
+ points.push(new GLatLng(35.17322,-80.82146)); // 123 (123 of 250.0) 2005-03-05T13:55:24Z 3295 00:54:55 7.00392808652734 7.0 00:08:04
144
+ points.push(new GLatLng(35.17286,-80.82178)); // 124 (124 of 250.0) 2005-03-05T13:55:39Z 3310 00:55:10 7.03467282378939
145
+ points.push(new GLatLng(35.17254,-80.82219)); // 125 (125 of 250.0) 2005-03-05T13:55:55Z 3326 00:55:26 7.06668767280766
146
+ points.push(new GLatLng(35.17215,-80.82315)); // 126 (126 of 250.0) 2005-03-05T13:56:23Z 3354 00:55:54 7.12723097967067
147
+ points.push(new GLatLng(35.17035,-80.82251)); // 127 (127 of 250.0) 2005-03-05T13:57:23Z 3414 00:56:54 7.25673914000319
148
+ points.push(new GLatLng(35.16996,-80.82245)); // 128 (128 of 250.0) 2005-03-05T13:57:37Z 3428 00:57:08 7.28389646203507
149
+ points.push(new GLatLng(35.16955,-80.82245)); // 129 (129 of 250.0) 2005-03-05T13:57:52Z 3443 00:57:23 7.31222335157005
150
+ points.push(new GLatLng(35.16908,-80.82249)); // 130 (130 of 250.0) 2005-03-05T13:58:08Z 3459 00:57:39 7.34477414431401
151
+ points.push(new GLatLng(35.16831,-80.82264)); // 131 (131 of 250.0) 2005-03-05T13:58:36Z 3487 00:58:07 7.39864378608744
152
+ points.push(new GLatLng(35.16807,-80.82288)); // 132 (132 of 250.0) 2005-03-05T13:58:45Z 3496 00:58:16 7.42006061565282
153
+ points.push(new GLatLng(35.16786,-80.82328)); // 133 (133 of 250.0) 2005-03-05T13:58:58Z 3509 00:58:29 7.4469098467018
154
+ points.push(new GLatLng(35.16743,-80.82599)); // 134 (134 of 250.0) 2005-03-05T14:00:12Z 3583 00:59:43 7.60282457704534
155
+ points.push(new GLatLng(35.16737,-80.82659)); // 135 (135 of 250.0) 2005-03-05T14:00:27Z 3598 00:59:58 7.63696467666009
156
+ points.push(new GLatLng(35.16743,-80.82665)); // 136 (136 of 250.0) 2005-03-05T14:00:30Z 3601 01:00:01 7.64231920897222
157
+ points.push(new GLatLng(35.16764,-80.82674)); // 137 (137 of 250.0) 2005-03-05T14:00:36Z 3607 01:00:07 7.6576928224623
158
+ points.push(new GLatLng(35.16846,-80.82747)); // 138 (138 of 250.0) 2005-03-05T14:01:06Z 3637 01:00:37 7.72776080256192
159
+ points.push(new GLatLng(35.16865,-80.828)); // 139 (139 of 250.0) 2005-03-05T14:01:21Z 3652 01:00:52 7.76044621745516
160
+ points.push(new GLatLng(35.16874,-80.82854)); // 140 (140 of 250.0) 2005-03-05T14:01:35Z 3666 01:01:06 7.7915719134302
161
+ points.push(new GLatLng(35.16872,-80.82908)); // 141 (141 of 250.0) 2005-03-05T14:01:50Z 3681 01:01:21 7.82210143346606
162
+ points.push(new GLatLng(35.16859,-80.82953)); // 142 (142 of 250.0) 2005-03-05T14:02:02Z 3693 01:01:33 7.84905710916142
163
+ points.push(new GLatLng(35.16852,-80.83021)); // 143 (143 of 250.0) 2005-03-05T14:02:21Z 3712 01:01:52 7.88776576241967
164
+ points.push(new GLatLng(35.16855,-80.83064)); // 144 (144 of 250.0) 2005-03-05T14:02:34Z 3725 01:02:05 7.91213983611875
165
+ points.push(new GLatLng(35.16861,-80.83077)); // 145 (145 of 250.0) 2005-03-05T14:02:38Z 3729 01:02:09 7.9205715017907
166
+ points.push(new GLatLng(35.16876,-80.83081)); // 146 (146 of 250.0) 2005-03-05T14:02:43Z 3734 01:02:14 7.93117838177341
167
+ points.push(new GLatLng(35.16915,-80.83077)); // 147 (147 of 250.0) 2005-03-05T14:02:55Z 3746 01:02:26 7.95821802360938
168
+ points.push(new GLatLng(35.16958,-80.83064)); // 148 (148 of 250.0) 2005-03-05T14:03:11Z 3762 01:02:42 7.98882051211451
169
+ points.push(new GLatLng(35.17026,-80.83036)); // 149 (149 of 250.0) 2005-03-05T14:03:37Z 3788 01:03:08 8.03839171773265 8.0 00:08:13
170
+ points.push(new GLatLng(35.17082,-80.83004)); // 150 (150 of 250.0) 2005-03-05T14:03:58Z 3809 01:03:29 8.08109496236739
171
+ points.push(new GLatLng(35.17118,-80.82994)); // 151 (151 of 250.0) 2005-03-05T14:04:13Z 3824 01:03:44 8.10660050751473
172
+ points.push(new GLatLng(35.17153,-80.82991)); // 152 (152 of 250.0) 2005-03-05T14:04:27Z 3838 01:03:58 8.13084131307244
173
+ points.push(new GLatLng(35.17191,-80.83)); // 153 (153 of 250.0) 2005-03-05T14:04:42Z 3853 01:04:13 8.15758302522269
174
+ points.push(new GLatLng(35.17219,-80.83017)); // 154 (154 of 250.0) 2005-03-05T14:04:54Z 3865 01:04:25 8.17917959949849
175
+ points.push(new GLatLng(35.17277,-80.83103)); // 155 (155 of 250.0) 2005-03-05T14:05:23Z 3894 01:04:54 8.24214574357516
176
+ points.push(new GLatLng(35.17344,-80.83221)); // 156 (156 of 250.0) 2005-03-05T14:05:57Z 3928 01:05:28 8.32328626319684
177
+ points.push(new GLatLng(35.17352,-80.8323)); // 157 (157 of 250.0) 2005-03-05T14:06:00Z 3931 01:05:31 8.33079526926888
178
+ points.push(new GLatLng(35.17406,-80.83341)); // 158 (158 of 250.0) 2005-03-05T14:06:33Z 3964 01:06:04 8.40374450603997
179
+ points.push(new GLatLng(35.17427,-80.8344)); // 159 (159 of 250.0) 2005-03-05T14:07:03Z 3994 01:06:34 8.46150615929062
180
+ points.push(new GLatLng(35.17419,-80.8365)); // 160 (160 of 250.0) 2005-03-05T14:08:03Z 4054 01:07:34 8.58023122986756
181
+ points.push(new GLatLng(35.17423,-80.83654)); // 161 (161 of 250.0) 2005-03-05T14:08:05Z 4056 01:07:36 8.58380080977036
182
+ points.push(new GLatLng(35.1744,-80.83659)); // 162 (162 of 250.0) 2005-03-05T14:08:13Z 4064 01:07:44 8.59588081085456
183
+ points.push(new GLatLng(35.17526,-80.83644)); // 163 (163 of 250.0) 2005-03-05T14:08:42Z 4093 01:08:13 8.65589902578633
184
+ points.push(new GLatLng(35.17653,-80.83631)); // 164 (164 of 250.0) 2005-03-05T14:09:29Z 4140 01:09:00 8.74394991696125
185
+ points.push(new GLatLng(35.17689,-80.83635)); // 165 (165 of 250.0) 2005-03-05T14:09:43Z 4154 01:09:14 8.76892464945857
186
+ points.push(new GLatLng(35.17711,-80.83631)); // 166 (166 of 250.0) 2005-03-05T14:09:51Z 4162 01:09:22 8.78429124515253
187
+ points.push(new GLatLng(35.17719,-80.83622)); // 167 (167 of 250.0) 2005-03-05T14:09:54Z 4165 01:09:25 8.79180001953306
188
+ points.push(new GLatLng(35.17741,-80.83616)); // 168 (168 of 250.0) 2005-03-05T14:10:01Z 4172 01:09:32 8.80737286936987
189
+ points.push(new GLatLng(35.17859,-80.83564)); // 169 (169 of 250.0) 2005-03-05T14:10:42Z 4213 01:10:13 8.89402644251433
190
+ points.push(new GLatLng(35.1799,-80.83532)); // 170 (170 of 250.0) 2005-03-05T14:11:24Z 4255 01:10:55 8.98632069221351
191
+ points.push(new GLatLng(35.1808,-80.83517)); // 171 (171 of 250.0) 2005-03-05T14:11:54Z 4285 01:11:25 9.04907599898347 9.0 00:08:17
192
+ points.push(new GLatLng(35.18166,-80.83476)); // 172 (172 of 250.0) 2005-03-05T14:12:22Z 4313 01:11:53 9.11284481374281
193
+ points.push(new GLatLng(35.18256,-80.83455)); // 173 (173 of 250.0) 2005-03-05T14:12:55Z 4346 01:12:26 9.17614648510883
194
+ points.push(new GLatLng(35.18423,-80.83403)); // 174 (174 of 250.0) 2005-03-05T14:13:54Z 4405 01:13:25 9.29520453074226
195
+ points.push(new GLatLng(35.18462,-80.83371)); // 175 (175 of 250.0) 2005-03-05T14:14:09Z 4420 01:13:40 9.32764750241309
196
+ points.push(new GLatLng(35.18565,-80.83227)); // 176 (176 of 250.0) 2005-03-05T14:15:02Z 4473 01:14:33 9.43570220637116
197
+ points.push(new GLatLng(35.18599,-80.83189)); // 177 (177 of 250.0) 2005-03-05T14:15:19Z 4490 01:14:50 9.46751770659419
198
+ points.push(new GLatLng(35.18629,-80.83197)); // 178 (178 of 250.0) 2005-03-05T14:15:30Z 4501 01:15:01 9.48873130253847
199
+ points.push(new GLatLng(35.18657,-80.83225)); // 179 (179 of 250.0) 2005-03-05T14:15:42Z 4513 01:15:13 9.51371536776566
200
+ points.push(new GLatLng(35.18687,-80.8326)); // 180 (180 of 250.0) 2005-03-05T14:15:56Z 4527 01:15:27 9.5423541952161
201
+ points.push(new GLatLng(35.18702,-80.83305)); // 181 (181 of 250.0) 2005-03-05T14:16:09Z 4540 01:15:40 9.56979593557512
202
+ points.push(new GLatLng(35.18648,-80.8335)); // 182 (182 of 250.0) 2005-03-05T14:16:20Z 4551 01:15:51 9.61493553806241
203
+ points.push(new GLatLng(35.18597,-80.83414)); // 183 (183 of 250.0) 2005-03-05T14:16:45Z 4576 01:16:16 9.66540881829436
204
+ points.push(new GLatLng(35.18573,-80.83451)); // 184 (184 of 250.0) 2005-03-05T14:16:58Z 4589 01:16:29 9.69208180658561
205
+ points.push(new GLatLng(35.18483,-80.83549)); // 185 (185 of 250.0) 2005-03-05T14:17:39Z 4630 01:17:10 9.77532067654695
206
+ points.push(new GLatLng(35.18451,-80.83566)); // 186 (186 of 250.0) 2005-03-05T14:17:52Z 4643 01:17:23 9.79942350765473
207
+ points.push(new GLatLng(35.18412,-80.83577)); // 187 (187 of 250.0) 2005-03-05T14:18:06Z 4657 01:17:37 9.82707536807506
208
+ points.push(new GLatLng(35.18342,-80.8359)); // 188 (188 of 250.0) 2005-03-05T14:18:30Z 4681 01:18:01 9.87599231512961
209
+ points.push(new GLatLng(35.18249,-80.83618)); // 189 (189 of 250.0) 2005-03-05T14:19:03Z 4714 01:18:34 9.94216278012939
210
+ points.push(new GLatLng(35.18157,-80.83635)); // 190 (190 of 250.0) 2005-03-05T14:19:33Z 4744 01:19:04 10.0064464032095 10.0 00:07:39
211
+ points.push(new GLatLng(35.18129,-80.83646)); // 191 (191 of 250.0) 2005-03-05T14:19:43Z 4754 01:19:14 10.0267643972185
212
+ points.push(new GLatLng(35.18125,-80.83661)); // 192 (192 of 250.0) 2005-03-05T14:19:47Z 4758 01:19:18 10.0356740064459
213
+ points.push(new GLatLng(35.18136,-80.83751)); // 193 (193 of 250.0) 2005-03-05T14:20:11Z 4782 01:19:42 10.0870616612511
214
+ points.push(new GLatLng(35.18144,-80.8379)); // 194 (194 of 250.0) 2005-03-05T14:20:20Z 4791 01:19:51 10.1097677575187
215
+ points.push(new GLatLng(35.18174,-80.83865)); // 195 (195 of 250.0) 2005-03-05T14:20:43Z 4814 01:20:14 10.1569196199737
216
+ points.push(new GLatLng(35.18236,-80.8394)); // 196 (196 of 250.0) 2005-03-05T14:21:08Z 4839 01:20:39 10.2171572709319
217
+ points.push(new GLatLng(35.18284,-80.83978)); // 197 (197 of 250.0) 2005-03-05T14:21:26Z 4857 01:20:57 10.2566572213943
218
+ points.push(new GLatLng(35.1832,-80.84004)); // 198 (198 of 250.0) 2005-03-05T14:21:39Z 4870 01:21:10 10.2855395238321
219
+ points.push(new GLatLng(35.18365,-80.84008)); // 199 (199 of 250.0) 2005-03-05T14:21:53Z 4884 01:21:24 10.3167119123429
220
+ points.push(new GLatLng(35.18414,-80.84019)); // 200 (200 of 250.0) 2005-03-05T14:22:10Z 4901 01:21:41 10.3511311454717
221
+ points.push(new GLatLng(35.18417,-80.84036)); // 201 (201 of 250.0) 2005-03-05T14:22:13Z 4904 01:21:44 10.360951764936
222
+ points.push(new GLatLng(35.18447,-80.8406)); // 202 (202 of 250.0) 2005-03-05T14:22:25Z 4916 01:21:56 10.3857160026808
223
+ points.push(new GLatLng(35.185,-80.84062)); // 203 (203 of 250.0) 2005-03-05T14:22:42Z 4933 01:22:13 10.4223511038034
224
+ points.push(new GLatLng(35.18608,-80.84045)); // 204 (204 of 250.0) 2005-03-05T14:23:17Z 4968 01:22:48 10.4975832401729
225
+ points.push(new GLatLng(35.18651,-80.84043)); // 205 (205 of 250.0) 2005-03-05T14:23:31Z 4982 01:23:02 10.5273134433703
226
+ points.push(new GLatLng(35.18696,-80.84021)); // 206 (206 of 250.0) 2005-03-05T14:23:48Z 4999 01:23:19 10.5607938751304
227
+ points.push(new GLatLng(35.18736,-80.84021)); // 207 (207 of 250.0) 2005-03-05T14:24:03Z 5014 01:23:34 10.5884298761554
228
+ points.push(new GLatLng(35.18771,-80.84011)); // 208 (208 of 250.0) 2005-03-05T14:24:18Z 5029 01:23:49 10.6132619550072
229
+ points.push(new GLatLng(35.18867,-80.83955)); // 209 (209 of 250.0) 2005-03-05T14:24:56Z 5067 01:24:27 10.6867400519163
230
+ points.push(new GLatLng(35.19116,-80.83779)); // 210 (210 of 250.0) 2005-03-05T14:26:33Z 5164 01:26:04 10.8854138818426
231
+ points.push(new GLatLng(35.19176,-80.83738)); // 211 (211 of 250.0) 2005-03-05T14:26:56Z 5187 01:26:27 10.9328937584589
232
+ points.push(new GLatLng(35.19228,-80.83708)); // 212 (212 of 250.0) 2005-03-05T14:27:14Z 5205 01:26:45 10.9726134949364
233
+ points.push(new GLatLng(35.19273,-80.83687)); // 213 (213 of 250.0) 2005-03-05T14:27:30Z 5221 01:27:01 11.0058882486447 11.0 00:07:57
234
+ points.push(new GLatLng(35.19322,-80.83676)); // 214 (214 of 250.0) 2005-03-05T14:27:48Z 5239 01:27:19 11.0403073301359
235
+ points.push(new GLatLng(35.19365,-80.83678)); // 215 (215 of 250.0) 2005-03-05T14:28:01Z 5252 01:27:32 11.0700374748156
236
+ points.push(new GLatLng(35.19387,-80.83684)); // 216 (216 of 250.0) 2005-03-05T14:28:07Z 5258 01:27:38 11.0856101012175
237
+ points.push(new GLatLng(35.19462,-80.83697)); // 217 (217 of 250.0) 2005-03-05T14:28:34Z 5285 01:28:05 11.1379448656822
238
+ points.push(new GLatLng(35.19485,-80.83674)); // 218 (218 of 250.0) 2005-03-05T14:28:44Z 5295 01:28:15 11.158466654738
239
+ points.push(new GLatLng(35.19562,-80.83384)); // 219 (219 of 250.0) 2005-03-05T14:30:09Z 5380 01:29:40 11.3306260112061
240
+ points.push(new GLatLng(35.19597,-80.8333)); // 220 (220 of 250.0) 2005-03-05T14:30:31Z 5402 01:30:02 11.3695396087745
241
+ points.push(new GLatLng(35.19644,-80.83272)); // 221 (221 of 250.0) 2005-03-05T14:30:56Z 5427 01:30:27 11.4156565260447
242
+ points.push(new GLatLng(35.19674,-80.8323)); // 222 (222 of 250.0) 2005-03-05T14:31:14Z 5445 01:30:45 11.4471510623899
243
+ points.push(new GLatLng(35.197,-80.83219)); // 223 (223 of 250.0) 2005-03-05T14:31:24Z 5455 01:30:55 11.4661576750723
244
+ points.push(new GLatLng(35.19753,-80.8321)); // 224 (224 of 250.0) 2005-03-05T14:31:45Z 5476 01:31:16 11.5031262424333
245
+ points.push(new GLatLng(35.19796,-80.83208)); // 225 (225 of 250.0) 2005-03-05T14:31:59Z 5490 01:31:30 11.5328563871129
246
+ points.push(new GLatLng(35.1985,-80.83223)); // 226 (226 of 250.0) 2005-03-05T14:32:19Z 5510 01:31:50 11.5711140454601
247
+ points.push(new GLatLng(35.19929,-80.83225)); // 227 (227 of 250.0) 2005-03-05T14:32:47Z 5538 01:32:18 11.6257068382031
248
+ points.push(new GLatLng(35.19983,-80.83212)); // 228 (228 of 250.0) 2005-03-05T14:33:06Z 5557 01:32:37 11.6637304969813
249
+ points.push(new GLatLng(35.20062,-80.83172)); // 229 (229 of 250.0) 2005-03-05T14:33:36Z 5587 01:33:07 11.722798828852
250
+ points.push(new GLatLng(35.20097,-80.83174)); // 230 (230 of 250.0) 2005-03-05T14:33:48Z 5599 01:33:19 11.7470067417448
251
+ points.push(new GLatLng(35.20138,-80.83204)); // 231 (231 of 250.0) 2005-03-05T14:34:05Z 5616 01:33:36 11.7800107114036
252
+ points.push(new GLatLng(35.20277,-80.83322)); // 232 (232 of 250.0) 2005-03-05T14:35:00Z 5671 01:34:31 11.8968891531704
253
+ points.push(new GLatLng(35.20316,-80.83363)); // 233 (233 of 250.0) 2005-03-05T14:35:19Z 5690 01:34:50 11.9324108248346
254
+ points.push(new GLatLng(35.20419,-80.83504)); // 234 (234 of 250.0) 2005-03-05T14:36:13Z 5744 01:35:44 12.0391830723979 12.0 00:08:43
255
+ points.push(new GLatLng(35.205,-80.83601)); // 235 (235 of 250.0) 2005-03-05T14:36:50Z 5781 01:36:21 12.1174804265797
256
+ points.push(new GLatLng(35.20565,-80.83687)); // 236 (236 of 250.0) 2005-03-05T14:37:22Z 5813 01:36:53 12.1836152827885
257
+ points.push(new GLatLng(35.20631,-80.83768)); // 237 (237 of 250.0) 2005-03-05T14:37:56Z 5847 01:37:27 12.2481924440512
258
+ points.push(new GLatLng(35.20775,-80.8391)); // 238 (238 of 250.0) 2005-03-05T14:39:06Z 5917 01:38:37 12.3759579346014
259
+ points.push(new GLatLng(35.20934,-80.84051)); // 239 (239 of 250.0) 2005-03-05T14:40:19Z 5990 01:39:50 12.5116160401105
260
+ points.push(new GLatLng(35.21088,-80.84197)); // 240 (240 of 250.0) 2005-03-05T14:41:34Z 6065 01:41:05 12.6462009665708
261
+ points.push(new GLatLng(35.21189,-80.84279)); // 241 (241 of 250.0) 2005-03-05T14:42:18Z 6109 01:41:49 12.7299382667899
262
+ points.push(new GLatLng(35.21225,-80.84317)); // 242 (242 of 250.0) 2005-03-05T14:42:34Z 6125 01:42:05 12.7627826566699
263
+ points.push(new GLatLng(35.21393,-80.84459)); // 243 (243 of 250.0) 2005-03-05T14:43:44Z 6195 01:43:15 12.9038408253177
264
+ points.push(new GLatLng(35.21406,-80.8445)); // 244 (244 of 250.0) 2005-03-05T14:43:49Z 6200 01:43:20 12.9141595434003
265
+ points.push(new GLatLng(35.21431,-80.84399)); // 245 (245 of 250.0) 2005-03-05T14:44:05Z 6216 01:43:36 12.9477315128867
266
+ points.push(new GLatLng(35.21537,-80.84242)); // 246 (246 of 250.0) 2005-03-05T14:45:00Z 6271 01:44:31 13.0626968352779 13.0 00:08:47
267
+ points.push(new GLatLng(35.21586,-80.84159)); // 247 (247 of 250.0) 2005-03-05T14:45:30Z 6301 01:45:01 13.1204983528532
268
+ points.push(new GLatLng(35.21695,-80.83998)); // 248 (248 of 250.0) 2005-03-05T14:46:29Z 6360 01:46:00 13.2385232480761
269
+ points.push(new GLatLng(35.21728,-80.83957)); // 249 (249 of 250.0) 2005-03-05T14:46:43Z 6374 01:46:14 13.2710100551754
270
+ points.push(new GLatLng(35.21831,-80.83809)); // 250 (250 of 250.0) 2005-03-05T14:47:26Z 6417 01:46:57 13.3807489594998
271
+
272
+ var routePolyline = new GPolyline(points);
273
+ map.addOverlay(routePolyline);
274
+
275
+ // Create a base icon for all of our markers that specifies the
276
+ // shadow, icon dimensions, etc.
277
+ var baseIcon = new GIcon();
278
+ baseIcon.shadow = "http://www.joakim-systems.com/gicons/shadow50.png";
279
+ baseIcon.iconSize = new GSize(20, 34);
280
+ baseIcon.shadowSize = new GSize(37, 34);
281
+ baseIcon.iconAnchor = new GPoint(9, 34);
282
+ baseIcon.infoWindowAnchor = new GPoint(9, 2);
283
+ baseIcon.infoShadowAnchor = new GPoint(18, 25);
284
+
285
+ var iconStart = new GIcon(baseIcon);
286
+ iconStart.image = "http://www.joakim-systems.com/gicons/dd-start.png";
287
+ var pStart = new GPoint(-80.84566, 35.22101);
288
+ var mStart = new GMarker(pStart, iconStart);
289
+ GEvent.addListener(mStart, "click", function() {
290
+ mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td>0.0</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:00:29Z </td></tr><tr><td>Elapsed Time: </td><td>00:00:00 </td></tr><tr><td>Average Pace: </td><td> </td></tr><tr><td>Lat/Lng: </td><td>35.22101 , -80.84566 </td></tr><tr><td>Altitude: </td><td>219.799m </td></tr></table>");
291
+ });
292
+ map.addOverlay(mStart);
293
+
294
+ var icon1 = new GIcon(baseIcon);
295
+ icon1.image = "http://www.joakim-systems.com/gicons/marker1.png";
296
+ var p1 = new GPoint(-80.85137, 35.22487);
297
+ var m1 = new GMarker(p1, icon1);
298
+ GEvent.addListener(m1, "click", function() {
299
+ m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.00556377588005</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:07:49Z </td></tr><tr><td>Elapsed Time: </td><td>00:07:20 </td></tr><tr><td>Average Pace: </td><td>7:17.6 </td></tr><tr><td>Lat/Lng: </td><td>35.22487 , -80.85137 </td></tr><tr><td>Altitude: </td><td>227.489m </td></tr></table>");
300
+ });
301
+ map.addOverlay(m1);
302
+
303
+ var icon2 = new GIcon(baseIcon);
304
+ icon2.image = "http://www.joakim-systems.com/gicons/marker2.png";
305
+ var p2 = new GPoint(-80.84968, 35.23105);
306
+ var m2 = new GMarker(p2, icon2);
307
+ GEvent.addListener(m2, "click", function() {
308
+ m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.00442699838485</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:15:36Z </td></tr><tr><td>Elapsed Time: </td><td>00:15:07 </td></tr><tr><td>Average Pace: </td><td>7:32.5 </td></tr><tr><td>Lat/Lng: </td><td>35.23105 , -80.84968 </td></tr><tr><td>Altitude: </td><td>224.125m </td></tr></table>");
309
+ });
310
+ map.addOverlay(m2);
311
+
312
+ var icon3 = new GIcon(baseIcon);
313
+ icon3.image = "http://www.joakim-systems.com/gicons/marker3.png";
314
+ var p3 = new GPoint(-80.83886, 35.22);
315
+ var m3 = new GMarker(p3, icon3);
316
+ GEvent.addListener(m3, "click", function() {
317
+ m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00768703301529</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:23:27Z </td></tr><tr><td>Elapsed Time: </td><td>00:22:58 </td></tr><tr><td>Average Pace: </td><td>7:38.2 </td></tr><tr><td>Lat/Lng: </td><td>35.22 , -80.83886 </td></tr><tr><td>Altitude: </td><td>185.672m </td></tr></table>");
318
+ });
319
+ map.addOverlay(m3);
320
+
321
+ var icon4 = new GIcon(baseIcon);
322
+ icon4.image = "http://www.joakim-systems.com/gicons/marker4.png";
323
+ var p4 = new GPoint(-80.82633, 35.21007);
324
+ var m4 = new GMarker(p4, icon4);
325
+ GEvent.addListener(m4, "click", function() {
326
+ m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.00240016732769</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:31:24Z </td></tr><tr><td>Elapsed Time: </td><td>00:30:55 </td></tr><tr><td>Average Pace: </td><td>7:43.5 </td></tr><tr><td>Lat/Lng: </td><td>35.21007 , -80.82633 </td></tr><tr><td>Altitude: </td><td>214.511m </td></tr></table>");
327
+ });
328
+ map.addOverlay(m4);
329
+
330
+ var icon5 = new GIcon(baseIcon);
331
+ icon5.image = "http://www.joakim-systems.com/gicons/marker5.png";
332
+ var p5 = new GPoint(-80.82706, 35.19646);
333
+ var m5 = new GMarker(p5, icon5);
334
+ GEvent.addListener(m5, "click", function() {
335
+ m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.00749881672153</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:39:20Z </td></tr><tr><td>Elapsed Time: </td><td>00:38:51 </td></tr><tr><td>Average Pace: </td><td>7:45.5 </td></tr><tr><td>Lat/Lng: </td><td>35.19646 , -80.82706 </td></tr><tr><td>Altitude: </td><td>220.76m </td></tr></table>");
336
+ });
337
+ map.addOverlay(m5);
338
+
339
+ var icon6 = new GIcon(baseIcon);
340
+ icon6.image = "http://www.joakim-systems.com/gicons/marker6.png";
341
+ var p6 = new GPoint(-80.82131, 35.18571);
342
+ var m6 = new GMarker(p6, icon6);
343
+ GEvent.addListener(m6, "click", function() {
344
+ m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.02600216440376</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:47:20Z </td></tr><tr><td>Elapsed Time: </td><td>00:46:51 </td></tr><tr><td>Average Pace: </td><td>7:46.5 </td></tr><tr><td>Lat/Lng: </td><td>35.18571 , -80.82131 </td></tr><tr><td>Altitude: </td><td>209.224m </td></tr></table>");
345
+ });
346
+ map.addOverlay(m6);
347
+
348
+ var icon7 = new GIcon(baseIcon);
349
+ icon7.image = "http://www.joakim-systems.com/gicons/marker7.png";
350
+ var p7 = new GPoint(-80.82146, 35.17322);
351
+ var m7 = new GMarker(p7, icon7);
352
+ GEvent.addListener(m7, "click", function() {
353
+ m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.00392808652734</td></tr><tr><td>Time of Day: </td><td>2005-03-05T13:55:24Z </td></tr><tr><td>Elapsed Time: </td><td>00:54:55 </td></tr><tr><td>Average Pace: </td><td>7:50.5 </td></tr><tr><td>Lat/Lng: </td><td>35.17322 , -80.82146 </td></tr><tr><td>Altitude: </td><td>201.053m </td></tr></table>");
354
+ });
355
+ map.addOverlay(m7);
356
+
357
+ var icon8 = new GIcon(baseIcon);
358
+ icon8.image = "http://www.joakim-systems.com/gicons/marker8.png";
359
+ var p8 = new GPoint(-80.83036, 35.17026);
360
+ var m8 = new GMarker(p8, icon8);
361
+ GEvent.addListener(m8, "click", function() {
362
+ m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.03839171773265</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:03:37Z </td></tr><tr><td>Elapsed Time: </td><td>01:03:08 </td></tr><tr><td>Average Pace: </td><td>7:51.2 </td></tr><tr><td>Lat/Lng: </td><td>35.17026 , -80.83036 </td></tr><tr><td>Altitude: </td><td>202.014m </td></tr></table>");
363
+ });
364
+ map.addOverlay(m8);
365
+
366
+ var icon9 = new GIcon(baseIcon);
367
+ icon9.image = "http://www.joakim-systems.com/gicons/marker9.png";
368
+ var p9 = new GPoint(-80.83517, 35.1808);
369
+ var m9 = new GMarker(p9, icon9);
370
+ GEvent.addListener(m9, "click", function() {
371
+ m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.04907599898347</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:11:54Z </td></tr><tr><td>Elapsed Time: </td><td>01:11:25 </td></tr><tr><td>Average Pace: </td><td>7:53.5 </td></tr><tr><td>Lat/Lng: </td><td>35.1808 , -80.83517 </td></tr><tr><td>Altitude: </td><td>216.915m </td></tr></table>");
372
+ });
373
+ map.addOverlay(m9);
374
+
375
+ var icon10 = new GIcon(baseIcon);
376
+ icon10.image = "http://www.joakim-systems.com/gicons/marker10.png";
377
+ var p10 = new GPoint(-80.83635, 35.18157);
378
+ var m10 = new GMarker(p10, icon10);
379
+ GEvent.addListener(m10, "click", function() {
380
+ m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0064464032095</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:19:33Z </td></tr><tr><td>Elapsed Time: </td><td>01:19:04 </td></tr><tr><td>Average Pace: </td><td>7:54.1 </td></tr><tr><td>Lat/Lng: </td><td>35.18157 , -80.83635 </td></tr><tr><td>Altitude: </td><td>214.992m </td></tr></table>");
381
+ });
382
+ map.addOverlay(m10);
383
+
384
+ var icon11 = new GIcon(baseIcon);
385
+ icon11.image = "http://www.joakim-systems.com/gicons/marker11.png";
386
+ var p11 = new GPoint(-80.83687, 35.19273);
387
+ var m11 = new GMarker(p11, icon11);
388
+ GEvent.addListener(m11, "click", function() {
389
+ m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0058882486447</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:27:30Z </td></tr><tr><td>Elapsed Time: </td><td>01:27:01 </td></tr><tr><td>Average Pace: </td><td>7:54.4 </td></tr><tr><td>Lat/Lng: </td><td>35.19273 , -80.83687 </td></tr><tr><td>Altitude: </td><td>218.357m </td></tr></table>");
390
+ });
391
+ map.addOverlay(m11);
392
+
393
+ var icon12 = new GIcon(baseIcon);
394
+ icon12.image = "http://www.joakim-systems.com/gicons/marker12.png";
395
+ var p12 = new GPoint(-80.83504, 35.20419);
396
+ var m12 = new GMarker(p12, icon12);
397
+ GEvent.addListener(m12, "click", function() {
398
+ m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0391830723979</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:36:13Z </td></tr><tr><td>Elapsed Time: </td><td>01:35:44 </td></tr><tr><td>Average Pace: </td><td>7:57.1 </td></tr><tr><td>Lat/Lng: </td><td>35.20419 , -80.83504 </td></tr><tr><td>Altitude: </td><td>208.743m </td></tr></table>");
399
+ });
400
+ map.addOverlay(m12);
401
+
402
+ var icon13 = new GIcon(baseIcon);
403
+ icon13.image = "http://www.joakim-systems.com/gicons/marker13.png";
404
+ var p13 = new GPoint(-80.84242, 35.21537);
405
+ var m13 = new GMarker(p13, icon13);
406
+ GEvent.addListener(m13, "click", function() {
407
+ m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0626968352779</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:45:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:44:31 </td></tr><tr><td>Average Pace: </td><td>8:0.1 </td></tr><tr><td>Lat/Lng: </td><td>35.21537 , -80.84242 </td></tr><tr><td>Altitude: </td><td>209.705m </td></tr></table>");
408
+ });
409
+ map.addOverlay(m13);
410
+
411
+ var iconFinish = new GIcon(baseIcon);
412
+ iconFinish.image = "http://www.joakim-systems.com/gicons/dd-end.png";
413
+ var pFinish = new GPoint(-80.83809, 35.21831);
414
+ var mFinish = new GMarker(pFinish, iconFinish);
415
+ GEvent.addListener(mFinish, "click", function() {
416
+ mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>13.3807489594998</td></tr><tr><td>Time of Day: </td><td>2005-03-05T14:47:26Z </td></tr><tr><td>Elapsed Time: </td><td>01:46:57 </td></tr><tr><td>Average Pace: </td><td>7:59.6 </td></tr><tr><td>Lat/Lng: </td><td>35.21831 , -80.83809 </td></tr><tr><td>Altitude: </td><td>208.263m </td></tr></table>");
417
+ });
418
+ map.addOverlay(mFinish);
419
+
420
+
421
+
422
+
423
+ GEvent.addListener(map, "click", function() {
424
+ var center = map.getCenter();
425
+
426
+ document.getElementById("messages").innerHTML = 'click: ' + center.toString();
427
+ });
428
+ GEvent.addListener(map, "moveend", function() {
429
+ var center = map.getCenter();
430
+
431
+ document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
432
+ });
433
+
434
+ }
435
+ }
436
+ //]]>
437
+
438
+ </script>
439
+ </head>
440
+ <body onload="load()" onunload="GUnload()">
441
+ <center>
442
+ <h3> Charlotte Corporate Cup Half-Marathon - 2005-03-05 </h3>
443
+ <h5> Generated by Gooby Sun Feb 25 11:57:44 EST 2007 <br> Gooby = Google APIs + Ruby </h5>
444
+ <div id="map" style="width: 900px; height: 600px"></div>
445
+ <div id="messages"></div>
446
+ </center>
447
+ </body>
448
+ </html>
@@ -0,0 +1,530 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6
+ <title> Google Map by Gooby </title>
7
+ <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xQg0TO_bCqGOTsRH2RbuhBZnI0wvRQW0Q92mw1taN1NJCk2cxlQQutfuA" type="text/javascript"></script>
8
+ <script type="text/javascript">
9
+ //<![CDATA[
10
+ function load() {
11
+ if (GBrowserIsCompatible()) {
12
+ var map = new GMap2(document.getElementById("map"));
13
+ map.addControl(new GLargeMapControl());
14
+ map.addControl(new GMapTypeControl());
15
+
16
+ var centerPoint = new GLatLng(36.15751, -86.77647);
17
+ map.setCenter(centerPoint, 12);
18
+
19
+
20
+ var points = new Array();
21
+ points.push(new GLatLng(36.14661,-86.80903)); // 1 (1 of 1207.0) 2005-04-30T12:05:04Z 0 00:00:00 0.0
22
+ points.push(new GLatLng(36.14699,-86.80834)); // 2 (7 of 1207.0) 2005-04-30T12:05:30Z 26 00:00:26 0.0475395316117234
23
+ points.push(new GLatLng(36.14802,-86.80603)); // 3 (13 of 1207.0) 2005-04-30T12:06:47Z 103 00:01:43 0.195156249293514
24
+ points.push(new GLatLng(36.14925,-86.80341)); // 4 (19 of 1207.0) 2005-04-30T12:08:10Z 186 00:03:06 0.364693747035625
25
+ points.push(new GLatLng(36.15113,-86.79955)); // 5 (25 of 1207.0) 2005-04-30T12:10:11Z 307 00:05:07 0.616502897810645
26
+ points.push(new GLatLng(36.15223,-86.79742)); // 6 (31 of 1207.0) 2005-04-30T12:11:19Z 375 00:06:15 0.757780192213758
27
+ points.push(new GLatLng(36.15341,-86.79502)); // 7 (37 of 1207.0) 2005-04-30T12:12:43Z 459 00:07:39 0.914853939873745
28
+ points.push(new GLatLng(36.15399,-86.79358)); // 8 (42 of 1207.0) 2005-04-30T12:13:29Z 505 00:08:25 1.00498592624051 1.0 00:08:25
29
+ points.push(new GLatLng(36.15476,-86.79163)); // 9 (48 of 1207.0) 2005-04-30T12:14:31Z 567 00:09:27 1.1263585357867
30
+ points.push(new GLatLng(36.15573,-86.78937)); // 10 (54 of 1207.0) 2005-04-30T12:15:41Z 637 00:10:37 1.26925703482932
31
+ points.push(new GLatLng(36.1565,-86.78755)); // 11 (60 of 1207.0) 2005-04-30T12:16:40Z 696 00:11:36 1.38398919918005
32
+ points.push(new GLatLng(36.15483,-86.78633)); // 12 (66 of 1207.0) 2005-04-30T12:17:52Z 768 00:12:48 1.52500099840659
33
+ points.push(new GLatLng(36.15375,-86.78815)); // 13 (72 of 1207.0) 2005-04-30T12:18:55Z 831 00:13:51 1.65449159052911
34
+ points.push(new GLatLng(36.15296,-86.79002)); // 14 (78 of 1207.0) 2005-04-30T12:20:05Z 901 00:15:01 1.773050744778
35
+ points.push(new GLatLng(36.15219,-86.79216)); // 15 (84 of 1207.0) 2005-04-30T12:21:19Z 975 00:16:15 1.90615922422917
36
+ points.push(new GLatLng(36.15116,-86.79341)); // 16 (88 of 1207.0) 2005-04-30T12:22:18Z 1034 00:17:14 2.01957931424511 2.0 00:08:49
37
+ points.push(new GLatLng(36.14852,-86.79349)); // 17 (94 of 1207.0) 2005-04-30T12:23:41Z 1117 00:18:37 2.20583917819602
38
+ points.push(new GLatLng(36.14684,-86.79377)); // 18 (100 of 1207.0) 2005-04-30T12:24:40Z 1176 00:19:36 2.32807489115917
39
+ points.push(new GLatLng(36.14433,-86.79431)); // 19 (106 of 1207.0) 2005-04-30T12:26:13Z 1269 00:21:09 2.50433456401668
40
+ points.push(new GLatLng(36.14174,-86.79474)); // 20 (112 of 1207.0) 2005-04-30T12:27:48Z 1364 00:22:44 2.68531341946409
41
+ points.push(new GLatLng(36.1392,-86.79528)); // 21 (118 of 1207.0) 2005-04-30T12:29:34Z 1470 00:24:30 2.86376543286236
42
+ points.push(new GLatLng(36.13714,-86.79568)); // 22 (121 of 1207.0) 2005-04-30T12:30:48Z 1544 00:25:44 3.00791828850043 3.0 00:08:30
43
+ points.push(new GLatLng(36.13554,-86.79727)); // 23 (127 of 1207.0) 2005-04-30T12:32:04Z 1620 00:27:00 3.15434698873326
44
+ points.push(new GLatLng(36.13305,-86.79723)); // 24 (133 of 1207.0) 2005-04-30T12:33:30Z 1706 00:28:26 3.32991607569485
45
+ points.push(new GLatLng(36.13275,-86.79577)); // 25 (139 of 1207.0) 2005-04-30T12:34:21Z 1757 00:29:17 3.42711866854481
46
+ points.push(new GLatLng(36.13051,-86.79562)); // 26 (145 of 1207.0) 2005-04-30T12:35:44Z 1840 00:30:40 3.58574502822376
47
+ points.push(new GLatLng(36.12794,-86.79463)); // 27 (151 of 1207.0) 2005-04-30T12:37:26Z 1942 00:32:22 3.7804179686463
48
+ points.push(new GLatLng(36.12476,-86.7942)); // 28 (157 of 1207.0) 2005-04-30T12:39:24Z 2060 00:34:20 4.00885170892019 4.0 00:08:36
49
+ points.push(new GLatLng(36.12144,-86.79497)); // 29 (163 of 1207.0) 2005-04-30T12:41:23Z 2179 00:36:19 4.24228176374313
50
+ points.push(new GLatLng(36.11815,-86.79669)); // 30 (169 of 1207.0) 2005-04-30T12:43:28Z 2304 00:38:24 4.49151123131562
51
+ points.push(new GLatLng(36.11607,-86.79854)); // 31 (175 of 1207.0) 2005-04-30T12:44:58Z 2394 00:39:54 4.66858030719156
52
+ points.push(new GLatLng(36.11442,-86.79944)); // 32 (181 of 1207.0) 2005-04-30T12:46:12Z 2468 00:41:08 4.80885232190606
53
+ points.push(new GLatLng(36.11412,-86.79768)); // 33 (187 of 1207.0) 2005-04-30T12:46:59Z 2515 00:41:55 4.90970546172456
54
+ points.push(new GLatLng(36.11384,-86.79568)); // 34 (191 of 1207.0) 2005-04-30T12:47:56Z 2572 00:42:52 5.02397148781549 5.0 00:08:32
55
+ points.push(new GLatLng(36.11412,-86.79324)); // 35 (197 of 1207.0) 2005-04-30T12:49:07Z 2643 00:44:03 5.16469104361709
56
+ points.push(new GLatLng(36.11386,-86.7904)); // 36 (203 of 1207.0) 2005-04-30T12:50:28Z 2724 00:45:24 5.32442897097347
57
+ points.push(new GLatLng(36.11352,-86.78689)); // 37 (209 of 1207.0) 2005-04-30T12:52:11Z 2827 00:47:07 5.52191004412812
58
+ points.push(new GLatLng(36.11483,-86.78682)); // 38 (215 of 1207.0) 2005-04-30T12:52:54Z 2870 00:47:50 5.62016926191726
59
+ points.push(new GLatLng(36.11509,-86.78993)); // 39 (221 of 1207.0) 2005-04-30T12:54:22Z 2958 00:49:18 5.79476530574105
60
+ points.push(new GLatLng(36.11524,-86.79186)); // 40 (227 of 1207.0) 2005-04-30T12:55:26Z 3022 00:50:22 5.90319929396684
61
+ points.push(new GLatLng(36.11519,-86.79386)); // 41 (231 of 1207.0) 2005-04-30T12:56:23Z 3079 00:51:19 6.01512032846275 6.0 00:08:27
62
+ points.push(new GLatLng(36.11532,-86.7965)); // 42 (237 of 1207.0) 2005-04-30T12:57:39Z 3155 00:52:35 6.16324812315391
63
+ points.push(new GLatLng(36.11594,-86.79854)); // 43 (243 of 1207.0) 2005-04-30T12:58:45Z 3221 00:53:41 6.28621546929233
64
+ points.push(new GLatLng(36.11719,-86.79757)); // 44 (249 of 1207.0) 2005-04-30T12:59:39Z 3275 00:54:35 6.38993105184152
65
+ points.push(new GLatLng(36.11912,-86.79592)); // 45 (255 of 1207.0) 2005-04-30T13:01:04Z 3360 00:56:00 6.55207184613982
66
+ points.push(new GLatLng(36.12182,-86.79478)); // 46 (261 of 1207.0) 2005-04-30T13:02:45Z 3461 00:57:41 6.75026179756936
67
+ points.push(new GLatLng(36.12466,-86.7942)); // 47 (267 of 1207.0) 2005-04-30T13:04:30Z 3566 00:59:26 6.94945110919019
68
+ points.push(new GLatLng(36.12579,-86.79399)); // 48 (270 of 1207.0) 2005-04-30T13:05:15Z 3611 01:00:11 7.0284176822163 7.0 00:08:52
69
+ points.push(new GLatLng(36.12809,-86.79452)); // 49 (276 of 1207.0) 2005-04-30T13:06:43Z 3699 01:01:39 7.19261737049893
70
+ points.push(new GLatLng(36.13039,-86.79562)); // 50 (282 of 1207.0) 2005-04-30T13:08:13Z 3789 01:03:09 7.36883917161603
71
+ points.push(new GLatLng(36.13287,-86.79566)); // 51 (288 of 1207.0) 2005-04-30T13:09:43Z 3879 01:04:39 7.54138768354894
72
+ points.push(new GLatLng(36.13322,-86.79729)); // 52 (294 of 1207.0) 2005-04-30T13:10:30Z 3926 01:05:26 7.63842548764446
73
+ points.push(new GLatLng(36.13564,-86.79695)); // 53 (300 of 1207.0) 2005-04-30T13:11:57Z 4013 01:06:53 7.80723552524004
74
+ points.push(new GLatLng(36.13682,-86.79497)); // 54 (306 of 1207.0) 2005-04-30T13:13:10Z 4086 01:08:06 7.94506824127062
75
+ points.push(new GLatLng(36.13751,-86.79433)); // 55 (308 of 1207.0) 2005-04-30T13:13:40Z 4116 01:08:36 8.00488790553936 8.0 00:08:25
76
+ points.push(new GLatLng(36.13989,-86.7939)); // 56 (314 of 1207.0) 2005-04-30T13:15:05Z 4201 01:10:01 8.17200754086059
77
+ points.push(new GLatLng(36.14238,-86.79341)); // 57 (320 of 1207.0) 2005-04-30T13:16:32Z 4288 01:11:28 8.34636535385178
78
+ points.push(new GLatLng(36.14573,-86.79279)); // 58 (326 of 1207.0) 2005-04-30T13:18:29Z 4405 01:13:25 8.58058525383738
79
+ points.push(new GLatLng(36.14839,-86.79225)); // 59 (332 of 1207.0) 2005-04-30T13:20:03Z 4499 01:14:59 8.76692309521224
80
+ points.push(new GLatLng(36.15066,-86.79186)); // 60 (338 of 1207.0) 2005-04-30T13:21:32Z 4588 01:16:28 8.92550263282624
81
+ points.push(new GLatLng(36.15189,-86.79165)); // 61 (341 of 1207.0) 2005-04-30T13:22:15Z 4631 01:17:11 9.0114380649405 9.0 00:08:35
82
+ points.push(new GLatLng(36.15176,-86.79017)); // 62 (347 of 1207.0) 2005-04-30T13:22:57Z 4673 01:17:53 9.09666267501151
83
+ points.push(new GLatLng(36.1515,-86.78785)); // 63 (353 of 1207.0) 2005-04-30T13:24:02Z 4738 01:18:58 9.22754533267919
84
+ points.push(new GLatLng(36.15124,-86.78568)); // 64 (359 of 1207.0) 2005-04-30T13:25:04Z 4800 01:20:00 9.3500123956285
85
+ points.push(new GLatLng(36.15174,-86.78412)); // 65 (365 of 1207.0) 2005-04-30T13:26:02Z 4858 01:20:58 9.46605957755209
86
+ points.push(new GLatLng(36.15326,-86.78382)); // 66 (371 of 1207.0) 2005-04-30T13:26:53Z 4909 01:21:49 9.57617082593093
87
+ points.push(new GLatLng(36.1548,-86.78483)); // 67 (377 of 1207.0) 2005-04-30T13:27:55Z 4971 01:22:51 9.69721962330757
88
+ points.push(new GLatLng(36.15725,-86.78628)); // 68 (383 of 1207.0) 2005-04-30T13:29:32Z 5068 01:24:28 9.88566828148241
89
+ points.push(new GLatLng(36.15858,-86.78753)); // 69 (386 of 1207.0) 2005-04-30T13:30:29Z 5125 01:25:25 10.0017113732322 10.0 00:08:14
90
+ points.push(new GLatLng(36.16002,-86.78886)); // 70 (392 of 1207.0) 2005-04-30T13:31:30Z 5186 01:26:26 10.1259001914112
91
+ points.push(new GLatLng(36.16131,-86.78991)); // 71 (398 of 1207.0) 2005-04-30T13:32:25Z 5241 01:27:21 10.2326707168817
92
+ points.push(new GLatLng(36.16234,-86.79028)); // 72 (404 of 1207.0) 2005-04-30T13:33:09Z 5285 01:28:05 10.317979979131
93
+ points.push(new GLatLng(36.16334,-86.7883)); // 73 (410 of 1207.0) 2005-04-30T13:34:19Z 5355 01:29:15 10.4483021645463
94
+ points.push(new GLatLng(36.16452,-86.78856)); // 74 (416 of 1207.0) 2005-04-30T13:35:14Z 5410 01:30:10 10.5499242909867
95
+ points.push(new GLatLng(36.16716,-86.78854)); // 75 (422 of 1207.0) 2005-04-30T13:36:51Z 5507 01:31:47 10.7416421706263
96
+ points.push(new GLatLng(36.16879,-86.78849)); // 76 (428 of 1207.0) 2005-04-30T13:37:57Z 5573 01:32:53 10.8746774203546
97
+ points.push(new GLatLng(36.17034,-86.78961)); // 77 (434 of 1207.0) 2005-04-30T13:39:07Z 5643 01:34:03 10.9991935710606
98
+ points.push(new GLatLng(36.17045,-86.78976)); // 78 (435 of 1207.0) 2005-04-30T13:39:14Z 5650 01:34:10 11.0104962060892 11.0 00:08:45
99
+ points.push(new GLatLng(36.17169,-86.79058)); // 79 (441 of 1207.0) 2005-04-30T13:40:05Z 5701 01:35:01 11.1079834272854
100
+ points.push(new GLatLng(36.17337,-86.79158)); // 80 (447 of 1207.0) 2005-04-30T13:41:15Z 5771 01:36:11 11.2369395457235
101
+ points.push(new GLatLng(36.17491,-86.79255)); // 81 (453 of 1207.0) 2005-04-30T13:42:20Z 5836 01:37:16 11.3570945410452
102
+ points.push(new GLatLng(36.17643,-86.79367)); // 82 (459 of 1207.0) 2005-04-30T13:43:22Z 5898 01:38:18 11.4795830733071
103
+ points.push(new GLatLng(36.17785,-86.79457)); // 83 (465 of 1207.0) 2005-04-30T13:44:20Z 5956 01:39:16 11.5986675316279
104
+ points.push(new GLatLng(36.18002,-86.79607)); // 84 (471 of 1207.0) 2005-04-30T13:45:51Z 6047 01:40:47 11.770726507851
105
+ points.push(new GLatLng(36.18197,-86.79736)); // 85 (477 of 1207.0) 2005-04-30T13:47:11Z 6127 01:42:07 11.9238334908963
106
+ points.push(new GLatLng(36.18324,-86.79791)); // 86 (482 of 1207.0) 2005-04-30T13:48:00Z 6176 01:42:56 12.0179760066749 12.0 00:08:46
107
+ points.push(new GLatLng(36.18465,-86.79817)); // 87 (488 of 1207.0) 2005-04-30T13:48:52Z 6228 01:43:48 12.1171511772922
108
+ points.push(new GLatLng(36.18596,-86.79845)); // 88 (494 of 1207.0) 2005-04-30T13:49:40Z 6276 01:44:36 12.2093250347196
109
+ points.push(new GLatLng(36.18785,-86.79873)); // 89 (500 of 1207.0) 2005-04-30T13:50:48Z 6344 01:45:44 12.3412947113744
110
+ points.push(new GLatLng(36.18736,-86.80079)); // 90 (506 of 1207.0) 2005-04-30T13:51:53Z 6409 01:46:49 12.4611723639235
111
+ points.push(new GLatLng(36.18682,-86.8033)); // 91 (512 of 1207.0) 2005-04-30T13:53:06Z 6482 01:48:02 12.6061506618118
112
+ points.push(new GLatLng(36.18776,-86.80416)); // 92 (518 of 1207.0) 2005-04-30T13:54:03Z 6539 01:48:59 12.7225622766718
113
+ points.push(new GLatLng(36.18933,-86.80545)); // 93 (524 of 1207.0) 2005-04-30T13:55:17Z 6613 01:50:13 12.8688156798612
114
+ points.push(new GLatLng(36.19062,-86.80628)); // 94 (530 of 1207.0) 2005-04-30T13:56:11Z 6667 01:51:07 12.9791032011842
115
+ points.push(new GLatLng(36.19096,-86.8063)); // 95 (531 of 1207.0) 2005-04-30T13:56:23Z 6679 01:51:19 13.0026203935526 13.0 00:08:23
116
+ points.push(new GLatLng(36.19283,-86.80673)); // 96 (537 of 1207.0) 2005-04-30T13:57:30Z 6746 01:52:26 13.1345573535902
117
+ points.push(new GLatLng(36.19379,-86.80787)); // 97 (543 of 1207.0) 2005-04-30T13:58:24Z 6800 01:53:20 13.2421073061887
118
+ points.push(new GLatLng(36.19366,-86.81077)); // 98 (549 of 1207.0) 2005-04-30T13:59:50Z 6886 01:54:46 13.4041249208978
119
+ points.push(new GLatLng(36.19334,-86.81317)); // 99 (555 of 1207.0) 2005-04-30T14:01:04Z 6960 01:56:00 13.5416805978128
120
+ points.push(new GLatLng(36.19272,-86.8151)); // 100 (561 of 1207.0) 2005-04-30T14:02:05Z 7021 01:57:01 13.6576113358199
121
+ points.push(new GLatLng(36.19323,-86.81626)); // 101 (567 of 1207.0) 2005-04-30T14:02:49Z 7065 01:57:45 13.7453889120494
122
+ points.push(new GLatLng(36.1945,-86.81755)); // 102 (573 of 1207.0) 2005-04-30T14:03:49Z 7125 01:58:45 13.8600765982499
123
+ points.push(new GLatLng(36.19489,-86.8186)); // 103 (579 of 1207.0) 2005-04-30T14:04:35Z 7171 01:59:31 13.9498282526074
124
+ points.push(new GLatLng(36.19433,-86.81937)); // 104 (582 of 1207.0) 2005-04-30T14:05:05Z 7201 02:00:01 14.0076939175942 14.0 00:08:42
125
+ points.push(new GLatLng(36.19347,-86.82096)); // 105 (588 of 1207.0) 2005-04-30T14:06:01Z 7257 02:00:57 14.1155741286605
126
+ points.push(new GLatLng(36.19313,-86.82291)); // 106 (594 of 1207.0) 2005-04-30T14:07:06Z 7322 02:02:02 14.2270794806265
127
+ points.push(new GLatLng(36.19253,-86.82502)); // 107 (600 of 1207.0) 2005-04-30T14:08:13Z 7389 02:03:09 14.3551632716127
128
+ points.push(new GLatLng(36.19399,-86.82392)); // 108 (606 of 1207.0) 2005-04-30T14:09:16Z 7452 02:04:12 14.474296241623
129
+ points.push(new GLatLng(36.19564,-86.82203)); // 109 (612 of 1207.0) 2005-04-30T14:10:39Z 7535 02:05:35 14.6295989858496
130
+ points.push(new GLatLng(36.19703,-86.82027)); // 110 (618 of 1207.0) 2005-04-30T14:11:52Z 7608 02:06:48 14.7669853059899
131
+ points.push(new GLatLng(36.19823,-86.81841)); // 111 (624 of 1207.0) 2005-04-30T14:13:03Z 7679 02:07:59 14.899826288208
132
+ points.push(new GLatLng(36.19914,-86.81663)); // 112 (630 of 1207.0) 2005-04-30T14:14:05Z 7741 02:09:01 15.0182316265111 15.0 00:09:00
133
+ points.push(new GLatLng(36.19982,-86.8151)); // 113 (636 of 1207.0) 2005-04-30T14:14:56Z 7792 02:09:52 15.1161966994431
134
+ points.push(new GLatLng(36.20062,-86.81311)); // 114 (642 of 1207.0) 2005-04-30T14:16:01Z 7857 02:10:57 15.2409927485024
135
+ points.push(new GLatLng(36.20087,-86.81143)); // 115 (648 of 1207.0) 2005-04-30T14:16:53Z 7909 02:11:49 15.3364867682108
136
+ points.push(new GLatLng(36.20128,-86.80914)); // 116 (654 of 1207.0) 2005-04-30T14:18:04Z 7980 02:13:00 15.4681407365271
137
+ points.push(new GLatLng(36.20143,-86.80712)); // 117 (660 of 1207.0) 2005-04-30T14:19:04Z 8040 02:14:00 15.5814308170297
138
+ points.push(new GLatLng(36.20143,-86.80442)); // 118 (666 of 1207.0) 2005-04-30T14:20:24Z 8120 02:15:20 15.7325873443711
139
+ points.push(new GLatLng(36.20124,-86.80274)); // 119 (672 of 1207.0) 2005-04-30T14:21:15Z 8171 02:16:11 15.8275391549436
140
+ points.push(new GLatLng(36.20034,-86.80223)); // 120 (678 of 1207.0) 2005-04-30T14:22:01Z 8217 02:16:57 15.9143516730046
141
+ points.push(new GLatLng(36.19997,-86.80328)); // 121 (684 of 1207.0) 2005-04-30T14:22:41Z 8257 02:17:37 15.9939069999229
142
+ points.push(new GLatLng(36.20002,-86.80349)); // 122 (685 of 1207.0) 2005-04-30T14:22:48Z 8264 02:17:44 16.0061140772076 16.0 00:08:43
143
+ points.push(new GLatLng(36.19995,-86.80585)); // 123 (691 of 1207.0) 2005-04-30T14:24:01Z 8337 02:18:57 16.1399544283349
144
+ points.push(new GLatLng(36.19924,-86.80755)); // 124 (697 of 1207.0) 2005-04-30T14:25:04Z 8400 02:20:00 16.2473128594226
145
+ points.push(new GLatLng(36.19772,-86.80905)); // 125 (703 of 1207.0) 2005-04-30T14:26:18Z 8474 02:21:14 16.3890338964571
146
+ points.push(new GLatLng(36.19577,-86.80847)); // 126 (709 of 1207.0) 2005-04-30T14:27:30Z 8546 02:22:26 16.5289710970893
147
+ points.push(new GLatLng(36.19448,-86.80733)); // 127 (715 of 1207.0) 2005-04-30T14:28:31Z 8607 02:23:27 16.6400163110113
148
+ points.push(new GLatLng(36.19364,-86.80585)); // 128 (721 of 1207.0) 2005-04-30T14:29:32Z 8668 02:24:28 16.7548144344133
149
+ points.push(new GLatLng(36.19339,-86.80409)); // 129 (727 of 1207.0) 2005-04-30T14:30:26Z 8722 02:25:22 16.8544839622949
150
+ points.push(new GLatLng(36.19302,-86.80154)); // 130 (733 of 1207.0) 2005-04-30T14:31:45Z 8801 02:26:41 16.9991533683063
151
+ points.push(new GLatLng(36.19293,-86.80122)); // 131 (734 of 1207.0) 2005-04-30T14:31:55Z 8811 02:26:51 17.0180483481438 17.0 00:09:07
152
+ points.push(new GLatLng(36.1921,-86.7998)); // 132 (740 of 1207.0) 2005-04-30T14:32:50Z 8866 02:27:46 17.1166318028822
153
+ points.push(new GLatLng(36.19115,-86.79901)); // 133 (746 of 1207.0) 2005-04-30T14:33:36Z 8912 02:28:32 17.1966556532756
154
+ points.push(new GLatLng(36.19006,-86.79858)); // 134 (752 of 1207.0) 2005-04-30T14:34:32Z 8968 02:29:28 17.2759747515751
155
+ points.push(new GLatLng(36.18881,-86.79847)); // 135 (758 of 1207.0) 2005-04-30T14:35:23Z 9019 02:30:19 17.3627742700432
156
+ points.push(new GLatLng(36.18729,-86.79832)); // 136 (764 of 1207.0) 2005-04-30T14:36:22Z 9078 02:31:18 17.4685346984836
157
+ points.push(new GLatLng(36.18566,-86.79819)); // 137 (770 of 1207.0) 2005-04-30T14:37:26Z 9142 02:32:22 17.5815382997082
158
+ points.push(new GLatLng(36.18439,-86.79794)); // 138 (776 of 1207.0) 2005-04-30T14:38:15Z 9191 02:33:11 17.6705274118219
159
+ points.push(new GLatLng(36.18289,-86.7977)); // 139 (782 of 1207.0) 2005-04-30T14:39:13Z 9249 02:34:09 17.7752714403913
160
+ points.push(new GLatLng(36.18135,-86.79678)); // 140 (788 of 1207.0) 2005-04-30T14:40:19Z 9315 02:35:15 17.893482300257
161
+ points.push(new GLatLng(36.17987,-86.79575)); // 141 (793 of 1207.0) 2005-04-30T14:41:21Z 9377 02:36:17 18.0109273432878 18.0 00:09:26
162
+ points.push(new GLatLng(36.17819,-86.79457)); // 142 (799 of 1207.0) 2005-04-30T14:42:34Z 9450 02:37:30 18.1445201617614
163
+ points.push(new GLatLng(36.17575,-86.79296)); // 143 (805 of 1207.0) 2005-04-30T14:44:17Z 9553 02:39:13 18.3356442136377
164
+ points.push(new GLatLng(36.17382,-86.79165)); // 144 (811 of 1207.0) 2005-04-30T14:45:40Z 9636 02:40:36 18.4878175690871
165
+ points.push(new GLatLng(36.17358,-86.79025)); // 145 (817 of 1207.0) 2005-04-30T14:46:32Z 9688 02:41:28 18.5892709618107
166
+ points.push(new GLatLng(36.17377,-86.78854)); // 146 (823 of 1207.0) 2005-04-30T14:47:27Z 9743 02:42:23 18.6927416623538
167
+ points.push(new GLatLng(36.1724,-86.7877)); // 147 (829 of 1207.0) 2005-04-30T14:48:34Z 9810 02:43:30 18.7990388941969
168
+ points.push(new GLatLng(36.17118,-86.78693)); // 148 (835 of 1207.0) 2005-04-30T14:49:43Z 9879 02:44:39 18.8940513768217
169
+ points.push(new GLatLng(36.1698,-86.78603)); // 149 (838 of 1207.0) 2005-04-30T14:50:40Z 9936 02:45:36 19.0018432569713 19.0 00:09:19
170
+ points.push(new GLatLng(36.16982,-86.78446)); // 150 (844 of 1207.0) 2005-04-30T14:51:35Z 9991 02:46:31 19.105156742967
171
+ points.push(new GLatLng(36.16882,-86.78349)); // 151 (850 of 1207.0) 2005-04-30T14:52:31Z 10047 02:47:27 19.2031481935249
172
+ points.push(new GLatLng(36.16789,-86.78165)); // 152 (856 of 1207.0) 2005-04-30T14:53:40Z 10116 02:48:36 19.3259144410158
173
+ points.push(new GLatLng(36.16701,-86.77987)); // 153 (862 of 1207.0) 2005-04-30T14:54:50Z 10186 02:49:46 19.4571162928081
174
+ points.push(new GLatLng(36.16575,-86.77858)); // 154 (868 of 1207.0) 2005-04-30T14:56:01Z 10257 02:50:57 19.5756282811114
175
+ points.push(new GLatLng(36.16701,-86.77719)); // 155 (874 of 1207.0) 2005-04-30T14:57:08Z 10324 02:52:04 19.703525160868
176
+ points.push(new GLatLng(36.16764,-86.77586)); // 156 (880 of 1207.0) 2005-04-30T14:57:55Z 10371 02:52:51 19.7897651885709
177
+ points.push(new GLatLng(36.16839,-86.77414)); // 157 (886 of 1207.0) 2005-04-30T14:58:54Z 10430 02:53:50 19.8988516428149
178
+ points.push(new GLatLng(36.16903,-86.77244)); // 158 (891 of 1207.0) 2005-04-30T14:59:51Z 10487 02:54:47 20.0035491062528 20.0 00:09:11
179
+ points.push(new GLatLng(36.1698,-86.77045)); // 159 (897 of 1207.0) 2005-04-30T15:00:59Z 10555 02:55:55 20.1267910664208
180
+ points.push(new GLatLng(36.17021,-86.76918)); // 160 (903 of 1207.0) 2005-04-30T15:01:43Z 10599 02:56:39 20.2032775441899
181
+ points.push(new GLatLng(36.17109,-86.76695)); // 161 (909 of 1207.0) 2005-04-30T15:03:01Z 10677 02:57:57 20.3420455531225
182
+ points.push(new GLatLng(36.17154,-86.76545)); // 162 (915 of 1207.0) 2005-04-30T15:03:54Z 10730 02:58:50 20.4315269452735
183
+ points.push(new GLatLng(36.17094,-86.76423)); // 163 (921 of 1207.0) 2005-04-30T15:04:53Z 10789 02:59:49 20.5360369378377
184
+ points.push(new GLatLng(36.16995,-86.76367)); // 164 (927 of 1207.0) 2005-04-30T15:05:43Z 10839 03:00:39 20.6115253177207
185
+ points.push(new GLatLng(36.16751,-86.76217)); // 165 (933 of 1207.0) 2005-04-30T15:07:24Z 10940 03:02:20 20.7997754634726
186
+ points.push(new GLatLng(36.16513,-86.76084)); // 166 (939 of 1207.0) 2005-04-30T15:09:07Z 11043 03:04:03 20.98027859622
187
+ points.push(new GLatLng(36.16463,-86.76058)); // 167 (941 of 1207.0) 2005-04-30T15:09:28Z 11064 03:04:24 21.0177478597304 21.0 00:09:37
188
+ points.push(new GLatLng(36.16298,-86.75963)); // 168 (947 of 1207.0) 2005-04-30T15:10:37Z 11133 03:05:33 21.1434750271579
189
+ points.push(new GLatLng(36.16124,-86.75854)); // 169 (953 of 1207.0) 2005-04-30T15:11:54Z 11210 03:06:50 21.2784596151284
190
+ points.push(new GLatLng(36.16128,-86.75691)); // 170 (959 of 1207.0) 2005-04-30T15:12:48Z 11264 03:07:44 21.3757362767146
191
+ points.push(new GLatLng(36.1615,-86.75491)); // 171 (965 of 1207.0) 2005-04-30T15:13:50Z 11326 03:08:46 21.492379649449
192
+ points.push(new GLatLng(36.16174,-86.75315)); // 172 (971 of 1207.0) 2005-04-30T15:14:46Z 11382 03:09:42 21.5920139958764
193
+ points.push(new GLatLng(36.1621,-86.75133)); // 173 (977 of 1207.0) 2005-04-30T15:15:47Z 11443 03:10:43 21.6966958490654
194
+ points.push(new GLatLng(36.16251,-86.74948)); // 174 (983 of 1207.0) 2005-04-30T15:16:49Z 11505 03:11:45 21.8038370156458
195
+ points.push(new GLatLng(36.16268,-86.74841)); // 175 (989 of 1207.0) 2005-04-30T15:17:33Z 11549 03:12:29 21.8650024263572
196
+ points.push(new GLatLng(36.16313,-86.74652)); // 176 (995 of 1207.0) 2005-04-30T15:18:34Z 11610 03:13:30 21.975243784686
197
+ points.push(new GLatLng(36.16326,-86.74571)); // 177 (997 of 1207.0) 2005-04-30T15:19:00Z 11636 03:13:56 22.0213124798681 22.0 00:09:32
198
+ points.push(new GLatLng(36.16337,-86.74393)); // 178 (1003 of 1207.0) 2005-04-30T15:20:01Z 11697 03:14:57 22.1262707398663
199
+ points.push(new GLatLng(36.16371,-86.74206)); // 179 (1009 of 1207.0) 2005-04-30T15:21:02Z 11758 03:15:58 22.2337301579419
200
+ points.push(new GLatLng(36.16403,-86.74049)); // 180 (1015 of 1207.0) 2005-04-30T15:21:54Z 11810 03:16:50 22.3241333120463
201
+ points.push(new GLatLng(36.16437,-86.73843)); // 181 (1021 of 1207.0) 2005-04-30T15:23:02Z 11878 03:17:58 22.4420623024264
202
+ points.push(new GLatLng(36.16444,-86.73672)); // 182 (1027 of 1207.0) 2005-04-30T15:23:57Z 11933 03:18:53 22.5384552871374
203
+ points.push(new GLatLng(36.1648,-86.73479)); // 183 (1033 of 1207.0) 2005-04-30T15:25:03Z 11999 03:19:59 22.6500737932344
204
+ points.push(new GLatLng(36.16588,-86.7335)); // 184 (1039 of 1207.0) 2005-04-30T15:26:15Z 12071 03:21:11 22.7813890026074
205
+ points.push(new GLatLng(36.16729,-86.73204)); // 185 (1045 of 1207.0) 2005-04-30T15:27:32Z 12148 03:22:28 22.9118242147163
206
+ points.push(new GLatLng(36.16858,-86.73268)); // 186 (1049 of 1207.0) 2005-04-30T15:28:34Z 12210 03:23:30 23.0531047499703 23.0 00:09:34
207
+ points.push(new GLatLng(36.16972,-86.73137)); // 187 (1055 of 1207.0) 2005-04-30T15:29:38Z 12274 03:24:34 23.1801511534243
208
+ points.push(new GLatLng(36.17208,-86.7315)); // 188 (1061 of 1207.0) 2005-04-30T15:31:14Z 12370 03:26:10 23.3516915533211
209
+ points.push(new GLatLng(36.1686,-86.7291)); // 189 (1067 of 1207.0) 2005-04-30T15:35:21Z 12617 03:30:17 23.7953952599442
210
+ points.push(new GLatLng(36.16663,-86.72811)); // 190 (1073 of 1207.0) 2005-04-30T15:36:55Z 12711 03:31:51 23.9653598516853
211
+ points.push(new GLatLng(36.16588,-86.72841)); // 191 (1075 of 1207.0) 2005-04-30T15:37:26Z 12742 03:32:22 24.0207198639371 24.0 00:08:52
212
+ points.push(new GLatLng(36.16532,-86.73019)); // 192 (1081 of 1207.0) 2005-04-30T15:38:28Z 12804 03:33:24 24.131419469144
213
+ points.push(new GLatLng(36.16504,-86.73236)); // 193 (1087 of 1207.0) 2005-04-30T15:39:39Z 12875 03:34:35 24.2545582992915
214
+ points.push(new GLatLng(36.1648,-86.73485)); // 194 (1093 of 1207.0) 2005-04-30T15:41:00Z 12956 03:35:56 24.3956230593173
215
+ points.push(new GLatLng(36.16433,-86.73768)); // 195 (1099 of 1207.0) 2005-04-30T15:42:34Z 13050 03:37:30 24.5579392205993
216
+ points.push(new GLatLng(36.1641,-86.74015)); // 196 (1105 of 1207.0) 2005-04-30T15:43:54Z 13130 03:38:50 24.6979209475415
217
+ points.push(new GLatLng(36.1636,-86.74266)); // 197 (1111 of 1207.0) 2005-04-30T15:45:19Z 13215 03:40:15 24.8424622138997
218
+ points.push(new GLatLng(36.163,-86.74496)); // 198 (1117 of 1207.0) 2005-04-30T15:46:37Z 13293 03:41:33 24.9776819919294
219
+ points.push(new GLatLng(36.16317,-86.74551)); // 199 (1119 of 1207.0) 2005-04-30T15:46:56Z 13312 03:41:52 25.0105524318065 25.0 00:09:30
220
+ points.push(new GLatLng(36.16294,-86.74717)); // 200 (1125 of 1207.0) 2005-04-30T15:47:54Z 13370 03:42:50 25.1063847266483
221
+ points.push(new GLatLng(36.16249,-86.7491)); // 201 (1131 of 1207.0) 2005-04-30T15:49:06Z 13442 03:44:02 25.2186626286806
222
+ points.push(new GLatLng(36.16206,-86.75116)); // 202 (1137 of 1207.0) 2005-04-30T15:50:11Z 13507 03:45:07 25.3374902912428
223
+ points.push(new GLatLng(36.16156,-86.75365)); // 203 (1143 of 1207.0) 2005-04-30T15:51:33Z 13589 03:46:29 25.4807257680411
224
+ points.push(new GLatLng(36.16141,-86.75508)); // 204 (1149 of 1207.0) 2005-04-30T15:52:21Z 13637 03:47:17 25.561234734998
225
+ points.push(new GLatLng(36.16113,-86.75717)); // 205 (1155 of 1207.0) 2005-04-30T15:53:30Z 13706 03:48:26 25.6794441286322
226
+ points.push(new GLatLng(36.16103,-86.76006)); // 206 (1161 of 1207.0) 2005-04-30T15:55:02Z 13798 03:49:58 25.8419244448636
227
+ points.push(new GLatLng(36.16116,-86.76242)); // 207 (1167 of 1207.0) 2005-04-30T15:56:16Z 13872 03:51:12 25.9740562084178
228
+ points.push(new GLatLng(36.1612,-86.76335)); // 208 (1169 of 1207.0) 2005-04-30T15:56:45Z 13901 03:51:41 26.0260837579004 26.0 00:09:49
229
+ points.push(new GLatLng(36.16139,-86.76491)); // 209 (1175 of 1207.0) 2005-04-30T15:57:35Z 13951 03:52:31 26.1141959951022
230
+ points.push(new GLatLng(36.16165,-86.76667)); // 210 (1181 of 1207.0) 2005-04-30T15:58:31Z 14007 03:53:27 26.2141671111115
231
+ points.push(new GLatLng(36.16227,-86.76832)); // 211 (1187 of 1207.0) 2005-04-30T15:59:27Z 14063 03:54:23 26.3184326722803
232
+ points.push(new GLatLng(36.1639,-86.76933)); // 212 (1193 of 1207.0) 2005-04-30T16:00:27Z 14123 03:55:23 26.4450679865836
233
+ points.push(new GLatLng(36.16476,-86.77051)); // 213 (1199 of 1207.0) 2005-04-30T16:01:19Z 14175 03:56:15 26.5583504437509
234
+ points.push(new GLatLng(36.16416,-86.77202)); // 214 (1205 of 1207.0) 2005-04-30T16:02:12Z 14228 03:57:08 26.652337384846
235
+ points.push(new GLatLng(36.16416,-86.7721)); // 215 (1207 of 1207.0) 2005-04-30T16:02:31Z 14247 03:57:27 26.6567960263308
236
+
237
+ var routePolyline = new GPolyline(points);
238
+ map.addOverlay(routePolyline);
239
+
240
+ // Create a base icon for all of our markers that specifies the
241
+ // shadow, icon dimensions, etc.
242
+ var baseIcon = new GIcon();
243
+ baseIcon.shadow = "http://www.joakim-systems.com/gicons/shadow50.png";
244
+ baseIcon.iconSize = new GSize(20, 34);
245
+ baseIcon.shadowSize = new GSize(37, 34);
246
+ baseIcon.iconAnchor = new GPoint(9, 34);
247
+ baseIcon.infoWindowAnchor = new GPoint(9, 2);
248
+ baseIcon.infoShadowAnchor = new GPoint(18, 25);
249
+
250
+ var iconStart = new GIcon(baseIcon);
251
+ iconStart.image = "http://www.joakim-systems.com/gicons/dd-start.png";
252
+ var pStart = new GPoint(-86.80903, 36.14661);
253
+ var mStart = new GMarker(pStart, iconStart);
254
+ GEvent.addListener(mStart, "click", function() {
255
+ mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td>0.0</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:05:04Z </td></tr><tr><td>Elapsed Time: </td><td>00:00:00 </td></tr><tr><td>Average Pace: </td><td> </td></tr><tr><td>Lat/Lng: </td><td>36.14661 , -86.80903 </td></tr><tr><td>Altitude: </td><td>157.794m </td></tr></table>");
256
+ });
257
+ map.addOverlay(mStart);
258
+
259
+ var icon1 = new GIcon(baseIcon);
260
+ icon1.image = "http://www.joakim-systems.com/gicons/marker1.png";
261
+ var p1 = new GPoint(-86.79358, 36.15399);
262
+ var m1 = new GMarker(p1, icon1);
263
+ GEvent.addListener(m1, "click", function() {
264
+ m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.00498592624051</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:13:29Z </td></tr><tr><td>Elapsed Time: </td><td>00:08:25 </td></tr><tr><td>Average Pace: </td><td>8:22.5 </td></tr><tr><td>Lat/Lng: </td><td>36.15399 , -86.79358 </td></tr><tr><td>Altitude: </td><td>158.755m </td></tr></table>");
265
+ });
266
+ map.addOverlay(m1);
267
+
268
+ var icon2 = new GIcon(baseIcon);
269
+ icon2.image = "http://www.joakim-systems.com/gicons/marker2.png";
270
+ var p2 = new GPoint(-86.79341, 36.15116);
271
+ var m2 = new GMarker(p2, icon2);
272
+ GEvent.addListener(m2, "click", function() {
273
+ m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.01957931424511</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:22:18Z </td></tr><tr><td>Elapsed Time: </td><td>00:17:14 </td></tr><tr><td>Average Pace: </td><td>8:32.0 </td></tr><tr><td>Lat/Lng: </td><td>36.15116 , -86.79341 </td></tr><tr><td>Altitude: </td><td>170.771m </td></tr></table>");
274
+ });
275
+ map.addOverlay(m2);
276
+
277
+ var icon3 = new GIcon(baseIcon);
278
+ icon3.image = "http://www.joakim-systems.com/gicons/marker3.png";
279
+ var p3 = new GPoint(-86.79568, 36.13714);
280
+ var m3 = new GMarker(p3, icon3);
281
+ GEvent.addListener(m3, "click", function() {
282
+ m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00791828850043</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:30:48Z </td></tr><tr><td>Elapsed Time: </td><td>00:25:44 </td></tr><tr><td>Average Pace: </td><td>8:33.3 </td></tr><tr><td>Lat/Lng: </td><td>36.13714 , -86.79568 </td></tr><tr><td>Altitude: </td><td>182.788m </td></tr></table>");
283
+ });
284
+ map.addOverlay(m3);
285
+
286
+ var icon4 = new GIcon(baseIcon);
287
+ icon4.image = "http://www.joakim-systems.com/gicons/marker4.png";
288
+ var p4 = new GPoint(-86.7942, 36.12476);
289
+ var m4 = new GMarker(p4, icon4);
290
+ GEvent.addListener(m4, "click", function() {
291
+ m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.00885170892019</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:39:24Z </td></tr><tr><td>Elapsed Time: </td><td>00:34:20 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.12476 , -86.7942 </td></tr><tr><td>Altitude: </td><td>185.672m </td></tr></table>");
292
+ });
293
+ map.addOverlay(m4);
294
+
295
+ var icon5 = new GIcon(baseIcon);
296
+ icon5.image = "http://www.joakim-systems.com/gicons/marker5.png";
297
+ var p5 = new GPoint(-86.79568, 36.11384);
298
+ var m5 = new GMarker(p5, icon5);
299
+ GEvent.addListener(m5, "click", function() {
300
+ m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.02397148781549</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:47:56Z </td></tr><tr><td>Elapsed Time: </td><td>00:42:52 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11384 , -86.79568 </td></tr><tr><td>Altitude: </td><td>179.423m </td></tr></table>");
301
+ });
302
+ map.addOverlay(m5);
303
+
304
+ var icon6 = new GIcon(baseIcon);
305
+ icon6.image = "http://www.joakim-systems.com/gicons/marker6.png";
306
+ var p6 = new GPoint(-86.79386, 36.11519);
307
+ var m6 = new GMarker(p6, icon6);
308
+ GEvent.addListener(m6, "click", function() {
309
+ m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.01512032846275</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>00:51:19 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11519 , -86.79386 </td></tr><tr><td>Altitude: </td><td>165.003m </td></tr></table>");
310
+ });
311
+ map.addOverlay(m6);
312
+
313
+ var icon7 = new GIcon(baseIcon);
314
+ icon7.image = "http://www.joakim-systems.com/gicons/marker7.png";
315
+ var p7 = new GPoint(-86.79399, 36.12579);
316
+ var m7 = new GMarker(p7, icon7);
317
+ GEvent.addListener(m7, "click", function() {
318
+ m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.0284176822163</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:05:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:00:11 </td></tr><tr><td>Average Pace: </td><td>8:33.8 </td></tr><tr><td>Lat/Lng: </td><td>36.12579 , -86.79399 </td></tr><tr><td>Altitude: </td><td>183.268m </td></tr></table>");
319
+ });
320
+ map.addOverlay(m7);
321
+
322
+ var icon8 = new GIcon(baseIcon);
323
+ icon8.image = "http://www.joakim-systems.com/gicons/marker8.png";
324
+ var p8 = new GPoint(-86.79433, 36.13751);
325
+ var m8 = new GMarker(p8, icon8);
326
+ GEvent.addListener(m8, "click", function() {
327
+ m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.00488790553936</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:13:40Z </td></tr><tr><td>Elapsed Time: </td><td>01:08:36 </td></tr><tr><td>Average Pace: </td><td>8:34.2 </td></tr><tr><td>Lat/Lng: </td><td>36.13751 , -86.79433 </td></tr><tr><td>Altitude: </td><td>188.075m </td></tr></table>");
328
+ });
329
+ map.addOverlay(m8);
330
+
331
+ var icon9 = new GIcon(baseIcon);
332
+ icon9.image = "http://www.joakim-systems.com/gicons/marker9.png";
333
+ var p9 = new GPoint(-86.79165, 36.15189);
334
+ var m9 = new GMarker(p9, icon9);
335
+ GEvent.addListener(m9, "click", function() {
336
+ m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.0114380649405</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:22:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:17:11 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.15189 , -86.79165 </td></tr><tr><td>Altitude: </td><td>165.965m </td></tr></table>");
337
+ });
338
+ map.addOverlay(m9);
339
+
340
+ var icon10 = new GIcon(baseIcon);
341
+ icon10.image = "http://www.joakim-systems.com/gicons/marker10.png";
342
+ var p10 = new GPoint(-86.78753, 36.15858);
343
+ var m10 = new GMarker(p10, icon10);
344
+ GEvent.addListener(m10, "click", function() {
345
+ m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0017113732322</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:30:29Z </td></tr><tr><td>Elapsed Time: </td><td>01:25:25 </td></tr><tr><td>Average Pace: </td><td>8:32.4 </td></tr><tr><td>Lat/Lng: </td><td>36.15858 , -86.78753 </td></tr><tr><td>Altitude: </td><td>130.877m </td></tr></table>");
346
+ });
347
+ map.addOverlay(m10);
348
+
349
+ var icon11 = new GIcon(baseIcon);
350
+ icon11.image = "http://www.joakim-systems.com/gicons/marker11.png";
351
+ var p11 = new GPoint(-86.78976, 36.17045);
352
+ var m11 = new GMarker(p11, icon11);
353
+ GEvent.addListener(m11, "click", function() {
354
+ m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0104962060892</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:39:14Z </td></tr><tr><td>Elapsed Time: </td><td>01:34:10 </td></tr><tr><td>Average Pace: </td><td>8:33.1 </td></tr><tr><td>Lat/Lng: </td><td>36.17045 , -86.78976 </td></tr><tr><td>Altitude: </td><td>123.186m </td></tr></table>");
355
+ });
356
+ map.addOverlay(m11);
357
+
358
+ var icon12 = new GIcon(baseIcon);
359
+ icon12.image = "http://www.joakim-systems.com/gicons/marker12.png";
360
+ var p12 = new GPoint(-86.79791, 36.18324);
361
+ var m12 = new GMarker(p12, icon12);
362
+ GEvent.addListener(m12, "click", function() {
363
+ m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0179760066749</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:48:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:42:56 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.18324 , -86.79791 </td></tr><tr><td>Altitude: </td><td>142.893m </td></tr></table>");
364
+ });
365
+ map.addOverlay(m12);
366
+
367
+ var icon13 = new GIcon(baseIcon);
368
+ icon13.image = "http://www.joakim-systems.com/gicons/marker13.png";
369
+ var p13 = new GPoint(-86.8063, 36.19096);
370
+ var m13 = new GMarker(p13, icon13);
371
+ GEvent.addListener(m13, "click", function() {
372
+ m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0026203935526</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>01:51:19 </td></tr><tr><td>Average Pace: </td><td>8:33.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19096 , -86.8063 </td></tr><tr><td>Altitude: </td><td>120.302m </td></tr></table>");
373
+ });
374
+ map.addOverlay(m13);
375
+
376
+ var icon14 = new GIcon(baseIcon);
377
+ icon14.image = "http://www.joakim-systems.com/gicons/marker14.png";
378
+ var p14 = new GPoint(-86.81937, 36.19433);
379
+ var m14 = new GMarker(p14, icon14);
380
+ GEvent.addListener(m14, "click", function() {
381
+ m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 14</b></td></tr><tr><td>Distance: </td><td>14.0076939175942</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:05:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:00:01 </td></tr><tr><td>Average Pace: </td><td>8:34.1 </td></tr><tr><td>Lat/Lng: </td><td>36.19433 , -86.81937 </td></tr><tr><td>Altitude: </td><td>124.628m </td></tr></table>");
382
+ });
383
+ map.addOverlay(m14);
384
+
385
+ var icon15 = new GIcon(baseIcon);
386
+ icon15.image = "http://www.joakim-systems.com/gicons/marker15.png";
387
+ var p15 = new GPoint(-86.81663, 36.19914);
388
+ var m15 = new GMarker(p15, icon15);
389
+ GEvent.addListener(m15, "click", function() {
390
+ m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 15</b></td></tr><tr><td>Distance: </td><td>15.0182316265111</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:14:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:09:01 </td></tr><tr><td>Average Pace: </td><td>8:35.4 </td></tr><tr><td>Lat/Lng: </td><td>36.19914 , -86.81663 </td></tr><tr><td>Altitude: </td><td>123.667m </td></tr></table>");
391
+ });
392
+ map.addOverlay(m15);
393
+
394
+ var icon16 = new GIcon(baseIcon);
395
+ icon16.image = "http://www.joakim-systems.com/gicons/marker16.png";
396
+ var p16 = new GPoint(-86.80349, 36.20002);
397
+ var m16 = new GMarker(p16, icon16);
398
+ GEvent.addListener(m16, "click", function() {
399
+ m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 16</b></td></tr><tr><td>Distance: </td><td>16.0061140772076</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:22:48Z </td></tr><tr><td>Elapsed Time: </td><td>02:17:44 </td></tr><tr><td>Average Pace: </td><td>8:36.3 </td></tr><tr><td>Lat/Lng: </td><td>36.20002 , -86.80349 </td></tr><tr><td>Altitude: </td><td>126.551m </td></tr></table>");
400
+ });
401
+ map.addOverlay(m16);
402
+
403
+ var icon17 = new GIcon(baseIcon);
404
+ icon17.image = "http://www.joakim-systems.com/gicons/marker17.png";
405
+ var p17 = new GPoint(-86.80122, 36.19293);
406
+ var m17 = new GMarker(p17, icon17);
407
+ GEvent.addListener(m17, "click", function() {
408
+ m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 17</b></td></tr><tr><td>Distance: </td><td>17.0180483481438</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:31:55Z </td></tr><tr><td>Elapsed Time: </td><td>02:26:51 </td></tr><tr><td>Average Pace: </td><td>8:37.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19293 , -86.80122 </td></tr><tr><td>Altitude: </td><td>121.264m </td></tr></table>");
409
+ });
410
+ map.addOverlay(m17);
411
+
412
+ var icon18 = new GIcon(baseIcon);
413
+ icon18.image = "http://www.joakim-systems.com/gicons/marker18.png";
414
+ var p18 = new GPoint(-86.79575, 36.17987);
415
+ var m18 = new GMarker(p18, icon18);
416
+ GEvent.addListener(m18, "click", function() {
417
+ m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 18</b></td></tr><tr><td>Distance: </td><td>18.0109273432878</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:41:21Z </td></tr><tr><td>Elapsed Time: </td><td>02:36:17 </td></tr><tr><td>Average Pace: </td><td>8:40.6 </td></tr><tr><td>Lat/Lng: </td><td>36.17987 , -86.79575 </td></tr><tr><td>Altitude: </td><td>147.219m </td></tr></table>");
418
+ });
419
+ map.addOverlay(m18);
420
+
421
+ var icon19 = new GIcon(baseIcon);
422
+ icon19.image = "http://www.joakim-systems.com/gicons/marker19.png";
423
+ var p19 = new GPoint(-86.78603, 36.1698);
424
+ var m19 = new GMarker(p19, icon19);
425
+ GEvent.addListener(m19, "click", function() {
426
+ m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 19</b></td></tr><tr><td>Distance: </td><td>19.0018432569713</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:50:40Z </td></tr><tr><td>Elapsed Time: </td><td>02:45:36 </td></tr><tr><td>Average Pace: </td><td>8:42.9 </td></tr><tr><td>Lat/Lng: </td><td>36.1698 , -86.78603 </td></tr><tr><td>Altitude: </td><td>127.512m </td></tr></table>");
427
+ });
428
+ map.addOverlay(m19);
429
+
430
+ var icon20 = new GIcon(baseIcon);
431
+ icon20.image = "http://www.joakim-systems.com/gicons/marker20.png";
432
+ var p20 = new GPoint(-86.77244, 36.16903);
433
+ var m20 = new GMarker(p20, icon20);
434
+ GEvent.addListener(m20, "click", function() {
435
+ m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 20</b></td></tr><tr><td>Distance: </td><td>20.0035491062528</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:59:51Z </td></tr><tr><td>Elapsed Time: </td><td>02:54:47 </td></tr><tr><td>Average Pace: </td><td>8:44.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16903 , -86.77244 </td></tr><tr><td>Altitude: </td><td>128.473m </td></tr></table>");
436
+ });
437
+ map.addOverlay(m20);
438
+
439
+ var icon21 = new GIcon(baseIcon);
440
+ icon21.image = "http://www.joakim-systems.com/gicons/marker21.png";
441
+ var p21 = new GPoint(-86.76058, 36.16463);
442
+ var m21 = new GMarker(p21, icon21);
443
+ GEvent.addListener(m21, "click", function() {
444
+ m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 21</b></td></tr><tr><td>Distance: </td><td>21.0177478597304</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:09:28Z </td></tr><tr><td>Elapsed Time: </td><td>03:04:24 </td></tr><tr><td>Average Pace: </td><td>8:46.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16463 , -86.76058 </td></tr><tr><td>Altitude: </td><td>133.76m </td></tr></table>");
445
+ });
446
+ map.addOverlay(m21);
447
+
448
+ var icon22 = new GIcon(baseIcon);
449
+ icon22.image = "http://www.joakim-systems.com/gicons/marker22.png";
450
+ var p22 = new GPoint(-86.74571, 36.16326);
451
+ var m22 = new GMarker(p22, icon22);
452
+ GEvent.addListener(m22, "click", function() {
453
+ m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 22</b></td></tr><tr><td>Distance: </td><td>22.0213124798681</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:19:00Z </td></tr><tr><td>Elapsed Time: </td><td>03:13:56 </td></tr><tr><td>Average Pace: </td><td>8:48.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16326 , -86.74571 </td></tr><tr><td>Altitude: </td><td>127.512m </td></tr></table>");
454
+ });
455
+ map.addOverlay(m22);
456
+
457
+ var icon23 = new GIcon(baseIcon);
458
+ icon23.image = "http://www.joakim-systems.com/gicons/marker23.png";
459
+ var p23 = new GPoint(-86.73268, 36.16858);
460
+ var m23 = new GMarker(p23, icon23);
461
+ GEvent.addListener(m23, "click", function() {
462
+ m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 23</b></td></tr><tr><td>Distance: </td><td>23.0531047499703</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:28:34Z </td></tr><tr><td>Elapsed Time: </td><td>03:23:30 </td></tr><tr><td>Average Pace: </td><td>8:49.6 </td></tr><tr><td>Lat/Lng: </td><td>36.16858 , -86.73268 </td></tr><tr><td>Altitude: </td><td>132.799m </td></tr></table>");
463
+ });
464
+ map.addOverlay(m23);
465
+
466
+ var icon24 = new GIcon(baseIcon);
467
+ icon24.image = "http://www.joakim-systems.com/gicons/marker24.png";
468
+ var p24 = new GPoint(-86.72841, 36.16588);
469
+ var m24 = new GMarker(p24, icon24);
470
+ GEvent.addListener(m24, "click", function() {
471
+ m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 24</b></td></tr><tr><td>Distance: </td><td>24.0207198639371</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:37:26Z </td></tr><tr><td>Elapsed Time: </td><td>03:32:22 </td></tr><tr><td>Average Pace: </td><td>8:50.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16588 , -86.72841 </td></tr><tr><td>Altitude: </td><td>129.915m </td></tr></table>");
472
+ });
473
+ map.addOverlay(m24);
474
+
475
+ var icon25 = new GIcon(baseIcon);
476
+ icon25.image = "http://www.joakim-systems.com/gicons/marker25.png";
477
+ var p25 = new GPoint(-86.74551, 36.16317);
478
+ var m25 = new GMarker(p25, icon25);
479
+ GEvent.addListener(m25, "click", function() {
480
+ m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 25</b></td></tr><tr><td>Distance: </td><td>25.0105524318065</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:46:56Z </td></tr><tr><td>Elapsed Time: </td><td>03:41:52 </td></tr><tr><td>Average Pace: </td><td>8:52.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16317 , -86.74551 </td></tr><tr><td>Altitude: </td><td>128.954m </td></tr></table>");
481
+ });
482
+ map.addOverlay(m25);
483
+
484
+ var icon26 = new GIcon(baseIcon);
485
+ icon26.image = "http://www.joakim-systems.com/gicons/marker26.png";
486
+ var p26 = new GPoint(-86.76335, 36.1612);
487
+ var m26 = new GMarker(p26, icon26);
488
+ GEvent.addListener(m26, "click", function() {
489
+ m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 26</b></td></tr><tr><td>Distance: </td><td>26.0260837579004</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:56:45Z </td></tr><tr><td>Elapsed Time: </td><td>03:51:41 </td></tr><tr><td>Average Pace: </td><td>8:54.1 </td></tr><tr><td>Lat/Lng: </td><td>36.1612 , -86.76335 </td></tr><tr><td>Altitude: </td><td>130.396m </td></tr></table>");
490
+ });
491
+ map.addOverlay(m26);
492
+
493
+ var iconFinish = new GIcon(baseIcon);
494
+ iconFinish.image = "http://www.joakim-systems.com/gicons/dd-end.png";
495
+ var pFinish = new GPoint(-86.7721, 36.16416);
496
+ var mFinish = new GMarker(pFinish, iconFinish);
497
+ GEvent.addListener(mFinish, "click", function() {
498
+ mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>26.6567960263308</td></tr><tr><td>Time of Day: </td><td>2005-04-30T16:02:31Z </td></tr><tr><td>Elapsed Time: </td><td>03:57:27 </td></tr><tr><td>Average Pace: </td><td>8:54.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16416 , -86.7721 </td></tr><tr><td>Altitude: </td><td>126.07m </td></tr></table>");
499
+ });
500
+ map.addOverlay(mFinish);
501
+
502
+
503
+
504
+
505
+ GEvent.addListener(map, "click", function() {
506
+ var center = map.getCenter();
507
+
508
+ document.getElementById("messages").innerHTML = 'click: ' + center.toString();
509
+ });
510
+ GEvent.addListener(map, "moveend", function() {
511
+ var center = map.getCenter();
512
+
513
+ document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
514
+ });
515
+
516
+ }
517
+ }
518
+ //]]>
519
+
520
+ </script>
521
+ </head>
522
+ <body onload="load()" onunload="GUnload()">
523
+ <center>
524
+ <h3> Nashville Marathon - 2005-04-30 </h3>
525
+ <h5> Generated by Gooby Sun Feb 25 11:56:29 EST 2007 <br> Gooby = Google APIs + Ruby </h5>
526
+ <div id="map" style="width: 900px; height: 600px"></div>
527
+ <div id="messages"></div>
528
+ </center>
529
+ </body>
530
+ </html>