gooby 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +144 -180
- data/bin/example_usage.txt +55 -0
- data/bin/gooby_been_there.rb +35 -0
- data/bin/gooby_config.rb +16 -0
- data/bin/gooby_gen_gmap.rb +16 -0
- data/bin/gooby_parser.rb +19 -0
- data/bin/gooby_splitter.rb +18 -0
- data/bin/gooby_version.rb +16 -0
- data/bin/run_all.sh +23 -0
- data/bin/run_been_there.sh +16 -0
- data/bin/run_db_gen.sh +11 -0
- data/bin/run_db_load.sh +11 -0
- data/bin/run_gen_gmaps.sh +20 -0
- data/bin/run_parse.sh +43 -0
- data/bin/run_parse_named.sh +19 -0
- data/bin/run_split.sh +23 -0
- data/config/gooby_config.yaml +137 -0
- data/data/20050305_corporate_cup_hm.csv +251 -251
- data/data/20050430_nashville_marathon.csv +1208 -1208
- data/data/20060115_phoenix_marathon.csv +1280 -1280
- data/data/davidson_11m_20070101.csv +251 -0
- data/data/davidson_11m_20070101.xml +2020 -0
- data/data/davidson_5K_20070505.csv +286 -0
- data/data/davidson_5K_20070505.xml +2875 -0
- data/lib/gooby.rb +889 -361
- data/samples/20050305_corporate_cup_hm.html +270 -270
- data/samples/20050430_nashville_marathon.html +1240 -1240
- data/samples/20060115_phoenix_marathon.html +1312 -1312
- data/samples/been_there.txt +744 -0
- data/samples/davidson_11m_20070101.html +432 -0
- data/samples/davidson_5K_20070505.html +395 -0
- data/sql/gooby.ddl +56 -0
- data/sql/gooby_load.dml +35 -0
- metadata +30 -32
- data/bin/20050305_corporate_cup_hm_to_csv.rb +0 -9
- data/bin/20050430_nashville_marathon_to_csv.rb +0 -9
- data/bin/20060115_phoenix_marathon_to_csv.rb +0 -9
- data/bin/activity_2007_03_10_13_02_32.xml_to_csv.rb +0 -9
- data/bin/example_usage.rb +0 -46
- data/bin/example_usage.sh +0 -52
- data/bin/gen_gap_phx.rb +0 -10
- data/bin/gen_gmap_cc_2005.rb +0 -10
- data/bin/gen_gmap_cc_2007.rb +0 -10
- data/bin/gen_gmap_nashville.rb +0 -10
- data/bin/gen_gmap_phx.rb +0 -10
- data/bin/phx_to_csv.rb +0 -47
- data/bin/split_forerunner_logbook_2007.rb +0 -10
- data/bin/split_training_center_2007.rb +0 -8
- data/data/2007_03_10.tcx +0 -28445
- data/data/activity_2007_03_10_13_02_32.csv +0 -1168
- data/data/activity_2007_03_10_13_02_32.xml +0 -11695
- data/data/forerunner_2007.xml +0 -31872
- data/data/geo_data.txt +0 -171
- data/pkg/code_header.txt +0 -21
- data/pkg/pkg.rb +0 -238
- data/pkg/test_header.txt +0 -19
- data/samples/20070310_corporate_cup_hm.html +0 -1367
- data/samples/gps_point_capture.html +0 -54
- data/samples/phoenix_marathon.html +0 -1596
- data/tests/ts_gooby.rb +0 -1109
- data/tests/ts_gooby_min.rb +0 -550
@@ -3,10 +3,10 @@
|
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
4
|
<head>
|
5
5
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
6
|
-
<meta name="description" content="Google Map generated with Gooby 1.
|
7
|
-
<meta name="keywords" content="Google Map Gooby 1.
|
6
|
+
<meta name="description" content="Google Map generated with Gooby 1.1.0">
|
7
|
+
<meta name="keywords" content="Google Map Gooby 1.1.0 GPS">
|
8
8
|
<title> Google Map by Gooby </title>
|
9
|
-
<script src=
|
9
|
+
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xR1l5lLpU9GCFYoS8YrTf8v3gVJ2hRLV1dTSiqDWwWSnMRkM7SVr0EKSA' type='text/javascript'></script>
|
10
10
|
<script type="text/javascript">
|
11
11
|
//<![CDATA[
|
12
12
|
function load() {
|
@@ -15,261 +15,261 @@
|
|
15
15
|
map.addControl(new GLargeMapControl());
|
16
16
|
map.addControl(new GMapTypeControl());
|
17
17
|
|
18
|
-
var centerPoint = new GLatLng(35.199685, -80.837205); // Gooby 1.
|
18
|
+
var centerPoint = new GLatLng(35.199685, -80.837205); // Gooby 1.1.0
|
19
19
|
map.setCenter(centerPoint, 12);
|
20
20
|
|
21
21
|
|
22
22
|
var points = new Array();
|
23
|
-
points.push(new GLatLng(35.22101,-80.84566)); // (1 of 250.0) 2005-03-05T13:00:29Z 0 00:00:00 0.0 Gooby 1.
|
24
|
-
points.push(new GLatLng(35.22054,-80.84506)); // (2 of 250.0) 2005-03-05T13:00:49Z 20 00:00:20 0.046918021941152 Gooby 1.
|
25
|
-
points.push(new GLatLng(35.21998,-80.84446)); // (3 of 250.0) 2005-03-05T13:01:10Z 41 00:00:41 0.0983360698469204 Gooby 1.
|
26
|
-
points.push(new GLatLng(35.22094,-80.84309)); // (4 of 250.0) 2005-03-05T13:01:54Z 85 00:01:25 0.200210979979266 Gooby 1.
|
27
|
-
points.push(new GLatLng(35.22127,-80.84268)); // (5 of 250.0) 2005-03-05T13:02:09Z 100 00:01:40 0.232697037336493 Gooby 1.
|
28
|
-
points.push(new GLatLng(35.22155,-80.8427)); // (6 of 250.0) 2005-03-05T13:02:19Z 110 00:01:50 0.252075125089657 Gooby 1.
|
29
|
-
points.push(new GLatLng(35.22185,-80.84283)); // (7 of 250.0) 2005-03-05T13:02:29Z 120 00:02:00 0.274062567291757 Gooby 1.
|
30
|
-
points.push(new GLatLng(35.22219,-80.84317)); // (8 of 250.0) 2005-03-05T13:02:41Z 132 00:02:12 0.304395193657625 Gooby 1.
|
31
|
-
points.push(new GLatLng(35.22283,-80.84416)); // (9 of 250.0) 2005-03-05T13:03:10Z 161 00:02:41 0.375650926768755 Gooby 1.
|
32
|
-
points.push(new GLatLng(35.22395,-80.84504)); // (10 of 250.0) 2005-03-05T13:03:53Z 204 00:03:24 0.467600066437587 Gooby 1.
|
33
|
-
points.push(new GLatLng(35.22403,-80.84515)); // (11 of 250.0) 2005-03-05T13:03:57Z 208 00:03:28 0.475912452222793 Gooby 1.
|
34
|
-
points.push(new GLatLng(35.22425,-80.84502)); // (12 of 250.0) 2005-03-05T13:04:04Z 215 00:03:35 0.492790426980333 Gooby 1.
|
35
|
-
points.push(new GLatLng(35.2256,-80.84729)); // (13 of 250.0) 2005-03-05T13:05:11Z 282 00:04:42 0.651262953423234 Gooby 1.
|
36
|
-
points.push(new GLatLng(35.22601,-80.8477)); // (14 of 250.0) 2005-03-05T13:05:27Z 298 00:04:58 0.687839739739913 Gooby 1.
|
37
|
-
points.push(new GLatLng(35.22661,-80.84843)); // (15 of 250.0) 2005-03-05T13:05:54Z 325 00:05:25 0.746285122724138 Gooby 1.
|
38
|
-
points.push(new GLatLng(35.22715,-80.84901)); // (16 of 250.0) 2005-03-05T13:06:16Z 347 00:05:47 0.795918233953314 Gooby 1.
|
39
|
-
points.push(new GLatLng(35.22663,-80.84963)); // (17 of 250.0) 2005-03-05T13:06:38Z 369 00:06:09 0.846069376187672 Gooby 1.
|
40
|
-
points.push(new GLatLng(35.22614,-80.85034)); // (18 of 250.0) 2005-03-05T13:07:01Z 392 00:06:32 0.898526894757261 Gooby 1.
|
41
|
-
points.push(new GLatLng(35.22601,-80.85045)); // (19 of 250.0) 2005-03-05T13:07:06Z 397 00:06:37 0.909445268471631 Gooby 1.
|
42
|
-
points.push(new GLatLng(35.22577,-80.85079)); // (20 of 250.0) 2005-03-05T13:07:17Z 408 00:06:48 0.934806000876925 Gooby 1.
|
43
|
-
points.push(new GLatLng(35.22545,-80.85105)); // (21 of 250.0) 2005-03-05T13:07:29Z 420 00:07:00 0.961341335304109 Gooby 1.
|
44
|
-
points.push(new GLatLng(35.22506,-80.85122)); // (22 of 250.0) 2005-03-05T13:07:42Z 433 00:07:13 0.989943630017703 Gooby 1.
|
45
|
-
points.push(new GLatLng(35.22487,-80.85137)); // (23 of 250.0) 2005-03-05T13:07:49Z 440 00:07:20 1.00556377588005 1.0 00:07:20 Gooby 1.
|
46
|
-
points.push(new GLatLng(35.22474,-80.85146)); // (24 of 250.0) 2005-03-05T13:07:54Z 445 00:07:25 1.01588215675517 Gooby 1.
|
47
|
-
points.push(new GLatLng(35.22444,-80.85184)); // (25 of 250.0) 2005-03-05T13:08:08Z 459 00:07:39 1.04570805809106 Gooby 1.
|
48
|
-
points.push(new GLatLng(35.22434,-80.85217)); // (26 of 250.0) 2005-03-05T13:08:18Z 469 00:07:49 1.06557326927759 Gooby 1.
|
49
|
-
points.push(new GLatLng(35.22399,-80.85405)); // (27 of 250.0) 2005-03-05T13:09:09Z 520 00:08:40 1.17440056804311 Gooby 1.
|
50
|
-
points.push(new GLatLng(35.22506,-80.85521)); // (28 of 250.0) 2005-03-05T13:09:55Z 566 00:09:26 1.27314970425493 Gooby 1.
|
51
|
-
points.push(new GLatLng(35.22592,-80.85596)); // (29 of 250.0) 2005-03-05T13:10:28Z 599 00:09:59 1.34610297134886 Gooby 1.
|
52
|
-
points.push(new GLatLng(35.22695,-80.85671)); // (30 of 250.0) 2005-03-05T13:11:07Z 638 00:10:38 1.42890298309629 Gooby 1.
|
53
|
-
points.push(new GLatLng(35.22734,-80.85633)); // (31 of 250.0) 2005-03-05T13:11:23Z 654 00:10:54 1.46334106463099 Gooby 1.
|
54
|
-
points.push(new GLatLng(35.22897,-80.8544)); // (32 of 250.0) 2005-03-05T13:12:35Z 726 00:12:06 1.62001531054915 Gooby 1.
|
55
|
-
points.push(new GLatLng(35.22964,-80.85371)); // (33 of 250.0) 2005-03-05T13:13:04Z 755 00:12:35 1.68050655491899 Gooby 1.
|
56
|
-
points.push(new GLatLng(35.232,-80.85109)); // (34 of 250.0) 2005-03-05T13:14:48Z 859 00:14:19 1.90061711602528 Gooby 1.
|
57
|
-
points.push(new GLatLng(35.23193,-80.85088)); // (35 of 250.0) 2005-03-05T13:14:54Z 865 00:14:25 1.91341734302992 Gooby 1.
|
58
|
-
points.push(new GLatLng(35.23105,-80.84968)); // (36 of 250.0) 2005-03-05T13:15:36Z 907 00:15:07 2.00442699838485 2.0 00:07:47 Gooby 1.
|
59
|
-
points.push(new GLatLng(35.23032,-80.84895)); // (37 of 250.0) 2005-03-05T13:16:08Z 939 00:15:39 2.06955003935657 Gooby 1.
|
60
|
-
points.push(new GLatLng(35.22998,-80.84882)); // (38 of 250.0) 2005-03-05T13:16:20Z 951 00:15:51 2.0941595900545 Gooby 1.
|
61
|
-
points.push(new GLatLng(35.22974,-80.84888)); // (39 of 250.0) 2005-03-05T13:16:28Z 959 00:15:59 2.11108337231424 Gooby 1.
|
62
|
-
points.push(new GLatLng(35.22925,-80.84893)); // (40 of 250.0) 2005-03-05T13:16:44Z 975 00:16:15 2.14505489093239 Gooby 1.
|
63
|
-
points.push(new GLatLng(35.22882,-80.84886)); // (41 of 250.0) 2005-03-05T13:16:58Z 989 00:16:29 2.17502504361516 Gooby 1.
|
64
|
-
points.push(new GLatLng(35.2285,-80.84862)); // (42 of 250.0) 2005-03-05T13:17:10Z 1001 00:16:41 2.20095299731342 Gooby 1.
|
65
|
-
points.push(new GLatLng(35.22781,-80.84785)); // (43 of 250.0) 2005-03-05T13:17:40Z 1031 00:17:11 2.26545956261107 Gooby 1.
|
66
|
-
points.push(new GLatLng(35.22674,-80.84648)); // (44 of 250.0) 2005-03-05T13:18:33Z 1084 00:18:04 2.37243340465649 Gooby 1.
|
67
|
-
points.push(new GLatLng(35.2264,-80.84611)); // (45 of 250.0) 2005-03-05T13:18:49Z 1100 00:18:20 2.40386385307936 Gooby 1.
|
68
|
-
points.push(new GLatLng(35.22397,-80.84317)); // (46 of 250.0) 2005-03-05T13:20:41Z 1212 00:20:12 2.63991390888025 Gooby 1.
|
69
|
-
points.push(new GLatLng(35.22363,-80.84294)); // (47 of 250.0) 2005-03-05T13:20:51Z 1222 00:20:22 2.66675264078349 Gooby 1.
|
70
|
-
points.push(new GLatLng(35.22331,-80.8426)); // (48 of 250.0) 2005-03-05T13:21:04Z 1235 00:20:35 2.69602795767016 Gooby 1.
|
71
|
-
points.push(new GLatLng(35.22294,-80.84212)); // (49 of 250.0) 2005-03-05T13:21:23Z 1254 00:20:54 2.73327613433162 Gooby 1.
|
72
|
-
points.push(new GLatLng(35.22182,-80.8409)); // (50 of 250.0) 2005-03-05T13:22:08Z 1299 00:21:39 2.83685803071362 Gooby 1.
|
73
|
-
points.push(new GLatLng(35.22142,-80.84038)); // (51 of 250.0) 2005-03-05T13:22:27Z 1318 00:21:58 2.8771710819106 Gooby 1.
|
74
|
-
points.push(new GLatLng(35.22013,-80.83905)); // (52 of 250.0) 2005-03-05T13:23:19Z 1370 00:22:50 2.99369860184411 Gooby 1.
|
75
|
-
points.push(new GLatLng(35.22,-80.83886)); // (53 of 250.0) 2005-03-05T13:23:27Z 1378 00:22:58 3.00768703301529 3.0 00:07:51 Gooby 1.
|
76
|
-
points.push(new GLatLng(35.2191,-80.8377)); // (54 of 250.0) 2005-03-05T13:24:10Z 1421 00:23:41 3.0979826551601 Gooby 1.
|
77
|
-
points.push(new GLatLng(35.2185,-80.83717)); // (55 of 250.0) 2005-03-05T13:24:32Z 1443 00:24:03 3.14910358253967 Gooby 1.
|
78
|
-
points.push(new GLatLng(35.2182,-80.83676)); // (56 of 250.0) 2005-03-05T13:24:47Z 1458 00:24:18 3.18017053416113 Gooby 1.
|
79
|
-
points.push(new GLatLng(35.2173,-80.83577)); // (57 of 250.0) 2005-03-05T13:25:22Z 1493 00:24:53 3.2637709317134 Gooby 1.
|
80
|
-
points.push(new GLatLng(35.21622,-80.83451)); // (58 of 250.0) 2005-03-05T13:26:10Z 1541 00:25:41 3.36685273369255 Gooby 1.
|
81
|
-
points.push(new GLatLng(35.21532,-80.83287)); // (59 of 250.0) 2005-03-05T13:27:06Z 1597 00:26:37 3.47836872674983 Gooby 1.
|
82
|
-
points.push(new GLatLng(35.21431,-80.83142)); // (60 of 250.0) 2005-03-05T13:28:00Z 1651 00:27:31 3.58592481990532 Gooby 1.
|
83
|
-
points.push(new GLatLng(35.21348,-80.83064)); // (61 of 250.0) 2005-03-05T13:28:35Z 1686 00:28:06 3.65822231694953 Gooby 1.
|
84
|
-
points.push(new GLatLng(35.21322,-80.83034)); // (62 of 250.0) 2005-03-05T13:28:48Z 1699 00:28:19 3.68290929709234 Gooby 1.
|
85
|
-
points.push(new GLatLng(35.21298,-80.83006)); // (63 of 250.0) 2005-03-05T13:29:00Z 1711 00:28:31 3.70581685363569 Gooby 1.
|
86
|
-
points.push(new GLatLng(35.2126,-80.8294)); // (64 of 250.0) 2005-03-05T13:29:23Z 1734 00:28:54 3.75139371097094 Gooby 1.
|
87
|
-
points.push(new GLatLng(35.21225,-80.82908)); // (65 of 250.0) 2005-03-05T13:29:37Z 1748 00:29:08 3.7815769596586 Gooby 1.
|
88
|
-
points.push(new GLatLng(35.21157,-80.82863)); // (66 of 250.0) 2005-03-05T13:30:00Z 1771 00:29:31 3.83498558070155 Gooby 1.
|
89
|
-
points.push(new GLatLng(35.21099,-80.82798)); // (67 of 250.0) 2005-03-05T13:30:27Z 1798 00:29:58 3.8893184152624 Gooby 1.
|
90
|
-
points.push(new GLatLng(35.21071,-80.82757)); // (68 of 250.0) 2005-03-05T13:30:42Z 1813 00:30:13 3.91948275228275 Gooby 1.
|
91
|
-
points.push(new GLatLng(35.21015,-80.82644)); // (69 of 250.0) 2005-03-05T13:31:20Z 1851 00:30:51 3.99408715367927 Gooby 1.
|
92
|
-
points.push(new GLatLng(35.21007,-80.82633)); // (70 of 250.0) 2005-03-05T13:31:24Z 1855 00:30:55 4.00240016732769 4.0 00:07:57 Gooby 1.
|
93
|
-
points.push(new GLatLng(35.20979,-80.82599)); // (71 of 250.0) 2005-03-05T13:31:37Z 1868 00:31:08 4.02965092287953 Gooby 1.
|
94
|
-
points.push(new GLatLng(35.20837,-80.82466)); // (72 of 250.0) 2005-03-05T13:32:37Z 1928 00:32:08 4.15319027560221 Gooby 1.
|
95
|
-
points.push(new GLatLng(35.20794,-80.82436)); // (73 of 250.0) 2005-03-05T13:32:52Z 1943 00:32:23 4.18738689295133 Gooby 1.
|
96
|
-
points.push(new GLatLng(35.20736,-80.82414)); // (74 of 250.0) 2005-03-05T13:33:11Z 1962 00:32:42 4.22933945730162 Gooby 1.
|
97
|
-
points.push(new GLatLng(35.20704,-80.8241)); // (75 of 250.0) 2005-03-05T13:33:21Z 1972 00:32:52 4.25156316199676 Gooby 1.
|
98
|
-
points.push(new GLatLng(35.20659,-80.8241)); // (76 of 250.0) 2005-03-05T13:33:35Z 1986 00:33:06 4.28265362467911 Gooby 1.
|
99
|
-
points.push(new GLatLng(35.20607,-80.82414)); // (77 of 250.0) 2005-03-05T13:33:51Z 2002 00:33:22 4.31865129835617 Gooby 1.
|
100
|
-
points.push(new GLatLng(35.2047,-80.82448)); // (78 of 250.0) 2005-03-05T13:34:38Z 2049 00:34:09 4.41523110646448 Gooby 1.
|
101
|
-
points.push(new GLatLng(35.20286,-80.82489)); // (79 of 250.0) 2005-03-05T13:35:42Z 2113 00:35:13 4.5444466773487 Gooby 1.
|
102
|
-
points.push(new GLatLng(35.20142,-80.82511)); // (80 of 250.0) 2005-03-05T13:36:29Z 2160 00:36:00 4.64470853975442 Gooby 1.
|
103
|
-
points.push(new GLatLng(35.20073,-80.82528)); // (81 of 250.0) 2005-03-05T13:36:52Z 2183 00:36:23 4.69333712696039 Gooby 1.
|
104
|
-
points.push(new GLatLng(35.19947,-80.82569)); // (82 of 250.0) 2005-03-05T13:37:35Z 2226 00:37:06 4.78341534575197 Gooby 1.
|
105
|
-
points.push(new GLatLng(35.1985,-80.82612)); // (83 of 250.0) 2005-03-05T13:38:07Z 2258 00:37:38 4.8546942210228 Gooby 1.
|
106
|
-
points.push(new GLatLng(35.19822,-80.82633)); // (84 of 250.0) 2005-03-05T13:38:18Z 2269 00:37:49 4.87738353125698 Gooby 1.
|
107
|
-
points.push(new GLatLng(35.19809,-80.82629)); // (85 of 250.0) 2005-03-05T13:38:21Z 2272 00:37:52 4.88664508854348 Gooby 1.
|
108
|
-
points.push(new GLatLng(35.19794,-80.82633)); // (86 of 250.0) 2005-03-05T13:38:26Z 2277 00:37:57 4.89725196852619 Gooby 1.
|
109
|
-
points.push(new GLatLng(35.19646,-80.82706)); // (87 of 250.0) 2005-03-05T13:39:20Z 2331 00:38:51 5.00749881672153 5.0 00:07:56 Gooby 1.
|
110
|
-
points.push(new GLatLng(35.19588,-80.82734)); // (88 of 250.0) 2005-03-05T13:39:40Z 2351 00:39:11 5.050576534569 Gooby 1.
|
111
|
-
points.push(new GLatLng(35.19507,-80.8276)); // (89 of 250.0) 2005-03-05T13:40:07Z 2378 00:39:38 5.10843268542583 Gooby 1.
|
112
|
-
points.push(new GLatLng(35.19331,-80.82835)); // (90 of 250.0) 2005-03-05T13:41:10Z 2441 00:40:41 5.23719334496019 Gooby 1.
|
113
|
-
points.push(new GLatLng(35.19311,-80.82839)); // (91 of 250.0) 2005-03-05T13:41:17Z 2448 00:40:48 5.25119470467369 Gooby 1.
|
114
|
-
points.push(new GLatLng(35.19305,-80.8279)); // (92 of 250.0) 2005-03-05T13:41:31Z 2462 00:41:02 5.27916957701965 Gooby 1.
|
115
|
-
points.push(new GLatLng(35.19286,-80.82712)); // (93 of 250.0) 2005-03-05T13:41:54Z 2485 00:41:25 5.32512429470667 Gooby 1.
|
116
|
-
points.push(new GLatLng(35.19281,-80.82665)); // (94 of 250.0) 2005-03-05T13:42:07Z 2498 00:41:38 5.35188512689578 Gooby 1.
|
117
|
-
points.push(new GLatLng(35.19341,-80.82526)); // (95 of 250.0) 2005-03-05T13:42:47Z 2538 00:42:18 5.44064176601869 Gooby 1.
|
118
|
-
points.push(new GLatLng(35.19339,-80.82506)); // (96 of 250.0) 2005-03-05T13:42:52Z 2543 00:42:23 5.45201819754931 Gooby 1.
|
119
|
-
points.push(new GLatLng(35.19262,-80.82457)); // (97 of 250.0) 2005-03-05T13:43:15Z 2566 00:42:46 5.51198131194714 Gooby 1.
|
120
|
-
points.push(new GLatLng(35.192,-80.8241)); // (98 of 250.0) 2005-03-05T13:43:41Z 2592 00:43:12 5.56237103993908 Gooby 1.
|
121
|
-
points.push(new GLatLng(35.1915,-80.82378)); // (99 of 250.0) 2005-03-05T13:44:00Z 2611 00:43:31 5.60135579217499 Gooby 1.
|
122
|
-
points.push(new GLatLng(35.18996,-80.82313)); // (100 of 250.0) 2005-03-05T13:44:53Z 2664 00:44:24 5.71390631630715 Gooby 1.
|
123
|
-
points.push(new GLatLng(35.18932,-80.82279)); // (101 of 250.0) 2005-03-05T13:45:14Z 2685 00:44:45 5.76211154544005 Gooby 1.
|
124
|
-
points.push(new GLatLng(35.1879,-80.82223)); // (102 of 250.0) 2005-03-05T13:46:05Z 2736 00:45:36 5.86518904360886 Gooby 1.
|
125
|
-
points.push(new GLatLng(35.18781,-80.82225)); // (103 of 250.0) 2005-03-05T13:46:10Z 2741 00:45:41 5.87150921538085 Gooby 1.
|
126
|
-
points.push(new GLatLng(35.18571,-80.82131)); // (104 of 250.0) 2005-03-05T13:47:20Z 2811 00:46:51 6.02600216440376 6.0 00:08:00 Gooby 1.
|
127
|
-
points.push(new GLatLng(35.1849,-80.82105)); // (105 of 250.0) 2005-03-05T13:47:50Z 2841 00:47:21 6.08385879638182 Gooby 1.
|
128
|
-
points.push(new GLatLng(35.18447,-80.82088)); // (106 of 250.0) 2005-03-05T13:48:06Z 2857 00:47:37 6.11507981370546 Gooby 1.
|
129
|
-
points.push(new GLatLng(35.18376,-80.82045)); // (107 of 250.0) 2005-03-05T13:48:29Z 2880 00:48:00 6.16981423395522 Gooby 1.
|
130
|
-
points.push(new GLatLng(35.18344,-80.82032)); // (108 of 250.0) 2005-03-05T13:48:40Z 2891 00:48:11 6.19310985522704 Gooby 1.
|
131
|
-
points.push(new GLatLng(35.18301,-80.82017)); // (109 of 250.0) 2005-03-05T13:48:56Z 2907 00:48:27 6.22400249414074 Gooby 1.
|
132
|
-
points.push(new GLatLng(35.18271,-80.82011)); // (110 of 250.0) 2005-03-05T13:49:08Z 2919 00:48:39 6.24500459583866 Gooby 1.
|
133
|
-
points.push(new GLatLng(35.18101,-80.81938)); // (111 of 250.0) 2005-03-05T13:50:13Z 2984 00:49:44 6.36948149803506 Gooby 1.
|
134
|
-
points.push(new GLatLng(35.1785,-80.81846)); // (112 of 250.0) 2005-03-05T13:51:53Z 3084 00:51:24 6.550512405446 Gooby 1.
|
135
|
-
points.push(new GLatLng(35.17769,-80.81798)); // (113 of 250.0) 2005-03-05T13:52:22Z 3113 00:51:53 6.61269444995211 Gooby 1.
|
136
|
-
points.push(new GLatLng(35.17734,-80.8177)); // (114 of 250.0) 2005-03-05T13:52:36Z 3127 00:52:07 6.64158687021785 Gooby 1.
|
137
|
-
points.push(new GLatLng(35.17719,-80.81781)); // (115 of 250.0) 2005-03-05T13:52:42Z 3133 00:52:13 6.65366946336068 Gooby 1.
|
138
|
-
points.push(new GLatLng(35.17706,-80.81807)); // (116 of 250.0) 2005-03-05T13:52:50Z 3141 00:52:21 6.67088160702726 Gooby 1.
|
139
|
-
points.push(new GLatLng(35.17599,-80.81925)); // (117 of 250.0) 2005-03-05T13:53:36Z 3187 00:53:07 6.77040907973266 Gooby 1.
|
140
|
-
points.push(new GLatLng(35.17563,-80.81976)); // (118 of 250.0) 2005-03-05T13:53:54Z 3205 00:53:25 6.80846379300353 Gooby 1.
|
141
|
-
points.push(new GLatLng(35.17515,-80.82002)); // (119 of 250.0) 2005-03-05T13:54:10Z 3221 00:53:41 6.8447321568443 Gooby 1.
|
142
|
-
points.push(new GLatLng(35.17483,-80.82045)); // (120 of 250.0) 2005-03-05T13:54:25Z 3236 00:53:56 6.87757273270934 Gooby 1.
|
143
|
-
points.push(new GLatLng(35.17445,-80.82082)); // (121 of 250.0) 2005-03-05T13:54:41Z 3252 00:54:12 6.91112718199423 Gooby 1.
|
144
|
-
points.push(new GLatLng(35.174,-80.82114)); // (122 of 250.0) 2005-03-05T13:54:58Z 3269 00:54:29 6.94708839683731 Gooby 1.
|
145
|
-
points.push(new GLatLng(35.17322,-80.82146)); // (123 of 250.0) 2005-03-05T13:55:24Z 3295 00:54:55 7.00392808652734 7.0 00:08:04 Gooby 1.
|
146
|
-
points.push(new GLatLng(35.17286,-80.82178)); // (124 of 250.0) 2005-03-05T13:55:39Z 3310 00:55:10 7.03467282378939 Gooby 1.
|
147
|
-
points.push(new GLatLng(35.17254,-80.82219)); // (125 of 250.0) 2005-03-05T13:55:55Z 3326 00:55:26 7.06668767280766 Gooby 1.
|
148
|
-
points.push(new GLatLng(35.17215,-80.82315)); // (126 of 250.0) 2005-03-05T13:56:23Z 3354 00:55:54 7.12723097967067 Gooby 1.
|
149
|
-
points.push(new GLatLng(35.17035,-80.82251)); // (127 of 250.0) 2005-03-05T13:57:23Z 3414 00:56:54 7.25673914000319 Gooby 1.
|
150
|
-
points.push(new GLatLng(35.16996,-80.82245)); // (128 of 250.0) 2005-03-05T13:57:37Z 3428 00:57:08 7.28389646203507 Gooby 1.
|
151
|
-
points.push(new GLatLng(35.16955,-80.82245)); // (129 of 250.0) 2005-03-05T13:57:52Z 3443 00:57:23 7.31222335157005 Gooby 1.
|
152
|
-
points.push(new GLatLng(35.16908,-80.82249)); // (130 of 250.0) 2005-03-05T13:58:08Z 3459 00:57:39 7.34477414431401 Gooby 1.
|
153
|
-
points.push(new GLatLng(35.16831,-80.82264)); // (131 of 250.0) 2005-03-05T13:58:36Z 3487 00:58:07 7.39864378608744 Gooby 1.
|
154
|
-
points.push(new GLatLng(35.16807,-80.82288)); // (132 of 250.0) 2005-03-05T13:58:45Z 3496 00:58:16 7.42006061565282 Gooby 1.
|
155
|
-
points.push(new GLatLng(35.16786,-80.82328)); // (133 of 250.0) 2005-03-05T13:58:58Z 3509 00:58:29 7.4469098467018 Gooby 1.
|
156
|
-
points.push(new GLatLng(35.16743,-80.82599)); // (134 of 250.0) 2005-03-05T14:00:12Z 3583 00:59:43 7.60282457704534 Gooby 1.
|
157
|
-
points.push(new GLatLng(35.16737,-80.82659)); // (135 of 250.0) 2005-03-05T14:00:27Z 3598 00:59:58 7.63696467666009 Gooby 1.
|
158
|
-
points.push(new GLatLng(35.16743,-80.82665)); // (136 of 250.0) 2005-03-05T14:00:30Z 3601 01:00:01 7.64231920897222 Gooby 1.
|
159
|
-
points.push(new GLatLng(35.16764,-80.82674)); // (137 of 250.0) 2005-03-05T14:00:36Z 3607 01:00:07 7.6576928224623 Gooby 1.
|
160
|
-
points.push(new GLatLng(35.16846,-80.82747)); // (138 of 250.0) 2005-03-05T14:01:06Z 3637 01:00:37 7.72776080256192 Gooby 1.
|
161
|
-
points.push(new GLatLng(35.16865,-80.828)); // (139 of 250.0) 2005-03-05T14:01:21Z 3652 01:00:52 7.76044621745516 Gooby 1.
|
162
|
-
points.push(new GLatLng(35.16874,-80.82854)); // (140 of 250.0) 2005-03-05T14:01:35Z 3666 01:01:06 7.7915719134302 Gooby 1.
|
163
|
-
points.push(new GLatLng(35.16872,-80.82908)); // (141 of 250.0) 2005-03-05T14:01:50Z 3681 01:01:21 7.82210143346606 Gooby 1.
|
164
|
-
points.push(new GLatLng(35.16859,-80.82953)); // (142 of 250.0) 2005-03-05T14:02:02Z 3693 01:01:33 7.84905710916142 Gooby 1.
|
165
|
-
points.push(new GLatLng(35.16852,-80.83021)); // (143 of 250.0) 2005-03-05T14:02:21Z 3712 01:01:52 7.88776576241967 Gooby 1.
|
166
|
-
points.push(new GLatLng(35.16855,-80.83064)); // (144 of 250.0) 2005-03-05T14:02:34Z 3725 01:02:05 7.91213983611875 Gooby 1.
|
167
|
-
points.push(new GLatLng(35.16861,-80.83077)); // (145 of 250.0) 2005-03-05T14:02:38Z 3729 01:02:09 7.9205715017907 Gooby 1.
|
168
|
-
points.push(new GLatLng(35.16876,-80.83081)); // (146 of 250.0) 2005-03-05T14:02:43Z 3734 01:02:14 7.93117838177341 Gooby 1.
|
169
|
-
points.push(new GLatLng(35.16915,-80.83077)); // (147 of 250.0) 2005-03-05T14:02:55Z 3746 01:02:26 7.95821802360938 Gooby 1.
|
170
|
-
points.push(new GLatLng(35.16958,-80.83064)); // (148 of 250.0) 2005-03-05T14:03:11Z 3762 01:02:42 7.98882051211451 Gooby 1.
|
171
|
-
points.push(new GLatLng(35.17026,-80.83036)); // (149 of 250.0) 2005-03-05T14:03:37Z 3788 01:03:08 8.03839171773265 8.0 00:08:13 Gooby 1.
|
172
|
-
points.push(new GLatLng(35.17082,-80.83004)); // (150 of 250.0) 2005-03-05T14:03:58Z 3809 01:03:29 8.08109496236739 Gooby 1.
|
173
|
-
points.push(new GLatLng(35.17118,-80.82994)); // (151 of 250.0) 2005-03-05T14:04:13Z 3824 01:03:44 8.10660050751473 Gooby 1.
|
174
|
-
points.push(new GLatLng(35.17153,-80.82991)); // (152 of 250.0) 2005-03-05T14:04:27Z 3838 01:03:58 8.13084131307244 Gooby 1.
|
175
|
-
points.push(new GLatLng(35.17191,-80.83)); // (153 of 250.0) 2005-03-05T14:04:42Z 3853 01:04:13 8.15758302522269 Gooby 1.
|
176
|
-
points.push(new GLatLng(35.17219,-80.83017)); // (154 of 250.0) 2005-03-05T14:04:54Z 3865 01:04:25 8.17917959949849 Gooby 1.
|
177
|
-
points.push(new GLatLng(35.17277,-80.83103)); // (155 of 250.0) 2005-03-05T14:05:23Z 3894 01:04:54 8.24214574357516 Gooby 1.
|
178
|
-
points.push(new GLatLng(35.17344,-80.83221)); // (156 of 250.0) 2005-03-05T14:05:57Z 3928 01:05:28 8.32328626319684 Gooby 1.
|
179
|
-
points.push(new GLatLng(35.17352,-80.8323)); // (157 of 250.0) 2005-03-05T14:06:00Z 3931 01:05:31 8.33079526926888 Gooby 1.
|
180
|
-
points.push(new GLatLng(35.17406,-80.83341)); // (158 of 250.0) 2005-03-05T14:06:33Z 3964 01:06:04 8.40374450603997 Gooby 1.
|
181
|
-
points.push(new GLatLng(35.17427,-80.8344)); // (159 of 250.0) 2005-03-05T14:07:03Z 3994 01:06:34 8.46150615929062 Gooby 1.
|
182
|
-
points.push(new GLatLng(35.17419,-80.8365)); // (160 of 250.0) 2005-03-05T14:08:03Z 4054 01:07:34 8.58023122986756 Gooby 1.
|
183
|
-
points.push(new GLatLng(35.17423,-80.83654)); // (161 of 250.0) 2005-03-05T14:08:05Z 4056 01:07:36 8.58380080977036 Gooby 1.
|
184
|
-
points.push(new GLatLng(35.1744,-80.83659)); // (162 of 250.0) 2005-03-05T14:08:13Z 4064 01:07:44 8.59588081085456 Gooby 1.
|
185
|
-
points.push(new GLatLng(35.17526,-80.83644)); // (163 of 250.0) 2005-03-05T14:08:42Z 4093 01:08:13 8.65589902578633 Gooby 1.
|
186
|
-
points.push(new GLatLng(35.17653,-80.83631)); // (164 of 250.0) 2005-03-05T14:09:29Z 4140 01:09:00 8.74394991696125 Gooby 1.
|
187
|
-
points.push(new GLatLng(35.17689,-80.83635)); // (165 of 250.0) 2005-03-05T14:09:43Z 4154 01:09:14 8.76892464945857 Gooby 1.
|
188
|
-
points.push(new GLatLng(35.17711,-80.83631)); // (166 of 250.0) 2005-03-05T14:09:51Z 4162 01:09:22 8.78429124515253 Gooby 1.
|
189
|
-
points.push(new GLatLng(35.17719,-80.83622)); // (167 of 250.0) 2005-03-05T14:09:54Z 4165 01:09:25 8.79180001953306 Gooby 1.
|
190
|
-
points.push(new GLatLng(35.17741,-80.83616)); // (168 of 250.0) 2005-03-05T14:10:01Z 4172 01:09:32 8.80737286936987 Gooby 1.
|
191
|
-
points.push(new GLatLng(35.17859,-80.83564)); // (169 of 250.0) 2005-03-05T14:10:42Z 4213 01:10:13 8.89402644251433 Gooby 1.
|
192
|
-
points.push(new GLatLng(35.1799,-80.83532)); // (170 of 250.0) 2005-03-05T14:11:24Z 4255 01:10:55 8.98632069221351 Gooby 1.
|
193
|
-
points.push(new GLatLng(35.1808,-80.83517)); // (171 of 250.0) 2005-03-05T14:11:54Z 4285 01:11:25 9.04907599898347 9.0 00:08:17 Gooby 1.
|
194
|
-
points.push(new GLatLng(35.18166,-80.83476)); // (172 of 250.0) 2005-03-05T14:12:22Z 4313 01:11:53 9.11284481374281 Gooby 1.
|
195
|
-
points.push(new GLatLng(35.18256,-80.83455)); // (173 of 250.0) 2005-03-05T14:12:55Z 4346 01:12:26 9.17614648510883 Gooby 1.
|
196
|
-
points.push(new GLatLng(35.18423,-80.83403)); // (174 of 250.0) 2005-03-05T14:13:54Z 4405 01:13:25 9.29520453074226 Gooby 1.
|
197
|
-
points.push(new GLatLng(35.18462,-80.83371)); // (175 of 250.0) 2005-03-05T14:14:09Z 4420 01:13:40 9.32764750241309 Gooby 1.
|
198
|
-
points.push(new GLatLng(35.18565,-80.83227)); // (176 of 250.0) 2005-03-05T14:15:02Z 4473 01:14:33 9.43570220637116 Gooby 1.
|
199
|
-
points.push(new GLatLng(35.18599,-80.83189)); // (177 of 250.0) 2005-03-05T14:15:19Z 4490 01:14:50 9.46751770659419 Gooby 1.
|
200
|
-
points.push(new GLatLng(35.18629,-80.83197)); // (178 of 250.0) 2005-03-05T14:15:30Z 4501 01:15:01 9.48873130253847 Gooby 1.
|
201
|
-
points.push(new GLatLng(35.18657,-80.83225)); // (179 of 250.0) 2005-03-05T14:15:42Z 4513 01:15:13 9.51371536776566 Gooby 1.
|
202
|
-
points.push(new GLatLng(35.18687,-80.8326)); // (180 of 250.0) 2005-03-05T14:15:56Z 4527 01:15:27 9.5423541952161 Gooby 1.
|
203
|
-
points.push(new GLatLng(35.18702,-80.83305)); // (181 of 250.0) 2005-03-05T14:16:09Z 4540 01:15:40 9.56979593557512 Gooby 1.
|
204
|
-
points.push(new GLatLng(35.18648,-80.8335)); // (182 of 250.0) 2005-03-05T14:16:20Z 4551 01:15:51 9.61493553806241 Gooby 1.
|
205
|
-
points.push(new GLatLng(35.18597,-80.83414)); // (183 of 250.0) 2005-03-05T14:16:45Z 4576 01:16:16 9.66540881829436 Gooby 1.
|
206
|
-
points.push(new GLatLng(35.18573,-80.83451)); // (184 of 250.0) 2005-03-05T14:16:58Z 4589 01:16:29 9.69208180658561 Gooby 1.
|
207
|
-
points.push(new GLatLng(35.18483,-80.83549)); // (185 of 250.0) 2005-03-05T14:17:39Z 4630 01:17:10 9.77532067654695 Gooby 1.
|
208
|
-
points.push(new GLatLng(35.18451,-80.83566)); // (186 of 250.0) 2005-03-05T14:17:52Z 4643 01:17:23 9.79942350765473 Gooby 1.
|
209
|
-
points.push(new GLatLng(35.18412,-80.83577)); // (187 of 250.0) 2005-03-05T14:18:06Z 4657 01:17:37 9.82707536807506 Gooby 1.
|
210
|
-
points.push(new GLatLng(35.18342,-80.8359)); // (188 of 250.0) 2005-03-05T14:18:30Z 4681 01:18:01 9.87599231512961 Gooby 1.
|
211
|
-
points.push(new GLatLng(35.18249,-80.83618)); // (189 of 250.0) 2005-03-05T14:19:03Z 4714 01:18:34 9.94216278012939 Gooby 1.
|
212
|
-
points.push(new GLatLng(35.18157,-80.83635)); // (190 of 250.0) 2005-03-05T14:19:33Z 4744 01:19:04 10.0064464032095 10.0 00:07:39 Gooby 1.
|
213
|
-
points.push(new GLatLng(35.18129,-80.83646)); // (191 of 250.0) 2005-03-05T14:19:43Z 4754 01:19:14 10.0267643972185 Gooby 1.
|
214
|
-
points.push(new GLatLng(35.18125,-80.83661)); // (192 of 250.0) 2005-03-05T14:19:47Z 4758 01:19:18 10.0356740064459 Gooby 1.
|
215
|
-
points.push(new GLatLng(35.18136,-80.83751)); // (193 of 250.0) 2005-03-05T14:20:11Z 4782 01:19:42 10.0870616612511 Gooby 1.
|
216
|
-
points.push(new GLatLng(35.18144,-80.8379)); // (194 of 250.0) 2005-03-05T14:20:20Z 4791 01:19:51 10.1097677575187 Gooby 1.
|
217
|
-
points.push(new GLatLng(35.18174,-80.83865)); // (195 of 250.0) 2005-03-05T14:20:43Z 4814 01:20:14 10.1569196199737 Gooby 1.
|
218
|
-
points.push(new GLatLng(35.18236,-80.8394)); // (196 of 250.0) 2005-03-05T14:21:08Z 4839 01:20:39 10.2171572709319 Gooby 1.
|
219
|
-
points.push(new GLatLng(35.18284,-80.83978)); // (197 of 250.0) 2005-03-05T14:21:26Z 4857 01:20:57 10.2566572213943 Gooby 1.
|
220
|
-
points.push(new GLatLng(35.1832,-80.84004)); // (198 of 250.0) 2005-03-05T14:21:39Z 4870 01:21:10 10.2855395238321 Gooby 1.
|
221
|
-
points.push(new GLatLng(35.18365,-80.84008)); // (199 of 250.0) 2005-03-05T14:21:53Z 4884 01:21:24 10.3167119123429 Gooby 1.
|
222
|
-
points.push(new GLatLng(35.18414,-80.84019)); // (200 of 250.0) 2005-03-05T14:22:10Z 4901 01:21:41 10.3511311454717 Gooby 1.
|
223
|
-
points.push(new GLatLng(35.18417,-80.84036)); // (201 of 250.0) 2005-03-05T14:22:13Z 4904 01:21:44 10.360951764936 Gooby 1.
|
224
|
-
points.push(new GLatLng(35.18447,-80.8406)); // (202 of 250.0) 2005-03-05T14:22:25Z 4916 01:21:56 10.3857160026808 Gooby 1.
|
225
|
-
points.push(new GLatLng(35.185,-80.84062)); // (203 of 250.0) 2005-03-05T14:22:42Z 4933 01:22:13 10.4223511038034 Gooby 1.
|
226
|
-
points.push(new GLatLng(35.18608,-80.84045)); // (204 of 250.0) 2005-03-05T14:23:17Z 4968 01:22:48 10.4975832401729 Gooby 1.
|
227
|
-
points.push(new GLatLng(35.18651,-80.84043)); // (205 of 250.0) 2005-03-05T14:23:31Z 4982 01:23:02 10.5273134433703 Gooby 1.
|
228
|
-
points.push(new GLatLng(35.18696,-80.84021)); // (206 of 250.0) 2005-03-05T14:23:48Z 4999 01:23:19 10.5607938751304 Gooby 1.
|
229
|
-
points.push(new GLatLng(35.18736,-80.84021)); // (207 of 250.0) 2005-03-05T14:24:03Z 5014 01:23:34 10.5884298761554 Gooby 1.
|
230
|
-
points.push(new GLatLng(35.18771,-80.84011)); // (208 of 250.0) 2005-03-05T14:24:18Z 5029 01:23:49 10.6132619550072 Gooby 1.
|
231
|
-
points.push(new GLatLng(35.18867,-80.83955)); // (209 of 250.0) 2005-03-05T14:24:56Z 5067 01:24:27 10.6867400519163 Gooby 1.
|
232
|
-
points.push(new GLatLng(35.19116,-80.83779)); // (210 of 250.0) 2005-03-05T14:26:33Z 5164 01:26:04 10.8854138818426 Gooby 1.
|
233
|
-
points.push(new GLatLng(35.19176,-80.83738)); // (211 of 250.0) 2005-03-05T14:26:56Z 5187 01:26:27 10.9328937584589 Gooby 1.
|
234
|
-
points.push(new GLatLng(35.19228,-80.83708)); // (212 of 250.0) 2005-03-05T14:27:14Z 5205 01:26:45 10.9726134949364 Gooby 1.
|
235
|
-
points.push(new GLatLng(35.19273,-80.83687)); // (213 of 250.0) 2005-03-05T14:27:30Z 5221 01:27:01 11.0058882486447 11.0 00:07:57 Gooby 1.
|
236
|
-
points.push(new GLatLng(35.19322,-80.83676)); // (214 of 250.0) 2005-03-05T14:27:48Z 5239 01:27:19 11.0403073301359 Gooby 1.
|
237
|
-
points.push(new GLatLng(35.19365,-80.83678)); // (215 of 250.0) 2005-03-05T14:28:01Z 5252 01:27:32 11.0700374748156 Gooby 1.
|
238
|
-
points.push(new GLatLng(35.19387,-80.83684)); // (216 of 250.0) 2005-03-05T14:28:07Z 5258 01:27:38 11.0856101012175 Gooby 1.
|
239
|
-
points.push(new GLatLng(35.19462,-80.83697)); // (217 of 250.0) 2005-03-05T14:28:34Z 5285 01:28:05 11.1379448656822 Gooby 1.
|
240
|
-
points.push(new GLatLng(35.19485,-80.83674)); // (218 of 250.0) 2005-03-05T14:28:44Z 5295 01:28:15 11.158466654738 Gooby 1.
|
241
|
-
points.push(new GLatLng(35.19562,-80.83384)); // (219 of 250.0) 2005-03-05T14:30:09Z 5380 01:29:40 11.3306260112061 Gooby 1.
|
242
|
-
points.push(new GLatLng(35.19597,-80.8333)); // (220 of 250.0) 2005-03-05T14:30:31Z 5402 01:30:02 11.3695396087745 Gooby 1.
|
243
|
-
points.push(new GLatLng(35.19644,-80.83272)); // (221 of 250.0) 2005-03-05T14:30:56Z 5427 01:30:27 11.4156565260447 Gooby 1.
|
244
|
-
points.push(new GLatLng(35.19674,-80.8323)); // (222 of 250.0) 2005-03-05T14:31:14Z 5445 01:30:45 11.4471510623899 Gooby 1.
|
245
|
-
points.push(new GLatLng(35.197,-80.83219)); // (223 of 250.0) 2005-03-05T14:31:24Z 5455 01:30:55 11.4661576750723 Gooby 1.
|
246
|
-
points.push(new GLatLng(35.19753,-80.8321)); // (224 of 250.0) 2005-03-05T14:31:45Z 5476 01:31:16 11.5031262424333 Gooby 1.
|
247
|
-
points.push(new GLatLng(35.19796,-80.83208)); // (225 of 250.0) 2005-03-05T14:31:59Z 5490 01:31:30 11.5328563871129 Gooby 1.
|
248
|
-
points.push(new GLatLng(35.1985,-80.83223)); // (226 of 250.0) 2005-03-05T14:32:19Z 5510 01:31:50 11.5711140454601 Gooby 1.
|
249
|
-
points.push(new GLatLng(35.19929,-80.83225)); // (227 of 250.0) 2005-03-05T14:32:47Z 5538 01:32:18 11.6257068382031 Gooby 1.
|
250
|
-
points.push(new GLatLng(35.19983,-80.83212)); // (228 of 250.0) 2005-03-05T14:33:06Z 5557 01:32:37 11.6637304969813 Gooby 1.
|
251
|
-
points.push(new GLatLng(35.20062,-80.83172)); // (229 of 250.0) 2005-03-05T14:33:36Z 5587 01:33:07 11.722798828852 Gooby 1.
|
252
|
-
points.push(new GLatLng(35.20097,-80.83174)); // (230 of 250.0) 2005-03-05T14:33:48Z 5599 01:33:19 11.7470067417448 Gooby 1.
|
253
|
-
points.push(new GLatLng(35.20138,-80.83204)); // (231 of 250.0) 2005-03-05T14:34:05Z 5616 01:33:36 11.7800107114036 Gooby 1.
|
254
|
-
points.push(new GLatLng(35.20277,-80.83322)); // (232 of 250.0) 2005-03-05T14:35:00Z 5671 01:34:31 11.8968891531704 Gooby 1.
|
255
|
-
points.push(new GLatLng(35.20316,-80.83363)); // (233 of 250.0) 2005-03-05T14:35:19Z 5690 01:34:50 11.9324108248346 Gooby 1.
|
256
|
-
points.push(new GLatLng(35.20419,-80.83504)); // (234 of 250.0) 2005-03-05T14:36:13Z 5744 01:35:44 12.0391830723979 12.0 00:08:43 Gooby 1.
|
257
|
-
points.push(new GLatLng(35.205,-80.83601)); // (235 of 250.0) 2005-03-05T14:36:50Z 5781 01:36:21 12.1174804265797 Gooby 1.
|
258
|
-
points.push(new GLatLng(35.20565,-80.83687)); // (236 of 250.0) 2005-03-05T14:37:22Z 5813 01:36:53 12.1836152827885 Gooby 1.
|
259
|
-
points.push(new GLatLng(35.20631,-80.83768)); // (237 of 250.0) 2005-03-05T14:37:56Z 5847 01:37:27 12.2481924440512 Gooby 1.
|
260
|
-
points.push(new GLatLng(35.20775,-80.8391)); // (238 of 250.0) 2005-03-05T14:39:06Z 5917 01:38:37 12.3759579346014 Gooby 1.
|
261
|
-
points.push(new GLatLng(35.20934,-80.84051)); // (239 of 250.0) 2005-03-05T14:40:19Z 5990 01:39:50 12.5116160401105 Gooby 1.
|
262
|
-
points.push(new GLatLng(35.21088,-80.84197)); // (240 of 250.0) 2005-03-05T14:41:34Z 6065 01:41:05 12.6462009665708 Gooby 1.
|
263
|
-
points.push(new GLatLng(35.21189,-80.84279)); // (241 of 250.0) 2005-03-05T14:42:18Z 6109 01:41:49 12.7299382667899 Gooby 1.
|
264
|
-
points.push(new GLatLng(35.21225,-80.84317)); // (242 of 250.0) 2005-03-05T14:42:34Z 6125 01:42:05 12.7627826566699 Gooby 1.
|
265
|
-
points.push(new GLatLng(35.21393,-80.84459)); // (243 of 250.0) 2005-03-05T14:43:44Z 6195 01:43:15 12.9038408253177 Gooby 1.
|
266
|
-
points.push(new GLatLng(35.21406,-80.8445)); // (244 of 250.0) 2005-03-05T14:43:49Z 6200 01:43:20 12.9141595434003 Gooby 1.
|
267
|
-
points.push(new GLatLng(35.21431,-80.84399)); // (245 of 250.0) 2005-03-05T14:44:05Z 6216 01:43:36 12.9477315128867 Gooby 1.
|
268
|
-
points.push(new GLatLng(35.21537,-80.84242)); // (246 of 250.0) 2005-03-05T14:45:00Z 6271 01:44:31 13.0626968352779 13.0 00:08:47 Gooby 1.
|
269
|
-
points.push(new GLatLng(35.21586,-80.84159)); // (247 of 250.0) 2005-03-05T14:45:30Z 6301 01:45:01 13.1204983528532 Gooby 1.
|
270
|
-
points.push(new GLatLng(35.21695,-80.83998)); // (248 of 250.0) 2005-03-05T14:46:29Z 6360 01:46:00 13.2385232480761 Gooby 1.
|
271
|
-
points.push(new GLatLng(35.21728,-80.83957)); // (249 of 250.0) 2005-03-05T14:46:43Z 6374 01:46:14 13.2710100551754 Gooby 1.
|
272
|
-
points.push(new GLatLng(35.21831,-80.83809)); // (250 of 250.0) 2005-03-05T14:47:26Z 6417 01:46:57 13.3807489594998 Gooby 1.
|
23
|
+
points.push(new GLatLng(35.22101,-80.84566)); // (1 of 250.0) 2005-03-05T13:00:29Z 0 00:00:00 0.0 Gooby 1.1.0
|
24
|
+
points.push(new GLatLng(35.22054,-80.84506)); // (2 of 250.0) 2005-03-05T13:00:49Z 20 00:00:20 0.046918021941152 Gooby 1.1.0
|
25
|
+
points.push(new GLatLng(35.21998,-80.84446)); // (3 of 250.0) 2005-03-05T13:01:10Z 41 00:00:41 0.0983360698469204 Gooby 1.1.0
|
26
|
+
points.push(new GLatLng(35.22094,-80.84309)); // (4 of 250.0) 2005-03-05T13:01:54Z 85 00:01:25 0.200210979979266 Gooby 1.1.0
|
27
|
+
points.push(new GLatLng(35.22127,-80.84268)); // (5 of 250.0) 2005-03-05T13:02:09Z 100 00:01:40 0.232697037336493 Gooby 1.1.0
|
28
|
+
points.push(new GLatLng(35.22155,-80.8427)); // (6 of 250.0) 2005-03-05T13:02:19Z 110 00:01:50 0.252075125089657 Gooby 1.1.0
|
29
|
+
points.push(new GLatLng(35.22185,-80.84283)); // (7 of 250.0) 2005-03-05T13:02:29Z 120 00:02:00 0.274062567291757 Gooby 1.1.0
|
30
|
+
points.push(new GLatLng(35.22219,-80.84317)); // (8 of 250.0) 2005-03-05T13:02:41Z 132 00:02:12 0.304395193657625 Gooby 1.1.0
|
31
|
+
points.push(new GLatLng(35.22283,-80.84416)); // (9 of 250.0) 2005-03-05T13:03:10Z 161 00:02:41 0.375650926768755 Gooby 1.1.0
|
32
|
+
points.push(new GLatLng(35.22395,-80.84504)); // (10 of 250.0) 2005-03-05T13:03:53Z 204 00:03:24 0.467600066437587 Gooby 1.1.0
|
33
|
+
points.push(new GLatLng(35.22403,-80.84515)); // (11 of 250.0) 2005-03-05T13:03:57Z 208 00:03:28 0.475912452222793 Gooby 1.1.0
|
34
|
+
points.push(new GLatLng(35.22425,-80.84502)); // (12 of 250.0) 2005-03-05T13:04:04Z 215 00:03:35 0.492790426980333 Gooby 1.1.0
|
35
|
+
points.push(new GLatLng(35.2256,-80.84729)); // (13 of 250.0) 2005-03-05T13:05:11Z 282 00:04:42 0.651262953423234 Gooby 1.1.0
|
36
|
+
points.push(new GLatLng(35.22601,-80.8477)); // (14 of 250.0) 2005-03-05T13:05:27Z 298 00:04:58 0.687839739739913 Gooby 1.1.0
|
37
|
+
points.push(new GLatLng(35.22661,-80.84843)); // (15 of 250.0) 2005-03-05T13:05:54Z 325 00:05:25 0.746285122724138 Gooby 1.1.0
|
38
|
+
points.push(new GLatLng(35.22715,-80.84901)); // (16 of 250.0) 2005-03-05T13:06:16Z 347 00:05:47 0.795918233953314 Gooby 1.1.0
|
39
|
+
points.push(new GLatLng(35.22663,-80.84963)); // (17 of 250.0) 2005-03-05T13:06:38Z 369 00:06:09 0.846069376187672 Gooby 1.1.0
|
40
|
+
points.push(new GLatLng(35.22614,-80.85034)); // (18 of 250.0) 2005-03-05T13:07:01Z 392 00:06:32 0.898526894757261 Gooby 1.1.0
|
41
|
+
points.push(new GLatLng(35.22601,-80.85045)); // (19 of 250.0) 2005-03-05T13:07:06Z 397 00:06:37 0.909445268471631 Gooby 1.1.0
|
42
|
+
points.push(new GLatLng(35.22577,-80.85079)); // (20 of 250.0) 2005-03-05T13:07:17Z 408 00:06:48 0.934806000876925 Gooby 1.1.0
|
43
|
+
points.push(new GLatLng(35.22545,-80.85105)); // (21 of 250.0) 2005-03-05T13:07:29Z 420 00:07:00 0.961341335304109 Gooby 1.1.0
|
44
|
+
points.push(new GLatLng(35.22506,-80.85122)); // (22 of 250.0) 2005-03-05T13:07:42Z 433 00:07:13 0.989943630017703 Gooby 1.1.0
|
45
|
+
points.push(new GLatLng(35.22487,-80.85137)); // (23 of 250.0) 2005-03-05T13:07:49Z 440 00:07:20 1.00556377588005 1.0 00:07:20 Gooby 1.1.0
|
46
|
+
points.push(new GLatLng(35.22474,-80.85146)); // (24 of 250.0) 2005-03-05T13:07:54Z 445 00:07:25 1.01588215675517 Gooby 1.1.0
|
47
|
+
points.push(new GLatLng(35.22444,-80.85184)); // (25 of 250.0) 2005-03-05T13:08:08Z 459 00:07:39 1.04570805809106 Gooby 1.1.0
|
48
|
+
points.push(new GLatLng(35.22434,-80.85217)); // (26 of 250.0) 2005-03-05T13:08:18Z 469 00:07:49 1.06557326927759 Gooby 1.1.0
|
49
|
+
points.push(new GLatLng(35.22399,-80.85405)); // (27 of 250.0) 2005-03-05T13:09:09Z 520 00:08:40 1.17440056804311 Gooby 1.1.0
|
50
|
+
points.push(new GLatLng(35.22506,-80.85521)); // (28 of 250.0) 2005-03-05T13:09:55Z 566 00:09:26 1.27314970425493 Gooby 1.1.0
|
51
|
+
points.push(new GLatLng(35.22592,-80.85596)); // (29 of 250.0) 2005-03-05T13:10:28Z 599 00:09:59 1.34610297134886 Gooby 1.1.0
|
52
|
+
points.push(new GLatLng(35.22695,-80.85671)); // (30 of 250.0) 2005-03-05T13:11:07Z 638 00:10:38 1.42890298309629 Gooby 1.1.0
|
53
|
+
points.push(new GLatLng(35.22734,-80.85633)); // (31 of 250.0) 2005-03-05T13:11:23Z 654 00:10:54 1.46334106463099 Gooby 1.1.0
|
54
|
+
points.push(new GLatLng(35.22897,-80.8544)); // (32 of 250.0) 2005-03-05T13:12:35Z 726 00:12:06 1.62001531054915 Gooby 1.1.0
|
55
|
+
points.push(new GLatLng(35.22964,-80.85371)); // (33 of 250.0) 2005-03-05T13:13:04Z 755 00:12:35 1.68050655491899 Gooby 1.1.0
|
56
|
+
points.push(new GLatLng(35.232,-80.85109)); // (34 of 250.0) 2005-03-05T13:14:48Z 859 00:14:19 1.90061711602528 Gooby 1.1.0
|
57
|
+
points.push(new GLatLng(35.23193,-80.85088)); // (35 of 250.0) 2005-03-05T13:14:54Z 865 00:14:25 1.91341734302992 Gooby 1.1.0
|
58
|
+
points.push(new GLatLng(35.23105,-80.84968)); // (36 of 250.0) 2005-03-05T13:15:36Z 907 00:15:07 2.00442699838485 2.0 00:07:47 Gooby 1.1.0
|
59
|
+
points.push(new GLatLng(35.23032,-80.84895)); // (37 of 250.0) 2005-03-05T13:16:08Z 939 00:15:39 2.06955003935657 Gooby 1.1.0
|
60
|
+
points.push(new GLatLng(35.22998,-80.84882)); // (38 of 250.0) 2005-03-05T13:16:20Z 951 00:15:51 2.0941595900545 Gooby 1.1.0
|
61
|
+
points.push(new GLatLng(35.22974,-80.84888)); // (39 of 250.0) 2005-03-05T13:16:28Z 959 00:15:59 2.11108337231424 Gooby 1.1.0
|
62
|
+
points.push(new GLatLng(35.22925,-80.84893)); // (40 of 250.0) 2005-03-05T13:16:44Z 975 00:16:15 2.14505489093239 Gooby 1.1.0
|
63
|
+
points.push(new GLatLng(35.22882,-80.84886)); // (41 of 250.0) 2005-03-05T13:16:58Z 989 00:16:29 2.17502504361516 Gooby 1.1.0
|
64
|
+
points.push(new GLatLng(35.2285,-80.84862)); // (42 of 250.0) 2005-03-05T13:17:10Z 1001 00:16:41 2.20095299731342 Gooby 1.1.0
|
65
|
+
points.push(new GLatLng(35.22781,-80.84785)); // (43 of 250.0) 2005-03-05T13:17:40Z 1031 00:17:11 2.26545956261107 Gooby 1.1.0
|
66
|
+
points.push(new GLatLng(35.22674,-80.84648)); // (44 of 250.0) 2005-03-05T13:18:33Z 1084 00:18:04 2.37243340465649 Gooby 1.1.0
|
67
|
+
points.push(new GLatLng(35.2264,-80.84611)); // (45 of 250.0) 2005-03-05T13:18:49Z 1100 00:18:20 2.40386385307936 Gooby 1.1.0
|
68
|
+
points.push(new GLatLng(35.22397,-80.84317)); // (46 of 250.0) 2005-03-05T13:20:41Z 1212 00:20:12 2.63991390888025 Gooby 1.1.0
|
69
|
+
points.push(new GLatLng(35.22363,-80.84294)); // (47 of 250.0) 2005-03-05T13:20:51Z 1222 00:20:22 2.66675264078349 Gooby 1.1.0
|
70
|
+
points.push(new GLatLng(35.22331,-80.8426)); // (48 of 250.0) 2005-03-05T13:21:04Z 1235 00:20:35 2.69602795767016 Gooby 1.1.0
|
71
|
+
points.push(new GLatLng(35.22294,-80.84212)); // (49 of 250.0) 2005-03-05T13:21:23Z 1254 00:20:54 2.73327613433162 Gooby 1.1.0
|
72
|
+
points.push(new GLatLng(35.22182,-80.8409)); // (50 of 250.0) 2005-03-05T13:22:08Z 1299 00:21:39 2.83685803071362 Gooby 1.1.0
|
73
|
+
points.push(new GLatLng(35.22142,-80.84038)); // (51 of 250.0) 2005-03-05T13:22:27Z 1318 00:21:58 2.8771710819106 Gooby 1.1.0
|
74
|
+
points.push(new GLatLng(35.22013,-80.83905)); // (52 of 250.0) 2005-03-05T13:23:19Z 1370 00:22:50 2.99369860184411 Gooby 1.1.0
|
75
|
+
points.push(new GLatLng(35.22,-80.83886)); // (53 of 250.0) 2005-03-05T13:23:27Z 1378 00:22:58 3.00768703301529 3.0 00:07:51 Gooby 1.1.0
|
76
|
+
points.push(new GLatLng(35.2191,-80.8377)); // (54 of 250.0) 2005-03-05T13:24:10Z 1421 00:23:41 3.0979826551601 Gooby 1.1.0
|
77
|
+
points.push(new GLatLng(35.2185,-80.83717)); // (55 of 250.0) 2005-03-05T13:24:32Z 1443 00:24:03 3.14910358253967 Gooby 1.1.0
|
78
|
+
points.push(new GLatLng(35.2182,-80.83676)); // (56 of 250.0) 2005-03-05T13:24:47Z 1458 00:24:18 3.18017053416113 Gooby 1.1.0
|
79
|
+
points.push(new GLatLng(35.2173,-80.83577)); // (57 of 250.0) 2005-03-05T13:25:22Z 1493 00:24:53 3.2637709317134 Gooby 1.1.0
|
80
|
+
points.push(new GLatLng(35.21622,-80.83451)); // (58 of 250.0) 2005-03-05T13:26:10Z 1541 00:25:41 3.36685273369255 Gooby 1.1.0
|
81
|
+
points.push(new GLatLng(35.21532,-80.83287)); // (59 of 250.0) 2005-03-05T13:27:06Z 1597 00:26:37 3.47836872674983 Gooby 1.1.0
|
82
|
+
points.push(new GLatLng(35.21431,-80.83142)); // (60 of 250.0) 2005-03-05T13:28:00Z 1651 00:27:31 3.58592481990532 Gooby 1.1.0
|
83
|
+
points.push(new GLatLng(35.21348,-80.83064)); // (61 of 250.0) 2005-03-05T13:28:35Z 1686 00:28:06 3.65822231694953 Gooby 1.1.0
|
84
|
+
points.push(new GLatLng(35.21322,-80.83034)); // (62 of 250.0) 2005-03-05T13:28:48Z 1699 00:28:19 3.68290929709234 Gooby 1.1.0
|
85
|
+
points.push(new GLatLng(35.21298,-80.83006)); // (63 of 250.0) 2005-03-05T13:29:00Z 1711 00:28:31 3.70581685363569 Gooby 1.1.0
|
86
|
+
points.push(new GLatLng(35.2126,-80.8294)); // (64 of 250.0) 2005-03-05T13:29:23Z 1734 00:28:54 3.75139371097094 Gooby 1.1.0
|
87
|
+
points.push(new GLatLng(35.21225,-80.82908)); // (65 of 250.0) 2005-03-05T13:29:37Z 1748 00:29:08 3.7815769596586 Gooby 1.1.0
|
88
|
+
points.push(new GLatLng(35.21157,-80.82863)); // (66 of 250.0) 2005-03-05T13:30:00Z 1771 00:29:31 3.83498558070155 Gooby 1.1.0
|
89
|
+
points.push(new GLatLng(35.21099,-80.82798)); // (67 of 250.0) 2005-03-05T13:30:27Z 1798 00:29:58 3.8893184152624 Gooby 1.1.0
|
90
|
+
points.push(new GLatLng(35.21071,-80.82757)); // (68 of 250.0) 2005-03-05T13:30:42Z 1813 00:30:13 3.91948275228275 Gooby 1.1.0
|
91
|
+
points.push(new GLatLng(35.21015,-80.82644)); // (69 of 250.0) 2005-03-05T13:31:20Z 1851 00:30:51 3.99408715367927 Gooby 1.1.0
|
92
|
+
points.push(new GLatLng(35.21007,-80.82633)); // (70 of 250.0) 2005-03-05T13:31:24Z 1855 00:30:55 4.00240016732769 4.0 00:07:57 Gooby 1.1.0
|
93
|
+
points.push(new GLatLng(35.20979,-80.82599)); // (71 of 250.0) 2005-03-05T13:31:37Z 1868 00:31:08 4.02965092287953 Gooby 1.1.0
|
94
|
+
points.push(new GLatLng(35.20837,-80.82466)); // (72 of 250.0) 2005-03-05T13:32:37Z 1928 00:32:08 4.15319027560221 Gooby 1.1.0
|
95
|
+
points.push(new GLatLng(35.20794,-80.82436)); // (73 of 250.0) 2005-03-05T13:32:52Z 1943 00:32:23 4.18738689295133 Gooby 1.1.0
|
96
|
+
points.push(new GLatLng(35.20736,-80.82414)); // (74 of 250.0) 2005-03-05T13:33:11Z 1962 00:32:42 4.22933945730162 Gooby 1.1.0
|
97
|
+
points.push(new GLatLng(35.20704,-80.8241)); // (75 of 250.0) 2005-03-05T13:33:21Z 1972 00:32:52 4.25156316199676 Gooby 1.1.0
|
98
|
+
points.push(new GLatLng(35.20659,-80.8241)); // (76 of 250.0) 2005-03-05T13:33:35Z 1986 00:33:06 4.28265362467911 Gooby 1.1.0
|
99
|
+
points.push(new GLatLng(35.20607,-80.82414)); // (77 of 250.0) 2005-03-05T13:33:51Z 2002 00:33:22 4.31865129835617 Gooby 1.1.0
|
100
|
+
points.push(new GLatLng(35.2047,-80.82448)); // (78 of 250.0) 2005-03-05T13:34:38Z 2049 00:34:09 4.41523110646448 Gooby 1.1.0
|
101
|
+
points.push(new GLatLng(35.20286,-80.82489)); // (79 of 250.0) 2005-03-05T13:35:42Z 2113 00:35:13 4.5444466773487 Gooby 1.1.0
|
102
|
+
points.push(new GLatLng(35.20142,-80.82511)); // (80 of 250.0) 2005-03-05T13:36:29Z 2160 00:36:00 4.64470853975442 Gooby 1.1.0
|
103
|
+
points.push(new GLatLng(35.20073,-80.82528)); // (81 of 250.0) 2005-03-05T13:36:52Z 2183 00:36:23 4.69333712696039 Gooby 1.1.0
|
104
|
+
points.push(new GLatLng(35.19947,-80.82569)); // (82 of 250.0) 2005-03-05T13:37:35Z 2226 00:37:06 4.78341534575197 Gooby 1.1.0
|
105
|
+
points.push(new GLatLng(35.1985,-80.82612)); // (83 of 250.0) 2005-03-05T13:38:07Z 2258 00:37:38 4.8546942210228 Gooby 1.1.0
|
106
|
+
points.push(new GLatLng(35.19822,-80.82633)); // (84 of 250.0) 2005-03-05T13:38:18Z 2269 00:37:49 4.87738353125698 Gooby 1.1.0
|
107
|
+
points.push(new GLatLng(35.19809,-80.82629)); // (85 of 250.0) 2005-03-05T13:38:21Z 2272 00:37:52 4.88664508854348 Gooby 1.1.0
|
108
|
+
points.push(new GLatLng(35.19794,-80.82633)); // (86 of 250.0) 2005-03-05T13:38:26Z 2277 00:37:57 4.89725196852619 Gooby 1.1.0
|
109
|
+
points.push(new GLatLng(35.19646,-80.82706)); // (87 of 250.0) 2005-03-05T13:39:20Z 2331 00:38:51 5.00749881672153 5.0 00:07:56 Gooby 1.1.0
|
110
|
+
points.push(new GLatLng(35.19588,-80.82734)); // (88 of 250.0) 2005-03-05T13:39:40Z 2351 00:39:11 5.050576534569 Gooby 1.1.0
|
111
|
+
points.push(new GLatLng(35.19507,-80.8276)); // (89 of 250.0) 2005-03-05T13:40:07Z 2378 00:39:38 5.10843268542583 Gooby 1.1.0
|
112
|
+
points.push(new GLatLng(35.19331,-80.82835)); // (90 of 250.0) 2005-03-05T13:41:10Z 2441 00:40:41 5.23719334496019 Gooby 1.1.0
|
113
|
+
points.push(new GLatLng(35.19311,-80.82839)); // (91 of 250.0) 2005-03-05T13:41:17Z 2448 00:40:48 5.25119470467369 Gooby 1.1.0
|
114
|
+
points.push(new GLatLng(35.19305,-80.8279)); // (92 of 250.0) 2005-03-05T13:41:31Z 2462 00:41:02 5.27916957701965 Gooby 1.1.0
|
115
|
+
points.push(new GLatLng(35.19286,-80.82712)); // (93 of 250.0) 2005-03-05T13:41:54Z 2485 00:41:25 5.32512429470667 Gooby 1.1.0
|
116
|
+
points.push(new GLatLng(35.19281,-80.82665)); // (94 of 250.0) 2005-03-05T13:42:07Z 2498 00:41:38 5.35188512689578 Gooby 1.1.0
|
117
|
+
points.push(new GLatLng(35.19341,-80.82526)); // (95 of 250.0) 2005-03-05T13:42:47Z 2538 00:42:18 5.44064176601869 Gooby 1.1.0
|
118
|
+
points.push(new GLatLng(35.19339,-80.82506)); // (96 of 250.0) 2005-03-05T13:42:52Z 2543 00:42:23 5.45201819754931 Gooby 1.1.0
|
119
|
+
points.push(new GLatLng(35.19262,-80.82457)); // (97 of 250.0) 2005-03-05T13:43:15Z 2566 00:42:46 5.51198131194714 Gooby 1.1.0
|
120
|
+
points.push(new GLatLng(35.192,-80.8241)); // (98 of 250.0) 2005-03-05T13:43:41Z 2592 00:43:12 5.56237103993908 Gooby 1.1.0
|
121
|
+
points.push(new GLatLng(35.1915,-80.82378)); // (99 of 250.0) 2005-03-05T13:44:00Z 2611 00:43:31 5.60135579217499 Gooby 1.1.0
|
122
|
+
points.push(new GLatLng(35.18996,-80.82313)); // (100 of 250.0) 2005-03-05T13:44:53Z 2664 00:44:24 5.71390631630715 Gooby 1.1.0
|
123
|
+
points.push(new GLatLng(35.18932,-80.82279)); // (101 of 250.0) 2005-03-05T13:45:14Z 2685 00:44:45 5.76211154544005 Gooby 1.1.0
|
124
|
+
points.push(new GLatLng(35.1879,-80.82223)); // (102 of 250.0) 2005-03-05T13:46:05Z 2736 00:45:36 5.86518904360886 Gooby 1.1.0
|
125
|
+
points.push(new GLatLng(35.18781,-80.82225)); // (103 of 250.0) 2005-03-05T13:46:10Z 2741 00:45:41 5.87150921538085 Gooby 1.1.0
|
126
|
+
points.push(new GLatLng(35.18571,-80.82131)); // (104 of 250.0) 2005-03-05T13:47:20Z 2811 00:46:51 6.02600216440376 6.0 00:08:00 Gooby 1.1.0
|
127
|
+
points.push(new GLatLng(35.1849,-80.82105)); // (105 of 250.0) 2005-03-05T13:47:50Z 2841 00:47:21 6.08385879638182 Gooby 1.1.0
|
128
|
+
points.push(new GLatLng(35.18447,-80.82088)); // (106 of 250.0) 2005-03-05T13:48:06Z 2857 00:47:37 6.11507981370546 Gooby 1.1.0
|
129
|
+
points.push(new GLatLng(35.18376,-80.82045)); // (107 of 250.0) 2005-03-05T13:48:29Z 2880 00:48:00 6.16981423395522 Gooby 1.1.0
|
130
|
+
points.push(new GLatLng(35.18344,-80.82032)); // (108 of 250.0) 2005-03-05T13:48:40Z 2891 00:48:11 6.19310985522704 Gooby 1.1.0
|
131
|
+
points.push(new GLatLng(35.18301,-80.82017)); // (109 of 250.0) 2005-03-05T13:48:56Z 2907 00:48:27 6.22400249414074 Gooby 1.1.0
|
132
|
+
points.push(new GLatLng(35.18271,-80.82011)); // (110 of 250.0) 2005-03-05T13:49:08Z 2919 00:48:39 6.24500459583866 Gooby 1.1.0
|
133
|
+
points.push(new GLatLng(35.18101,-80.81938)); // (111 of 250.0) 2005-03-05T13:50:13Z 2984 00:49:44 6.36948149803506 Gooby 1.1.0
|
134
|
+
points.push(new GLatLng(35.1785,-80.81846)); // (112 of 250.0) 2005-03-05T13:51:53Z 3084 00:51:24 6.550512405446 Gooby 1.1.0
|
135
|
+
points.push(new GLatLng(35.17769,-80.81798)); // (113 of 250.0) 2005-03-05T13:52:22Z 3113 00:51:53 6.61269444995211 Gooby 1.1.0
|
136
|
+
points.push(new GLatLng(35.17734,-80.8177)); // (114 of 250.0) 2005-03-05T13:52:36Z 3127 00:52:07 6.64158687021785 Gooby 1.1.0
|
137
|
+
points.push(new GLatLng(35.17719,-80.81781)); // (115 of 250.0) 2005-03-05T13:52:42Z 3133 00:52:13 6.65366946336068 Gooby 1.1.0
|
138
|
+
points.push(new GLatLng(35.17706,-80.81807)); // (116 of 250.0) 2005-03-05T13:52:50Z 3141 00:52:21 6.67088160702726 Gooby 1.1.0
|
139
|
+
points.push(new GLatLng(35.17599,-80.81925)); // (117 of 250.0) 2005-03-05T13:53:36Z 3187 00:53:07 6.77040907973266 Gooby 1.1.0
|
140
|
+
points.push(new GLatLng(35.17563,-80.81976)); // (118 of 250.0) 2005-03-05T13:53:54Z 3205 00:53:25 6.80846379300353 Gooby 1.1.0
|
141
|
+
points.push(new GLatLng(35.17515,-80.82002)); // (119 of 250.0) 2005-03-05T13:54:10Z 3221 00:53:41 6.8447321568443 Gooby 1.1.0
|
142
|
+
points.push(new GLatLng(35.17483,-80.82045)); // (120 of 250.0) 2005-03-05T13:54:25Z 3236 00:53:56 6.87757273270934 Gooby 1.1.0
|
143
|
+
points.push(new GLatLng(35.17445,-80.82082)); // (121 of 250.0) 2005-03-05T13:54:41Z 3252 00:54:12 6.91112718199423 Gooby 1.1.0
|
144
|
+
points.push(new GLatLng(35.174,-80.82114)); // (122 of 250.0) 2005-03-05T13:54:58Z 3269 00:54:29 6.94708839683731 Gooby 1.1.0
|
145
|
+
points.push(new GLatLng(35.17322,-80.82146)); // (123 of 250.0) 2005-03-05T13:55:24Z 3295 00:54:55 7.00392808652734 7.0 00:08:04 Gooby 1.1.0
|
146
|
+
points.push(new GLatLng(35.17286,-80.82178)); // (124 of 250.0) 2005-03-05T13:55:39Z 3310 00:55:10 7.03467282378939 Gooby 1.1.0
|
147
|
+
points.push(new GLatLng(35.17254,-80.82219)); // (125 of 250.0) 2005-03-05T13:55:55Z 3326 00:55:26 7.06668767280766 Gooby 1.1.0
|
148
|
+
points.push(new GLatLng(35.17215,-80.82315)); // (126 of 250.0) 2005-03-05T13:56:23Z 3354 00:55:54 7.12723097967067 Gooby 1.1.0
|
149
|
+
points.push(new GLatLng(35.17035,-80.82251)); // (127 of 250.0) 2005-03-05T13:57:23Z 3414 00:56:54 7.25673914000319 Gooby 1.1.0
|
150
|
+
points.push(new GLatLng(35.16996,-80.82245)); // (128 of 250.0) 2005-03-05T13:57:37Z 3428 00:57:08 7.28389646203507 Gooby 1.1.0
|
151
|
+
points.push(new GLatLng(35.16955,-80.82245)); // (129 of 250.0) 2005-03-05T13:57:52Z 3443 00:57:23 7.31222335157005 Gooby 1.1.0
|
152
|
+
points.push(new GLatLng(35.16908,-80.82249)); // (130 of 250.0) 2005-03-05T13:58:08Z 3459 00:57:39 7.34477414431401 Gooby 1.1.0
|
153
|
+
points.push(new GLatLng(35.16831,-80.82264)); // (131 of 250.0) 2005-03-05T13:58:36Z 3487 00:58:07 7.39864378608744 Gooby 1.1.0
|
154
|
+
points.push(new GLatLng(35.16807,-80.82288)); // (132 of 250.0) 2005-03-05T13:58:45Z 3496 00:58:16 7.42006061565282 Gooby 1.1.0
|
155
|
+
points.push(new GLatLng(35.16786,-80.82328)); // (133 of 250.0) 2005-03-05T13:58:58Z 3509 00:58:29 7.4469098467018 Gooby 1.1.0
|
156
|
+
points.push(new GLatLng(35.16743,-80.82599)); // (134 of 250.0) 2005-03-05T14:00:12Z 3583 00:59:43 7.60282457704534 Gooby 1.1.0
|
157
|
+
points.push(new GLatLng(35.16737,-80.82659)); // (135 of 250.0) 2005-03-05T14:00:27Z 3598 00:59:58 7.63696467666009 Gooby 1.1.0
|
158
|
+
points.push(new GLatLng(35.16743,-80.82665)); // (136 of 250.0) 2005-03-05T14:00:30Z 3601 01:00:01 7.64231920897222 Gooby 1.1.0
|
159
|
+
points.push(new GLatLng(35.16764,-80.82674)); // (137 of 250.0) 2005-03-05T14:00:36Z 3607 01:00:07 7.6576928224623 Gooby 1.1.0
|
160
|
+
points.push(new GLatLng(35.16846,-80.82747)); // (138 of 250.0) 2005-03-05T14:01:06Z 3637 01:00:37 7.72776080256192 Gooby 1.1.0
|
161
|
+
points.push(new GLatLng(35.16865,-80.828)); // (139 of 250.0) 2005-03-05T14:01:21Z 3652 01:00:52 7.76044621745516 Gooby 1.1.0
|
162
|
+
points.push(new GLatLng(35.16874,-80.82854)); // (140 of 250.0) 2005-03-05T14:01:35Z 3666 01:01:06 7.7915719134302 Gooby 1.1.0
|
163
|
+
points.push(new GLatLng(35.16872,-80.82908)); // (141 of 250.0) 2005-03-05T14:01:50Z 3681 01:01:21 7.82210143346606 Gooby 1.1.0
|
164
|
+
points.push(new GLatLng(35.16859,-80.82953)); // (142 of 250.0) 2005-03-05T14:02:02Z 3693 01:01:33 7.84905710916142 Gooby 1.1.0
|
165
|
+
points.push(new GLatLng(35.16852,-80.83021)); // (143 of 250.0) 2005-03-05T14:02:21Z 3712 01:01:52 7.88776576241967 Gooby 1.1.0
|
166
|
+
points.push(new GLatLng(35.16855,-80.83064)); // (144 of 250.0) 2005-03-05T14:02:34Z 3725 01:02:05 7.91213983611875 Gooby 1.1.0
|
167
|
+
points.push(new GLatLng(35.16861,-80.83077)); // (145 of 250.0) 2005-03-05T14:02:38Z 3729 01:02:09 7.9205715017907 Gooby 1.1.0
|
168
|
+
points.push(new GLatLng(35.16876,-80.83081)); // (146 of 250.0) 2005-03-05T14:02:43Z 3734 01:02:14 7.93117838177341 Gooby 1.1.0
|
169
|
+
points.push(new GLatLng(35.16915,-80.83077)); // (147 of 250.0) 2005-03-05T14:02:55Z 3746 01:02:26 7.95821802360938 Gooby 1.1.0
|
170
|
+
points.push(new GLatLng(35.16958,-80.83064)); // (148 of 250.0) 2005-03-05T14:03:11Z 3762 01:02:42 7.98882051211451 Gooby 1.1.0
|
171
|
+
points.push(new GLatLng(35.17026,-80.83036)); // (149 of 250.0) 2005-03-05T14:03:37Z 3788 01:03:08 8.03839171773265 8.0 00:08:13 Gooby 1.1.0
|
172
|
+
points.push(new GLatLng(35.17082,-80.83004)); // (150 of 250.0) 2005-03-05T14:03:58Z 3809 01:03:29 8.08109496236739 Gooby 1.1.0
|
173
|
+
points.push(new GLatLng(35.17118,-80.82994)); // (151 of 250.0) 2005-03-05T14:04:13Z 3824 01:03:44 8.10660050751473 Gooby 1.1.0
|
174
|
+
points.push(new GLatLng(35.17153,-80.82991)); // (152 of 250.0) 2005-03-05T14:04:27Z 3838 01:03:58 8.13084131307244 Gooby 1.1.0
|
175
|
+
points.push(new GLatLng(35.17191,-80.83)); // (153 of 250.0) 2005-03-05T14:04:42Z 3853 01:04:13 8.15758302522269 Gooby 1.1.0
|
176
|
+
points.push(new GLatLng(35.17219,-80.83017)); // (154 of 250.0) 2005-03-05T14:04:54Z 3865 01:04:25 8.17917959949849 Gooby 1.1.0
|
177
|
+
points.push(new GLatLng(35.17277,-80.83103)); // (155 of 250.0) 2005-03-05T14:05:23Z 3894 01:04:54 8.24214574357516 Gooby 1.1.0
|
178
|
+
points.push(new GLatLng(35.17344,-80.83221)); // (156 of 250.0) 2005-03-05T14:05:57Z 3928 01:05:28 8.32328626319684 Gooby 1.1.0
|
179
|
+
points.push(new GLatLng(35.17352,-80.8323)); // (157 of 250.0) 2005-03-05T14:06:00Z 3931 01:05:31 8.33079526926888 Gooby 1.1.0
|
180
|
+
points.push(new GLatLng(35.17406,-80.83341)); // (158 of 250.0) 2005-03-05T14:06:33Z 3964 01:06:04 8.40374450603997 Gooby 1.1.0
|
181
|
+
points.push(new GLatLng(35.17427,-80.8344)); // (159 of 250.0) 2005-03-05T14:07:03Z 3994 01:06:34 8.46150615929062 Gooby 1.1.0
|
182
|
+
points.push(new GLatLng(35.17419,-80.8365)); // (160 of 250.0) 2005-03-05T14:08:03Z 4054 01:07:34 8.58023122986756 Gooby 1.1.0
|
183
|
+
points.push(new GLatLng(35.17423,-80.83654)); // (161 of 250.0) 2005-03-05T14:08:05Z 4056 01:07:36 8.58380080977036 Gooby 1.1.0
|
184
|
+
points.push(new GLatLng(35.1744,-80.83659)); // (162 of 250.0) 2005-03-05T14:08:13Z 4064 01:07:44 8.59588081085456 Gooby 1.1.0
|
185
|
+
points.push(new GLatLng(35.17526,-80.83644)); // (163 of 250.0) 2005-03-05T14:08:42Z 4093 01:08:13 8.65589902578633 Gooby 1.1.0
|
186
|
+
points.push(new GLatLng(35.17653,-80.83631)); // (164 of 250.0) 2005-03-05T14:09:29Z 4140 01:09:00 8.74394991696125 Gooby 1.1.0
|
187
|
+
points.push(new GLatLng(35.17689,-80.83635)); // (165 of 250.0) 2005-03-05T14:09:43Z 4154 01:09:14 8.76892464945857 Gooby 1.1.0
|
188
|
+
points.push(new GLatLng(35.17711,-80.83631)); // (166 of 250.0) 2005-03-05T14:09:51Z 4162 01:09:22 8.78429124515253 Gooby 1.1.0
|
189
|
+
points.push(new GLatLng(35.17719,-80.83622)); // (167 of 250.0) 2005-03-05T14:09:54Z 4165 01:09:25 8.79180001953306 Gooby 1.1.0
|
190
|
+
points.push(new GLatLng(35.17741,-80.83616)); // (168 of 250.0) 2005-03-05T14:10:01Z 4172 01:09:32 8.80737286936987 Gooby 1.1.0
|
191
|
+
points.push(new GLatLng(35.17859,-80.83564)); // (169 of 250.0) 2005-03-05T14:10:42Z 4213 01:10:13 8.89402644251433 Gooby 1.1.0
|
192
|
+
points.push(new GLatLng(35.1799,-80.83532)); // (170 of 250.0) 2005-03-05T14:11:24Z 4255 01:10:55 8.98632069221351 Gooby 1.1.0
|
193
|
+
points.push(new GLatLng(35.1808,-80.83517)); // (171 of 250.0) 2005-03-05T14:11:54Z 4285 01:11:25 9.04907599898347 9.0 00:08:17 Gooby 1.1.0
|
194
|
+
points.push(new GLatLng(35.18166,-80.83476)); // (172 of 250.0) 2005-03-05T14:12:22Z 4313 01:11:53 9.11284481374281 Gooby 1.1.0
|
195
|
+
points.push(new GLatLng(35.18256,-80.83455)); // (173 of 250.0) 2005-03-05T14:12:55Z 4346 01:12:26 9.17614648510883 Gooby 1.1.0
|
196
|
+
points.push(new GLatLng(35.18423,-80.83403)); // (174 of 250.0) 2005-03-05T14:13:54Z 4405 01:13:25 9.29520453074226 Gooby 1.1.0
|
197
|
+
points.push(new GLatLng(35.18462,-80.83371)); // (175 of 250.0) 2005-03-05T14:14:09Z 4420 01:13:40 9.32764750241309 Gooby 1.1.0
|
198
|
+
points.push(new GLatLng(35.18565,-80.83227)); // (176 of 250.0) 2005-03-05T14:15:02Z 4473 01:14:33 9.43570220637116 Gooby 1.1.0
|
199
|
+
points.push(new GLatLng(35.18599,-80.83189)); // (177 of 250.0) 2005-03-05T14:15:19Z 4490 01:14:50 9.46751770659419 Gooby 1.1.0
|
200
|
+
points.push(new GLatLng(35.18629,-80.83197)); // (178 of 250.0) 2005-03-05T14:15:30Z 4501 01:15:01 9.48873130253847 Gooby 1.1.0
|
201
|
+
points.push(new GLatLng(35.18657,-80.83225)); // (179 of 250.0) 2005-03-05T14:15:42Z 4513 01:15:13 9.51371536776566 Gooby 1.1.0
|
202
|
+
points.push(new GLatLng(35.18687,-80.8326)); // (180 of 250.0) 2005-03-05T14:15:56Z 4527 01:15:27 9.5423541952161 Gooby 1.1.0
|
203
|
+
points.push(new GLatLng(35.18702,-80.83305)); // (181 of 250.0) 2005-03-05T14:16:09Z 4540 01:15:40 9.56979593557512 Gooby 1.1.0
|
204
|
+
points.push(new GLatLng(35.18648,-80.8335)); // (182 of 250.0) 2005-03-05T14:16:20Z 4551 01:15:51 9.61493553806241 Gooby 1.1.0
|
205
|
+
points.push(new GLatLng(35.18597,-80.83414)); // (183 of 250.0) 2005-03-05T14:16:45Z 4576 01:16:16 9.66540881829436 Gooby 1.1.0
|
206
|
+
points.push(new GLatLng(35.18573,-80.83451)); // (184 of 250.0) 2005-03-05T14:16:58Z 4589 01:16:29 9.69208180658561 Gooby 1.1.0
|
207
|
+
points.push(new GLatLng(35.18483,-80.83549)); // (185 of 250.0) 2005-03-05T14:17:39Z 4630 01:17:10 9.77532067654695 Gooby 1.1.0
|
208
|
+
points.push(new GLatLng(35.18451,-80.83566)); // (186 of 250.0) 2005-03-05T14:17:52Z 4643 01:17:23 9.79942350765473 Gooby 1.1.0
|
209
|
+
points.push(new GLatLng(35.18412,-80.83577)); // (187 of 250.0) 2005-03-05T14:18:06Z 4657 01:17:37 9.82707536807506 Gooby 1.1.0
|
210
|
+
points.push(new GLatLng(35.18342,-80.8359)); // (188 of 250.0) 2005-03-05T14:18:30Z 4681 01:18:01 9.87599231512961 Gooby 1.1.0
|
211
|
+
points.push(new GLatLng(35.18249,-80.83618)); // (189 of 250.0) 2005-03-05T14:19:03Z 4714 01:18:34 9.94216278012939 Gooby 1.1.0
|
212
|
+
points.push(new GLatLng(35.18157,-80.83635)); // (190 of 250.0) 2005-03-05T14:19:33Z 4744 01:19:04 10.0064464032095 10.0 00:07:39 Gooby 1.1.0
|
213
|
+
points.push(new GLatLng(35.18129,-80.83646)); // (191 of 250.0) 2005-03-05T14:19:43Z 4754 01:19:14 10.0267643972185 Gooby 1.1.0
|
214
|
+
points.push(new GLatLng(35.18125,-80.83661)); // (192 of 250.0) 2005-03-05T14:19:47Z 4758 01:19:18 10.0356740064459 Gooby 1.1.0
|
215
|
+
points.push(new GLatLng(35.18136,-80.83751)); // (193 of 250.0) 2005-03-05T14:20:11Z 4782 01:19:42 10.0870616612511 Gooby 1.1.0
|
216
|
+
points.push(new GLatLng(35.18144,-80.8379)); // (194 of 250.0) 2005-03-05T14:20:20Z 4791 01:19:51 10.1097677575187 Gooby 1.1.0
|
217
|
+
points.push(new GLatLng(35.18174,-80.83865)); // (195 of 250.0) 2005-03-05T14:20:43Z 4814 01:20:14 10.1569196199737 Gooby 1.1.0
|
218
|
+
points.push(new GLatLng(35.18236,-80.8394)); // (196 of 250.0) 2005-03-05T14:21:08Z 4839 01:20:39 10.2171572709319 Gooby 1.1.0
|
219
|
+
points.push(new GLatLng(35.18284,-80.83978)); // (197 of 250.0) 2005-03-05T14:21:26Z 4857 01:20:57 10.2566572213943 Gooby 1.1.0
|
220
|
+
points.push(new GLatLng(35.1832,-80.84004)); // (198 of 250.0) 2005-03-05T14:21:39Z 4870 01:21:10 10.2855395238321 Gooby 1.1.0
|
221
|
+
points.push(new GLatLng(35.18365,-80.84008)); // (199 of 250.0) 2005-03-05T14:21:53Z 4884 01:21:24 10.3167119123429 Gooby 1.1.0
|
222
|
+
points.push(new GLatLng(35.18414,-80.84019)); // (200 of 250.0) 2005-03-05T14:22:10Z 4901 01:21:41 10.3511311454717 Gooby 1.1.0
|
223
|
+
points.push(new GLatLng(35.18417,-80.84036)); // (201 of 250.0) 2005-03-05T14:22:13Z 4904 01:21:44 10.360951764936 Gooby 1.1.0
|
224
|
+
points.push(new GLatLng(35.18447,-80.8406)); // (202 of 250.0) 2005-03-05T14:22:25Z 4916 01:21:56 10.3857160026808 Gooby 1.1.0
|
225
|
+
points.push(new GLatLng(35.185,-80.84062)); // (203 of 250.0) 2005-03-05T14:22:42Z 4933 01:22:13 10.4223511038034 Gooby 1.1.0
|
226
|
+
points.push(new GLatLng(35.18608,-80.84045)); // (204 of 250.0) 2005-03-05T14:23:17Z 4968 01:22:48 10.4975832401729 Gooby 1.1.0
|
227
|
+
points.push(new GLatLng(35.18651,-80.84043)); // (205 of 250.0) 2005-03-05T14:23:31Z 4982 01:23:02 10.5273134433703 Gooby 1.1.0
|
228
|
+
points.push(new GLatLng(35.18696,-80.84021)); // (206 of 250.0) 2005-03-05T14:23:48Z 4999 01:23:19 10.5607938751304 Gooby 1.1.0
|
229
|
+
points.push(new GLatLng(35.18736,-80.84021)); // (207 of 250.0) 2005-03-05T14:24:03Z 5014 01:23:34 10.5884298761554 Gooby 1.1.0
|
230
|
+
points.push(new GLatLng(35.18771,-80.84011)); // (208 of 250.0) 2005-03-05T14:24:18Z 5029 01:23:49 10.6132619550072 Gooby 1.1.0
|
231
|
+
points.push(new GLatLng(35.18867,-80.83955)); // (209 of 250.0) 2005-03-05T14:24:56Z 5067 01:24:27 10.6867400519163 Gooby 1.1.0
|
232
|
+
points.push(new GLatLng(35.19116,-80.83779)); // (210 of 250.0) 2005-03-05T14:26:33Z 5164 01:26:04 10.8854138818426 Gooby 1.1.0
|
233
|
+
points.push(new GLatLng(35.19176,-80.83738)); // (211 of 250.0) 2005-03-05T14:26:56Z 5187 01:26:27 10.9328937584589 Gooby 1.1.0
|
234
|
+
points.push(new GLatLng(35.19228,-80.83708)); // (212 of 250.0) 2005-03-05T14:27:14Z 5205 01:26:45 10.9726134949364 Gooby 1.1.0
|
235
|
+
points.push(new GLatLng(35.19273,-80.83687)); // (213 of 250.0) 2005-03-05T14:27:30Z 5221 01:27:01 11.0058882486447 11.0 00:07:57 Gooby 1.1.0
|
236
|
+
points.push(new GLatLng(35.19322,-80.83676)); // (214 of 250.0) 2005-03-05T14:27:48Z 5239 01:27:19 11.0403073301359 Gooby 1.1.0
|
237
|
+
points.push(new GLatLng(35.19365,-80.83678)); // (215 of 250.0) 2005-03-05T14:28:01Z 5252 01:27:32 11.0700374748156 Gooby 1.1.0
|
238
|
+
points.push(new GLatLng(35.19387,-80.83684)); // (216 of 250.0) 2005-03-05T14:28:07Z 5258 01:27:38 11.0856101012175 Gooby 1.1.0
|
239
|
+
points.push(new GLatLng(35.19462,-80.83697)); // (217 of 250.0) 2005-03-05T14:28:34Z 5285 01:28:05 11.1379448656822 Gooby 1.1.0
|
240
|
+
points.push(new GLatLng(35.19485,-80.83674)); // (218 of 250.0) 2005-03-05T14:28:44Z 5295 01:28:15 11.158466654738 Gooby 1.1.0
|
241
|
+
points.push(new GLatLng(35.19562,-80.83384)); // (219 of 250.0) 2005-03-05T14:30:09Z 5380 01:29:40 11.3306260112061 Gooby 1.1.0
|
242
|
+
points.push(new GLatLng(35.19597,-80.8333)); // (220 of 250.0) 2005-03-05T14:30:31Z 5402 01:30:02 11.3695396087745 Gooby 1.1.0
|
243
|
+
points.push(new GLatLng(35.19644,-80.83272)); // (221 of 250.0) 2005-03-05T14:30:56Z 5427 01:30:27 11.4156565260447 Gooby 1.1.0
|
244
|
+
points.push(new GLatLng(35.19674,-80.8323)); // (222 of 250.0) 2005-03-05T14:31:14Z 5445 01:30:45 11.4471510623899 Gooby 1.1.0
|
245
|
+
points.push(new GLatLng(35.197,-80.83219)); // (223 of 250.0) 2005-03-05T14:31:24Z 5455 01:30:55 11.4661576750723 Gooby 1.1.0
|
246
|
+
points.push(new GLatLng(35.19753,-80.8321)); // (224 of 250.0) 2005-03-05T14:31:45Z 5476 01:31:16 11.5031262424333 Gooby 1.1.0
|
247
|
+
points.push(new GLatLng(35.19796,-80.83208)); // (225 of 250.0) 2005-03-05T14:31:59Z 5490 01:31:30 11.5328563871129 Gooby 1.1.0
|
248
|
+
points.push(new GLatLng(35.1985,-80.83223)); // (226 of 250.0) 2005-03-05T14:32:19Z 5510 01:31:50 11.5711140454601 Gooby 1.1.0
|
249
|
+
points.push(new GLatLng(35.19929,-80.83225)); // (227 of 250.0) 2005-03-05T14:32:47Z 5538 01:32:18 11.6257068382031 Gooby 1.1.0
|
250
|
+
points.push(new GLatLng(35.19983,-80.83212)); // (228 of 250.0) 2005-03-05T14:33:06Z 5557 01:32:37 11.6637304969813 Gooby 1.1.0
|
251
|
+
points.push(new GLatLng(35.20062,-80.83172)); // (229 of 250.0) 2005-03-05T14:33:36Z 5587 01:33:07 11.722798828852 Gooby 1.1.0
|
252
|
+
points.push(new GLatLng(35.20097,-80.83174)); // (230 of 250.0) 2005-03-05T14:33:48Z 5599 01:33:19 11.7470067417448 Gooby 1.1.0
|
253
|
+
points.push(new GLatLng(35.20138,-80.83204)); // (231 of 250.0) 2005-03-05T14:34:05Z 5616 01:33:36 11.7800107114036 Gooby 1.1.0
|
254
|
+
points.push(new GLatLng(35.20277,-80.83322)); // (232 of 250.0) 2005-03-05T14:35:00Z 5671 01:34:31 11.8968891531704 Gooby 1.1.0
|
255
|
+
points.push(new GLatLng(35.20316,-80.83363)); // (233 of 250.0) 2005-03-05T14:35:19Z 5690 01:34:50 11.9324108248346 Gooby 1.1.0
|
256
|
+
points.push(new GLatLng(35.20419,-80.83504)); // (234 of 250.0) 2005-03-05T14:36:13Z 5744 01:35:44 12.0391830723979 12.0 00:08:43 Gooby 1.1.0
|
257
|
+
points.push(new GLatLng(35.205,-80.83601)); // (235 of 250.0) 2005-03-05T14:36:50Z 5781 01:36:21 12.1174804265797 Gooby 1.1.0
|
258
|
+
points.push(new GLatLng(35.20565,-80.83687)); // (236 of 250.0) 2005-03-05T14:37:22Z 5813 01:36:53 12.1836152827885 Gooby 1.1.0
|
259
|
+
points.push(new GLatLng(35.20631,-80.83768)); // (237 of 250.0) 2005-03-05T14:37:56Z 5847 01:37:27 12.2481924440512 Gooby 1.1.0
|
260
|
+
points.push(new GLatLng(35.20775,-80.8391)); // (238 of 250.0) 2005-03-05T14:39:06Z 5917 01:38:37 12.3759579346014 Gooby 1.1.0
|
261
|
+
points.push(new GLatLng(35.20934,-80.84051)); // (239 of 250.0) 2005-03-05T14:40:19Z 5990 01:39:50 12.5116160401105 Gooby 1.1.0
|
262
|
+
points.push(new GLatLng(35.21088,-80.84197)); // (240 of 250.0) 2005-03-05T14:41:34Z 6065 01:41:05 12.6462009665708 Gooby 1.1.0
|
263
|
+
points.push(new GLatLng(35.21189,-80.84279)); // (241 of 250.0) 2005-03-05T14:42:18Z 6109 01:41:49 12.7299382667899 Gooby 1.1.0
|
264
|
+
points.push(new GLatLng(35.21225,-80.84317)); // (242 of 250.0) 2005-03-05T14:42:34Z 6125 01:42:05 12.7627826566699 Gooby 1.1.0
|
265
|
+
points.push(new GLatLng(35.21393,-80.84459)); // (243 of 250.0) 2005-03-05T14:43:44Z 6195 01:43:15 12.9038408253177 Gooby 1.1.0
|
266
|
+
points.push(new GLatLng(35.21406,-80.8445)); // (244 of 250.0) 2005-03-05T14:43:49Z 6200 01:43:20 12.9141595434003 Gooby 1.1.0
|
267
|
+
points.push(new GLatLng(35.21431,-80.84399)); // (245 of 250.0) 2005-03-05T14:44:05Z 6216 01:43:36 12.9477315128867 Gooby 1.1.0
|
268
|
+
points.push(new GLatLng(35.21537,-80.84242)); // (246 of 250.0) 2005-03-05T14:45:00Z 6271 01:44:31 13.0626968352779 13.0 00:08:47 Gooby 1.1.0
|
269
|
+
points.push(new GLatLng(35.21586,-80.84159)); // (247 of 250.0) 2005-03-05T14:45:30Z 6301 01:45:01 13.1204983528532 Gooby 1.1.0
|
270
|
+
points.push(new GLatLng(35.21695,-80.83998)); // (248 of 250.0) 2005-03-05T14:46:29Z 6360 01:46:00 13.2385232480761 Gooby 1.1.0
|
271
|
+
points.push(new GLatLng(35.21728,-80.83957)); // (249 of 250.0) 2005-03-05T14:46:43Z 6374 01:46:14 13.2710100551754 Gooby 1.1.0
|
272
|
+
points.push(new GLatLng(35.21831,-80.83809)); // (250 of 250.0) 2005-03-05T14:47:26Z 6417 01:46:57 13.3807489594998 Gooby 1.1.0
|
273
273
|
|
274
274
|
var routePolyline = new GPolyline(points);
|
275
275
|
map.addOverlay(routePolyline);
|
@@ -289,7 +289,7 @@
|
|
289
289
|
var pStart = new GPoint(-80.84566, 35.22101);
|
290
290
|
var mStart = new GMarker(pStart, iconStart);
|
291
291
|
GEvent.addListener(mStart, "click", function() {
|
292
|
-
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
|
292
|
+
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></table>");
|
293
293
|
});
|
294
294
|
map.addOverlay(mStart);
|
295
295
|
|
@@ -298,7 +298,7 @@
|
|
298
298
|
var p1 = new GPoint(-80.85137, 35.22487);
|
299
299
|
var m1 = new GMarker(p1, icon1);
|
300
300
|
GEvent.addListener(m1, "click", function() {
|
301
|
-
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
|
301
|
+
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></table>");
|
302
302
|
});
|
303
303
|
map.addOverlay(m1);
|
304
304
|
|
@@ -307,7 +307,7 @@
|
|
307
307
|
var p2 = new GPoint(-80.84968, 35.23105);
|
308
308
|
var m2 = new GMarker(p2, icon2);
|
309
309
|
GEvent.addListener(m2, "click", function() {
|
310
|
-
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
|
310
|
+
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></table>");
|
311
311
|
});
|
312
312
|
map.addOverlay(m2);
|
313
313
|
|
@@ -316,7 +316,7 @@
|
|
316
316
|
var p3 = new GPoint(-80.83886, 35.22);
|
317
317
|
var m3 = new GMarker(p3, icon3);
|
318
318
|
GEvent.addListener(m3, "click", function() {
|
319
|
-
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
|
319
|
+
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></table>");
|
320
320
|
});
|
321
321
|
map.addOverlay(m3);
|
322
322
|
|
@@ -325,7 +325,7 @@
|
|
325
325
|
var p4 = new GPoint(-80.82633, 35.21007);
|
326
326
|
var m4 = new GMarker(p4, icon4);
|
327
327
|
GEvent.addListener(m4, "click", function() {
|
328
|
-
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
|
328
|
+
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></table>");
|
329
329
|
});
|
330
330
|
map.addOverlay(m4);
|
331
331
|
|
@@ -334,7 +334,7 @@
|
|
334
334
|
var p5 = new GPoint(-80.82706, 35.19646);
|
335
335
|
var m5 = new GMarker(p5, icon5);
|
336
336
|
GEvent.addListener(m5, "click", function() {
|
337
|
-
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
|
337
|
+
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></table>");
|
338
338
|
});
|
339
339
|
map.addOverlay(m5);
|
340
340
|
|
@@ -343,7 +343,7 @@
|
|
343
343
|
var p6 = new GPoint(-80.82131, 35.18571);
|
344
344
|
var m6 = new GMarker(p6, icon6);
|
345
345
|
GEvent.addListener(m6, "click", function() {
|
346
|
-
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
|
346
|
+
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></table>");
|
347
347
|
});
|
348
348
|
map.addOverlay(m6);
|
349
349
|
|
@@ -352,7 +352,7 @@
|
|
352
352
|
var p7 = new GPoint(-80.82146, 35.17322);
|
353
353
|
var m7 = new GMarker(p7, icon7);
|
354
354
|
GEvent.addListener(m7, "click", function() {
|
355
|
-
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
|
355
|
+
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></table>");
|
356
356
|
});
|
357
357
|
map.addOverlay(m7);
|
358
358
|
|
@@ -361,7 +361,7 @@
|
|
361
361
|
var p8 = new GPoint(-80.83036, 35.17026);
|
362
362
|
var m8 = new GMarker(p8, icon8);
|
363
363
|
GEvent.addListener(m8, "click", function() {
|
364
|
-
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
|
364
|
+
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></table>");
|
365
365
|
});
|
366
366
|
map.addOverlay(m8);
|
367
367
|
|
@@ -370,7 +370,7 @@
|
|
370
370
|
var p9 = new GPoint(-80.83517, 35.1808);
|
371
371
|
var m9 = new GMarker(p9, icon9);
|
372
372
|
GEvent.addListener(m9, "click", function() {
|
373
|
-
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
|
373
|
+
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></table>");
|
374
374
|
});
|
375
375
|
map.addOverlay(m9);
|
376
376
|
|
@@ -379,7 +379,7 @@
|
|
379
379
|
var p10 = new GPoint(-80.83635, 35.18157);
|
380
380
|
var m10 = new GMarker(p10, icon10);
|
381
381
|
GEvent.addListener(m10, "click", function() {
|
382
|
-
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
|
382
|
+
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></table>");
|
383
383
|
});
|
384
384
|
map.addOverlay(m10);
|
385
385
|
|
@@ -388,7 +388,7 @@
|
|
388
388
|
var p11 = new GPoint(-80.83687, 35.19273);
|
389
389
|
var m11 = new GMarker(p11, icon11);
|
390
390
|
GEvent.addListener(m11, "click", function() {
|
391
|
-
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
|
391
|
+
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></table>");
|
392
392
|
});
|
393
393
|
map.addOverlay(m11);
|
394
394
|
|
@@ -397,7 +397,7 @@
|
|
397
397
|
var p12 = new GPoint(-80.83504, 35.20419);
|
398
398
|
var m12 = new GMarker(p12, icon12);
|
399
399
|
GEvent.addListener(m12, "click", function() {
|
400
|
-
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
|
400
|
+
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></table>");
|
401
401
|
});
|
402
402
|
map.addOverlay(m12);
|
403
403
|
|
@@ -406,7 +406,7 @@
|
|
406
406
|
var p13 = new GPoint(-80.84242, 35.21537);
|
407
407
|
var m13 = new GMarker(p13, icon13);
|
408
408
|
GEvent.addListener(m13, "click", function() {
|
409
|
-
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
|
409
|
+
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></table>");
|
410
410
|
});
|
411
411
|
map.addOverlay(m13);
|
412
412
|
|
@@ -415,7 +415,7 @@
|
|
415
415
|
var pFinish = new GPoint(-80.83809, 35.21831);
|
416
416
|
var mFinish = new GMarker(pFinish, iconFinish);
|
417
417
|
GEvent.addListener(mFinish, "click", function() {
|
418
|
-
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
|
418
|
+
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></table>");
|
419
419
|
});
|
420
420
|
map.addOverlay(mFinish);
|
421
421
|
|
@@ -442,7 +442,7 @@
|
|
442
442
|
<body onload="load()" onunload="GUnload()">
|
443
443
|
<center>
|
444
444
|
<h3> 2005/03/05 Charlotte Corporate Cup Half Marathon </h3>
|
445
|
-
<h5> Generated by Gooby
|
445
|
+
<h5> Generated by Gooby Sun Jun 10 16:16:24 EDT 2007 <br> Gooby = Google APIs + Ruby </h5>
|
446
446
|
<div id="map" style="width: 900px; height: 600px"></div>
|
447
447
|
<div id="messages"></div>
|
448
448
|
</center>
|