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
@@ -1,1367 +0,0 @@
|
|
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
|
-
<meta name="description" content="Google Map generated with Gooby 1.0.0">
|
7
|
-
<meta name="keywords" content="Google Map Gooby 1.0.0 GPS">
|
8
|
-
<title> Google Map by Gooby </title>
|
9
|
-
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xQg0TO_bCqGOTsRH2RbuhBZnI0wvRQW0Q92mw1taN1NJCk2cxlQQutfuA" type="text/javascript"></script>
|
10
|
-
<script type="text/javascript">
|
11
|
-
//<![CDATA[
|
12
|
-
function load() {
|
13
|
-
if (GBrowserIsCompatible()) {
|
14
|
-
var map = new GMap2(document.getElementById("map"));
|
15
|
-
map.addControl(new GLargeMapControl());
|
16
|
-
map.addControl(new GMapTypeControl());
|
17
|
-
|
18
|
-
var centerPoint = new GLatLng(35.199741, -80.837136); // Gooby 1.0.0
|
19
|
-
map.setCenter(centerPoint, 12);
|
20
|
-
|
21
|
-
|
22
|
-
var points = new Array();
|
23
|
-
points.push(new GLatLng(35.22097,-80.8456)); // (1 of 1167.0) 2007-03-10T13:02:32Z 0 00:00:00 0.0 Gooby 1.0.0
|
24
|
-
// points.push(new GLatLng(35.220873,-80.84548)); // (2 of 1167.0) 2007-03-10T13:02:38Z 6 00:00:06 0.00952803404399787 Gooby 1.0.0
|
25
|
-
// points.push(new GLatLng(35.220764,-80.845339)); // (3 of 1167.0) 2007-03-10T13:02:43Z 11 00:00:11 0.0204847416791884 Gooby 1.0.0
|
26
|
-
// points.push(new GLatLng(35.220706,-80.84527)); // (4 of 1167.0) 2007-03-10T13:02:46Z 14 00:00:14 0.0260726718510737 Gooby 1.0.0
|
27
|
-
// points.push(new GLatLng(35.220548,-80.845087)); // (5 of 1167.0) 2007-03-10T13:02:54Z 22 00:00:22 0.0411009905718094 Gooby 1.0.0
|
28
|
-
points.push(new GLatLng(35.220455,-80.844959)); // (6 of 1167.0) 2007-03-10T13:02:59Z 27 00:00:27 0.0507694981738473 Gooby 1.0.0
|
29
|
-
// points.push(new GLatLng(35.220328,-80.84481)); // (7 of 1167.0) 2007-03-10T13:03:05Z 33 00:00:33 0.0629234425834562 Gooby 1.0.0
|
30
|
-
// points.push(new GLatLng(35.220217,-80.84468)); // (8 of 1167.0) 2007-03-10T13:03:10Z 38 00:00:38 0.0735370452776735 Gooby 1.0.0
|
31
|
-
// points.push(new GLatLng(35.220091,-80.844542)); // (9 of 1167.0) 2007-03-10T13:03:16Z 44 00:00:44 0.0852181534981457 Gooby 1.0.0
|
32
|
-
// points.push(new GLatLng(35.220035,-80.844437)); // (10 of 1167.0) 2007-03-10T13:03:21Z 49 00:00:49 0.0922956368558539 Gooby 1.0.0
|
33
|
-
points.push(new GLatLng(35.220049,-80.844316)); // (11 of 1167.0) 2007-03-10T13:03:25Z 53 00:00:53 0.0991933594700011 Gooby 1.0.0
|
34
|
-
// points.push(new GLatLng(35.220159,-80.844175)); // (12 of 1167.0) 2007-03-10T13:03:31Z 59 00:00:59 0.110197599102216 Gooby 1.0.0
|
35
|
-
// points.push(new GLatLng(35.220258,-80.844049)); // (13 of 1167.0) 2007-03-10T13:03:36Z 64 00:01:04 0.120064875961657 Gooby 1.0.0
|
36
|
-
// points.push(new GLatLng(35.220403,-80.843844)); // (14 of 1167.0) 2007-03-10T13:03:44Z 72 00:01:12 0.135369758170556 Gooby 1.0.0
|
37
|
-
// points.push(new GLatLng(35.220482,-80.84369)); // (15 of 1167.0) 2007-03-10T13:03:49Z 77 00:01:17 0.145633195650138 Gooby 1.0.0
|
38
|
-
points.push(new GLatLng(35.220578,-80.843561)); // (16 of 1167.0) 2007-03-10T13:03:54Z 82 00:01:22 0.155482118709289 Gooby 1.0.0
|
39
|
-
// points.push(new GLatLng(35.220679,-80.843433)); // (17 of 1167.0) 2007-03-10T13:03:59Z 87 00:01:27 0.165526587723618 Gooby 1.0.0
|
40
|
-
// points.push(new GLatLng(35.220804,-80.843286)); // (18 of 1167.0) 2007-03-10T13:04:05Z 93 00:01:33 0.177502591700493 Gooby 1.0.0
|
41
|
-
// points.push(new GLatLng(35.220928,-80.843113)); // (19 of 1167.0) 2007-03-10T13:04:11Z 99 00:01:39 0.190492643932502 Gooby 1.0.0
|
42
|
-
// points.push(new GLatLng(35.221058,-80.842915)); // (20 of 1167.0) 2007-03-10T13:04:18Z 106 00:01:46 0.204830058070411 Gooby 1.0.0
|
43
|
-
points.push(new GLatLng(35.221163,-80.842776)); // (21 of 1167.0) 2007-03-10T13:04:24Z 112 00:01:52 0.215515540686946 Gooby 1.0.0
|
44
|
-
// points.push(new GLatLng(35.221292,-80.842738)); // (22 of 1167.0) 2007-03-10T13:04:29Z 117 00:01:57 0.224682504074307 Gooby 1.0.0
|
45
|
-
// points.push(new GLatLng(35.221425,-80.842786)); // (23 of 1167.0) 2007-03-10T13:04:34Z 122 00:02:02 0.234262617201614 Gooby 1.0.0
|
46
|
-
// points.push(new GLatLng(35.221575,-80.842859)); // (24 of 1167.0) 2007-03-10T13:04:40Z 128 00:02:08 0.245415102600997 Gooby 1.0.0
|
47
|
-
// points.push(new GLatLng(35.221737,-80.842937)); // (25 of 1167.0) 2007-03-10T13:04:46Z 134 00:02:14 0.257442421983 Gooby 1.0.0
|
48
|
-
points.push(new GLatLng(35.221829,-80.842993)); // (26 of 1167.0) 2007-03-10T13:04:50Z 138 00:02:18 0.264541258965625 Gooby 1.0.0
|
49
|
-
// points.push(new GLatLng(35.22195,-80.84309)); // (27 of 1167.0) 2007-03-10T13:04:55Z 143 00:02:23 0.274534327967124 Gooby 1.0.0
|
50
|
-
// points.push(new GLatLng(35.222044,-80.843175)); // (28 of 1167.0) 2007-03-10T13:04:59Z 147 00:02:27 0.282608469848358 Gooby 1.0.0
|
51
|
-
// points.push(new GLatLng(35.222099,-80.843214)); // (29 of 1167.0) 2007-03-10T13:05:01Z 149 00:02:29 0.286999750543649 Gooby 1.0.0
|
52
|
-
// points.push(new GLatLng(35.222198,-80.843324)); // (30 of 1167.0) 2007-03-10T13:05:06Z 154 00:02:34 0.296237232254639 Gooby 1.0.0
|
53
|
-
points.push(new GLatLng(35.222347,-80.843502)); // (31 of 1167.0) 2007-03-10T13:05:13Z 161 00:02:41 0.310621408566721 Gooby 1.0.0
|
54
|
-
// points.push(new GLatLng(35.222471,-80.843675)); // (32 of 1167.0) 2007-03-10T13:05:20Z 168 00:02:48 0.323611326868929 Gooby 1.0.0
|
55
|
-
// points.push(new GLatLng(35.222564,-80.843746)); // (33 of 1167.0) 2007-03-10T13:05:25Z 173 00:02:53 0.331183779084922 Gooby 1.0.0
|
56
|
-
// points.push(new GLatLng(35.222666,-80.843842)); // (34 of 1167.0) 2007-03-10T13:05:30Z 178 00:02:58 0.340072861708899 Gooby 1.0.0
|
57
|
-
// points.push(new GLatLng(35.222796,-80.843972)); // (35 of 1167.0) 2007-03-10T13:05:36Z 184 00:03:04 0.351670715478694 Gooby 1.0.0
|
58
|
-
points.push(new GLatLng(35.222882,-80.844107)); // (36 of 1167.0) 2007-03-10T13:05:41Z 189 00:03:09 0.361333103201901 Gooby 1.0.0
|
59
|
-
// points.push(new GLatLng(35.222987,-80.844276)); // (37 of 1167.0) 2007-03-10T13:05:47Z 195 00:03:15 0.373316658803309 Gooby 1.0.0
|
60
|
-
// points.push(new GLatLng(35.223088,-80.84437)); // (38 of 1167.0) 2007-03-10T13:05:52Z 200 00:03:20 0.382082564759278 Gooby 1.0.0
|
61
|
-
// points.push(new GLatLng(35.223138,-80.844447)); // (39 of 1167.0) 2007-03-10T13:05:55Z 203 00:03:23 0.387634262022536 Gooby 1.0.0
|
62
|
-
// points.push(new GLatLng(35.223065,-80.844635)); // (40 of 1167.0) 2007-03-10T13:06:11Z 219 00:03:39 0.39938264485829 Gooby 1.0.0
|
63
|
-
points.push(new GLatLng(35.223127,-80.844633)); // (41 of 1167.0) 2007-03-10T13:06:15Z 223 00:03:43 0.40366724532995 Gooby 1.0.0
|
64
|
-
// points.push(new GLatLng(35.22332,-80.844762)); // (42 of 1167.0) 2007-03-10T13:06:17Z 225 00:03:45 0.418859747413052 Gooby 1.0.0
|
65
|
-
// points.push(new GLatLng(35.223672,-80.845001)); // (43 of 1167.0) 2007-03-10T13:06:23Z 231 00:03:51 0.446669892031433 Gooby 1.0.0
|
66
|
-
// points.push(new GLatLng(35.223798,-80.84512)); // (44 of 1167.0) 2007-03-10T13:06:28Z 236 00:03:56 0.457664799936433 Gooby 1.0.0
|
67
|
-
// points.push(new GLatLng(35.223882,-80.84526)); // (45 of 1167.0) 2007-03-10T13:06:32Z 240 00:04:00 0.467468752934546 Gooby 1.0.0
|
68
|
-
points.push(new GLatLng(35.223986,-80.845377)); // (46 of 1167.0) 2007-03-10T13:06:37Z 245 00:04:05 0.477227528644303 Gooby 1.0.0
|
69
|
-
// points.push(new GLatLng(35.224078,-80.845442)); // (47 of 1167.0) 2007-03-10T13:06:43Z 251 00:04:11 0.484566401909595 Gooby 1.0.0
|
70
|
-
// points.push(new GLatLng(35.224192,-80.845554)); // (48 of 1167.0) 2007-03-10T13:06:48Z 256 00:04:16 0.494665627465474 Gooby 1.0.0
|
71
|
-
// points.push(new GLatLng(35.224263,-80.845648)); // (49 of 1167.0) 2007-03-10T13:06:52Z 260 00:04:20 0.50189102032518 Gooby 1.0.0
|
72
|
-
// points.push(new GLatLng(35.224408,-80.845755)); // (50 of 1167.0) 2007-03-10T13:06:58Z 266 00:04:26 0.513588648841253 Gooby 1.0.0
|
73
|
-
points.push(new GLatLng(35.224694,-80.845722)); // (51 of 1167.0) 2007-03-10T13:07:07Z 275 00:04:35 0.533436073826756 Gooby 1.0.0
|
74
|
-
// points.push(new GLatLng(35.224797,-80.845794)); // (52 of 1167.0) 2007-03-10T13:07:12Z 280 00:04:40 0.541631052792517 Gooby 1.0.0
|
75
|
-
// points.push(new GLatLng(35.224808,-80.845831)); // (53 of 1167.0) 2007-03-10T13:07:13Z 281 00:04:41 0.543853078788576 Gooby 1.0.0
|
76
|
-
// points.push(new GLatLng(35.224843,-80.84623)); // (54 of 1167.0) 2007-03-10T13:07:19Z 287 00:04:47 0.566501867431365 Gooby 1.0.0
|
77
|
-
// points.push(new GLatLng(35.224886,-80.846419)); // (55 of 1167.0) 2007-03-10T13:07:24Z 292 00:04:52 0.577574980273018 Gooby 1.0.0
|
78
|
-
points.push(new GLatLng(35.224966,-80.846559)); // (56 of 1167.0) 2007-03-10T13:07:29Z 297 00:04:57 0.587217722199278 Gooby 1.0.0
|
79
|
-
// points.push(new GLatLng(35.22498,-80.846588)); // (57 of 1167.0) 2007-03-10T13:07:30Z 298 00:04:58 0.589118172928278 Gooby 1.0.0
|
80
|
-
// points.push(new GLatLng(35.225057,-80.846569)); // (58 of 1167.0) 2007-03-10T13:07:34Z 302 00:05:02 0.594544997280474 Gooby 1.0.0
|
81
|
-
// points.push(new GLatLng(35.225178,-80.846735)); // (59 of 1167.0) 2007-03-10T13:07:40Z 308 00:05:08 0.607101380263306 Gooby 1.0.0
|
82
|
-
// points.push(new GLatLng(35.225257,-80.846816)); // (60 of 1167.0) 2007-03-10T13:07:43Z 311 00:05:11 0.6142210181297 Gooby 1.0.0
|
83
|
-
points.push(new GLatLng(35.225412,-80.846986)); // (61 of 1167.0) 2007-03-10T13:07:49Z 317 00:05:17 0.628599508733393 Gooby 1.0.0
|
84
|
-
// points.push(new GLatLng(35.225578,-80.846997)); // (62 of 1167.0) 2007-03-10T13:07:54Z 322 00:05:22 0.640085215930547 Gooby 1.0.0
|
85
|
-
// points.push(new GLatLng(35.225726,-80.847086)); // (63 of 1167.0) 2007-03-10T13:08:00Z 328 00:05:28 0.651477846028607 Gooby 1.0.0
|
86
|
-
// points.push(new GLatLng(35.225762,-80.847156)); // (64 of 1167.0) 2007-03-10T13:08:02Z 330 00:05:30 0.656146415355687 Gooby 1.0.0
|
87
|
-
// points.push(new GLatLng(35.225884,-80.847399)); // (65 of 1167.0) 2007-03-10T13:08:08Z 336 00:05:36 0.672244199864507 Gooby 1.0.0
|
88
|
-
points.push(new GLatLng(35.225968,-80.847519)); // (66 of 1167.0) 2007-03-10T13:08:12Z 340 00:05:40 0.681163176947826 Gooby 1.0.0
|
89
|
-
// points.push(new GLatLng(35.226038,-80.847627)); // (67 of 1167.0) 2007-03-10T13:08:16Z 344 00:05:44 0.688944125826293 Gooby 1.0.0
|
90
|
-
// points.push(new GLatLng(35.226183,-80.847816)); // (68 of 1167.0) 2007-03-10T13:08:23Z 351 00:05:51 0.703577831836225 Gooby 1.0.0
|
91
|
-
// points.push(new GLatLng(35.226291,-80.847945)); // (69 of 1167.0) 2007-03-10T13:08:28Z 356 00:05:56 0.714002894951914 Gooby 1.0.0
|
92
|
-
// points.push(new GLatLng(35.226402,-80.848082)); // (70 of 1167.0) 2007-03-10T13:08:33Z 361 00:06:01 0.72489302876355 Gooby 1.0.0
|
93
|
-
points.push(new GLatLng(35.226503,-80.848214)); // (71 of 1167.0) 2007-03-10T13:08:38Z 366 00:06:06 0.735100545402841 Gooby 1.0.0
|
94
|
-
// points.push(new GLatLng(35.226601,-80.848342)); // (72 of 1167.0) 2007-03-10T13:08:43Z 371 00:06:11 0.745001616816388 Gooby 1.0.0
|
95
|
-
// points.push(new GLatLng(35.226692,-80.848464)); // (73 of 1167.0) 2007-03-10T13:08:48Z 376 00:06:16 0.75432570356997 Gooby 1.0.0
|
96
|
-
// points.push(new GLatLng(35.226813,-80.848588)); // (74 of 1167.0) 2007-03-10T13:08:53Z 381 00:06:21 0.765228291099185 Gooby 1.0.0
|
97
|
-
// points.push(new GLatLng(35.226911,-80.848702)); // (75 of 1167.0) 2007-03-10T13:08:58Z 386 00:06:26 0.774568410484038 Gooby 1.0.0
|
98
|
-
points.push(new GLatLng(35.227027,-80.848839)); // (76 of 1167.0) 2007-03-10T13:09:04Z 392 00:06:32 0.785704660453738 Gooby 1.0.0
|
99
|
-
// points.push(new GLatLng(35.227049,-80.848899)); // (77 of 1167.0) 2007-03-10T13:09:06Z 394 00:06:34 0.789416639626379 Gooby 1.0.0
|
100
|
-
// points.push(new GLatLng(35.226994,-80.849028)); // (78 of 1167.0) 2007-03-10T13:09:10Z 398 00:06:38 0.797629220104368 Gooby 1.0.0
|
101
|
-
// points.push(new GLatLng(35.226865,-80.849238)); // (79 of 1167.0) 2007-03-10T13:09:17Z 405 00:06:45 0.812458377574951 Gooby 1.0.0
|
102
|
-
// points.push(new GLatLng(35.226769,-80.849363)); // (80 of 1167.0) 2007-03-10T13:09:22Z 410 00:06:50 0.82214126963425 Gooby 1.0.0
|
103
|
-
points.push(new GLatLng(35.22667,-80.849527)); // (81 of 1167.0) 2007-03-10T13:09:28Z 416 00:06:56 0.833650279653704 Gooby 1.0.0
|
104
|
-
// points.push(new GLatLng(35.226584,-80.849664)); // (82 of 1167.0) 2007-03-10T13:09:33Z 421 00:07:01 0.843401564937097 Gooby 1.0.0
|
105
|
-
// points.push(new GLatLng(35.226461,-80.849823)); // (83 of 1167.0) 2007-03-10T13:09:39Z 427 00:07:07 0.855760478786854 Gooby 1.0.0
|
106
|
-
// points.push(new GLatLng(35.226362,-80.849998)); // (84 of 1167.0) 2007-03-10T13:09:45Z 433 00:07:13 0.867774483041395 Gooby 1.0.0
|
107
|
-
// points.push(new GLatLng(35.226239,-80.850156)); // (85 of 1167.0) 2007-03-10T13:09:51Z 439 00:07:19 0.880092506372605 Gooby 1.0.0
|
108
|
-
points.push(new GLatLng(35.226131,-80.850311)); // (86 of 1167.0) 2007-03-10T13:09:57Z 445 00:07:25 0.89159032482656 Gooby 1.0.0
|
109
|
-
// points.push(new GLatLng(35.226038,-80.850435)); // (87 of 1167.0) 2007-03-10T13:10:02Z 450 00:07:30 0.901091113656745 Gooby 1.0.0
|
110
|
-
// points.push(new GLatLng(35.225935,-80.850556)); // (88 of 1167.0) 2007-03-10T13:10:07Z 455 00:07:35 0.910953805268162 Gooby 1.0.0
|
111
|
-
// points.push(new GLatLng(35.225826,-80.850657)); // (89 of 1167.0) 2007-03-10T13:10:12Z 460 00:07:40 0.92039857859812 Gooby 1.0.0
|
112
|
-
// points.push(new GLatLng(35.225681,-80.850763)); // (90 of 1167.0) 2007-03-10T13:10:18Z 466 00:07:46 0.932067020328517 Gooby 1.0.0
|
113
|
-
points.push(new GLatLng(35.225532,-80.850847)); // (91 of 1167.0) 2007-03-10T13:10:24Z 472 00:07:52 0.943400551840631 Gooby 1.0.0
|
114
|
-
// points.push(new GLatLng(35.225349,-80.850935)); // (92 of 1167.0) 2007-03-10T13:10:31Z 479 00:07:59 0.956984528942878 Gooby 1.0.0
|
115
|
-
// points.push(new GLatLng(35.225199,-80.851023)); // (93 of 1167.0) 2007-03-10T13:10:37Z 485 00:08:05 0.968476898910752 Gooby 1.0.0
|
116
|
-
// points.push(new GLatLng(35.225052,-80.85115)); // (94 of 1167.0) 2007-03-10T13:10:43Z 491 00:08:11 0.9809079572153 Gooby 1.0.0
|
117
|
-
// points.push(new GLatLng(35.224912,-80.851288)); // (95 of 1167.0) 2007-03-10T13:10:49Z 497 00:08:17 0.993326553583621 Gooby 1.0.0
|
118
|
-
points.push(new GLatLng(35.224748,-80.851433)); // (96 of 1167.0) 2007-03-10T13:10:56Z 504 00:08:24 1.00730366247046 1.0 00:08:24 Gooby 1.0.0
|
119
|
-
// points.push(new GLatLng(35.224649,-80.85155)); // (97 of 1167.0) 2007-03-10T13:11:01Z 509 00:08:29 1.01681085819923 Gooby 1.0.0
|
120
|
-
// points.push(new GLatLng(35.224556,-80.851722)); // (98 of 1167.0) 2007-03-10T13:11:07Z 515 00:08:35 1.02845213239164 Gooby 1.0.0
|
121
|
-
// points.push(new GLatLng(35.224448,-80.851928)); // (99 of 1167.0) 2007-03-10T13:11:14Z 522 00:08:42 1.04226711086967 Gooby 1.0.0
|
122
|
-
// points.push(new GLatLng(35.224384,-80.852162)); // (100 of 1167.0) 2007-03-10T13:11:21Z 529 00:08:49 1.05619459215353 Gooby 1.0.0
|
123
|
-
points.push(new GLatLng(35.224333,-80.852402)); // (101 of 1167.0) 2007-03-10T13:11:28Z 536 00:08:56 1.07019098076402 Gooby 1.0.0
|
124
|
-
// points.push(new GLatLng(35.224304,-80.852639)); // (102 of 1167.0) 2007-03-10T13:11:35Z 543 00:09:03 1.08371643031073 Gooby 1.0.0
|
125
|
-
// points.push(new GLatLng(35.224277,-80.85284)); // (103 of 1167.0) 2007-03-10T13:11:41Z 549 00:09:09 1.09521318953906 Gooby 1.0.0
|
126
|
-
// points.push(new GLatLng(35.224245,-80.853098)); // (104 of 1167.0) 2007-03-10T13:11:48Z 556 00:09:16 1.10994134308667 Gooby 1.0.0
|
127
|
-
// points.push(new GLatLng(35.224171,-80.853269)); // (105 of 1167.0) 2007-03-10T13:11:54Z 562 00:09:22 1.12086306245242 Gooby 1.0.0
|
128
|
-
points.push(new GLatLng(35.224125,-80.85336)); // (106 of 1167.0) 2007-03-10T13:11:58Z 566 00:09:26 1.1269028469626 Gooby 1.0.0
|
129
|
-
// points.push(new GLatLng(35.223835,-80.85386)); // (107 of 1167.0) 2007-03-10T13:12:15Z 583 00:09:43 1.16151221352726 Gooby 1.0.0
|
130
|
-
// points.push(new GLatLng(35.223892,-80.854064)); // (108 of 1167.0) 2007-03-10T13:12:21Z 589 00:09:49 1.1736807497138 Gooby 1.0.0
|
131
|
-
// points.push(new GLatLng(35.223959,-80.854136)); // (109 of 1167.0) 2007-03-10T13:12:24Z 592 00:09:52 1.17984032629678 Gooby 1.0.0
|
132
|
-
// points.push(new GLatLng(35.223876,-80.853079)); // (110 of 1167.0) 2007-03-10T13:12:52Z 620 00:10:20 1.2397722719818 Gooby 1.0.0
|
133
|
-
points.push(new GLatLng(35.223893,-80.853112)); // (111 of 1167.0) 2007-03-10T13:12:53Z 621 00:10:21 1.24197305666821 Gooby 1.0.0
|
134
|
-
// points.push(new GLatLng(35.223869,-80.853237)); // (112 of 1167.0) 2007-03-10T13:12:59Z 627 00:10:27 1.24922008752789 Gooby 1.0.0
|
135
|
-
// points.push(new GLatLng(35.223958,-80.853367)); // (113 of 1167.0) 2007-03-10T13:13:04Z 632 00:10:32 1.25879347910654 Gooby 1.0.0
|
136
|
-
// points.push(new GLatLng(35.224138,-80.853538)); // (114 of 1167.0) 2007-03-10T13:13:09Z 637 00:10:37 1.27453544338265 Gooby 1.0.0
|
137
|
-
// points.push(new GLatLng(35.224279,-80.853713)); // (115 of 1167.0) 2007-03-10T13:13:14Z 642 00:10:42 1.2884082295769 Gooby 1.0.0
|
138
|
-
points.push(new GLatLng(35.224683,-80.85417)); // (116 of 1167.0) 2007-03-10T13:13:20Z 648 00:10:48 1.32641312445965 Gooby 1.0.0
|
139
|
-
// points.push(new GLatLng(35.224829,-80.854359)); // (117 of 1167.0) 2007-03-10T13:13:25Z 653 00:10:53 1.34109418944145 Gooby 1.0.0
|
140
|
-
// points.push(new GLatLng(35.225002,-80.854684)); // (118 of 1167.0) 2007-03-10T13:13:30Z 658 00:10:58 1.36298750936487 Gooby 1.0.0
|
141
|
-
// points.push(new GLatLng(35.225129,-80.854954)); // (119 of 1167.0) 2007-03-10T13:13:34Z 662 00:11:02 1.38057163859646 Gooby 1.0.0
|
142
|
-
// points.push(new GLatLng(35.225378,-80.855367)); // (120 of 1167.0) 2007-03-10T13:13:39Z 667 00:11:07 1.40954193185176 Gooby 1.0.0
|
143
|
-
points.push(new GLatLng(35.225546,-80.855632)); // (121 of 1167.0) 2007-03-10T13:13:43Z 671 00:11:11 1.42847370567167 Gooby 1.0.0
|
144
|
-
// points.push(new GLatLng(35.225781,-80.85586)); // (122 of 1167.0) 2007-03-10T13:13:47Z 675 00:11:15 1.44919082059274 Gooby 1.0.0
|
145
|
-
// points.push(new GLatLng(35.225939,-80.855895)); // (123 of 1167.0) 2007-03-10T13:13:50Z 678 00:11:18 1.46028418268484 Gooby 1.0.0
|
146
|
-
// points.push(new GLatLng(35.226126,-80.85593)); // (124 of 1167.0) 2007-03-10T13:13:55Z 683 00:11:23 1.47335407914067 Gooby 1.0.0
|
147
|
-
// points.push(new GLatLng(35.226266,-80.856017)); // (125 of 1167.0) 2007-03-10T13:14:00Z 688 00:11:28 1.48420131429566 Gooby 1.0.0
|
148
|
-
points.push(new GLatLng(35.226351,-80.856132)); // (126 of 1167.0) 2007-03-10T13:14:04Z 692 00:11:32 1.49295431036738 Gooby 1.0.0
|
149
|
-
// points.push(new GLatLng(35.226482,-80.856345)); // (127 of 1167.0) 2007-03-10T13:14:11Z 699 00:11:39 1.50800194934433 Gooby 1.0.0
|
150
|
-
// points.push(new GLatLng(35.226655,-80.85649)); // (128 of 1167.0) 2007-03-10T13:14:18Z 706 00:11:46 1.52248736620687 Gooby 1.0.0
|
151
|
-
// points.push(new GLatLng(35.22677,-80.856573)); // (129 of 1167.0) 2007-03-10T13:14:23Z 711 00:11:51 1.53171090055836 Gooby 1.0.0
|
152
|
-
// points.push(new GLatLng(35.226959,-80.856661)); // (130 of 1167.0) 2007-03-10T13:14:30Z 718 00:11:58 1.54568141091927 Gooby 1.0.0
|
153
|
-
points.push(new GLatLng(35.22706,-80.856574)); // (131 of 1167.0) 2007-03-10T13:14:34Z 722 00:12:02 1.55421378554224 Gooby 1.0.0
|
154
|
-
// points.push(new GLatLng(35.227181,-80.856413)); // (132 of 1167.0) 2007-03-10T13:14:40Z 728 00:12:08 1.5665607282692 Gooby 1.0.0
|
155
|
-
// points.push(new GLatLng(35.227312,-80.856265)); // (133 of 1167.0) 2007-03-10T13:14:46Z 734 00:12:14 1.57887691539789 Gooby 1.0.0
|
156
|
-
// points.push(new GLatLng(35.227423,-80.856121)); // (134 of 1167.0) 2007-03-10T13:14:52Z 740 00:12:20 1.5900510632405 Gooby 1.0.0
|
157
|
-
// points.push(new GLatLng(35.2275,-80.856019)); // (135 of 1167.0) 2007-03-10T13:14:56Z 744 00:12:24 1.59788948619759 Gooby 1.0.0
|
158
|
-
points.push(new GLatLng(35.227625,-80.855877)); // (136 of 1167.0) 2007-03-10T13:15:02Z 750 00:12:30 1.60967114079343 Gooby 1.0.0
|
159
|
-
// points.push(new GLatLng(35.227755,-80.855739)); // (137 of 1167.0) 2007-03-10T13:15:08Z 756 00:12:36 1.62155937097749 Gooby 1.0.0
|
160
|
-
// points.push(new GLatLng(35.227915,-80.85558)); // (138 of 1167.0) 2007-03-10T13:15:15Z 763 00:12:43 1.63579730267348 Gooby 1.0.0
|
161
|
-
// points.push(new GLatLng(35.228012,-80.855439)); // (139 of 1167.0) 2007-03-10T13:15:20Z 768 00:12:48 1.64620081585238 Gooby 1.0.0
|
162
|
-
// points.push(new GLatLng(35.228142,-80.855292)); // (140 of 1167.0) 2007-03-10T13:15:26Z 774 00:12:54 1.65842782958234 Gooby 1.0.0
|
163
|
-
points.push(new GLatLng(35.22826,-80.855142)); // (141 of 1167.0) 2007-03-10T13:15:32Z 780 00:13:00 1.67018065409492 Gooby 1.0.0
|
164
|
-
// points.push(new GLatLng(35.228384,-80.854993)); // (142 of 1167.0) 2007-03-10T13:15:39Z 787 00:13:07 1.68218538694172 Gooby 1.0.0
|
165
|
-
// points.push(new GLatLng(35.228493,-80.854865)); // (143 of 1167.0) 2007-03-10T13:15:45Z 793 00:13:13 1.6926209582715 Gooby 1.0.0
|
166
|
-
// points.push(new GLatLng(35.228588,-80.854761)); // (144 of 1167.0) 2007-03-10T13:15:50Z 798 00:13:18 1.70142627065608 Gooby 1.0.0
|
167
|
-
// points.push(new GLatLng(35.228707,-80.85463)); // (145 of 1167.0) 2007-03-10T13:15:56Z 804 00:13:24 1.71248318886598 Gooby 1.0.0
|
168
|
-
points.push(new GLatLng(35.228798,-80.854518)); // (146 of 1167.0) 2007-03-10T13:16:01Z 809 00:13:29 1.72139865415681 Gooby 1.0.0
|
169
|
-
// points.push(new GLatLng(35.228894,-80.854418)); // (147 of 1167.0) 2007-03-10T13:16:06Z 814 00:13:34 1.73010761347699 Gooby 1.0.0
|
170
|
-
// points.push(new GLatLng(35.229004,-80.85429)); // (148 of 1167.0) 2007-03-10T13:16:12Z 820 00:13:40 1.74059307944942 Gooby 1.0.0
|
171
|
-
// points.push(new GLatLng(35.229139,-80.854158)); // (149 of 1167.0) 2007-03-10T13:16:19Z 827 00:13:47 1.75253008775664 Gooby 1.0.0
|
172
|
-
// points.push(new GLatLng(35.229233,-80.854056)); // (150 of 1167.0) 2007-03-10T13:16:24Z 832 00:13:52 1.76120862966273 Gooby 1.0.0
|
173
|
-
points.push(new GLatLng(35.229363,-80.853916)); // (151 of 1167.0) 2007-03-10T13:16:31Z 839 00:13:59 1.77317097052817 Gooby 1.0.0
|
174
|
-
// points.push(new GLatLng(35.229479,-80.853788)); // (152 of 1167.0) 2007-03-10T13:16:37Z 845 00:14:05 1.7839606346692 Gooby 1.0.0
|
175
|
-
// points.push(new GLatLng(35.229618,-80.853643)); // (153 of 1167.0) 2007-03-10T13:16:44Z 852 00:14:12 1.79657783444605 Gooby 1.0.0
|
176
|
-
// points.push(new GLatLng(35.22978,-80.853468)); // (154 of 1167.0) 2007-03-10T13:16:52Z 860 00:14:20 1.81150474862222 Gooby 1.0.0
|
177
|
-
// points.push(new GLatLng(35.229904,-80.853347)); // (155 of 1167.0) 2007-03-10T13:16:58Z 866 00:14:26 1.82246050351403 Gooby 1.0.0
|
178
|
-
points.push(new GLatLng(35.230041,-80.853197)); // (156 of 1167.0) 2007-03-10T13:17:05Z 873 00:14:33 1.83515906995404 Gooby 1.0.0
|
179
|
-
// points.push(new GLatLng(35.230174,-80.85308)); // (157 of 1167.0) 2007-03-10T13:17:11Z 879 00:14:39 1.84647447345761 Gooby 1.0.0
|
180
|
-
// points.push(new GLatLng(35.23028,-80.852965)); // (158 of 1167.0) 2007-03-10T13:17:16Z 884 00:14:44 1.85625995388493 Gooby 1.0.0
|
181
|
-
// points.push(new GLatLng(35.230366,-80.852841)); // (159 of 1167.0) 2007-03-10T13:17:21Z 889 00:14:49 1.86544019256395 Gooby 1.0.0
|
182
|
-
// points.push(new GLatLng(35.230476,-80.852741)); // (160 of 1167.0) 2007-03-10T13:17:26Z 894 00:14:54 1.87490630921004 Gooby 1.0.0
|
183
|
-
points.push(new GLatLng(35.230583,-80.852605)); // (161 of 1167.0) 2007-03-10T13:17:32Z 900 00:15:00 1.88556260826892 Gooby 1.0.0
|
184
|
-
// points.push(new GLatLng(35.230695,-80.852501)); // (162 of 1167.0) 2007-03-10T13:17:37Z 905 00:15:05 1.89527456360137 Gooby 1.0.0
|
185
|
-
// points.push(new GLatLng(35.230802,-80.852387)); // (163 of 1167.0) 2007-03-10T13:17:42Z 910 00:15:10 1.90507461184407 Gooby 1.0.0
|
186
|
-
// points.push(new GLatLng(35.230909,-80.852274)); // (164 of 1167.0) 2007-03-10T13:17:47Z 915 00:15:15 1.91483766521726 Gooby 1.0.0
|
187
|
-
// points.push(new GLatLng(35.231014,-80.852167)); // (165 of 1167.0) 2007-03-10T13:17:52Z 920 00:15:20 1.92427672655798 Gooby 1.0.0
|
188
|
-
points.push(new GLatLng(35.23116,-80.852004)); // (166 of 1167.0) 2007-03-10T13:17:59Z 927 00:15:27 1.93792854124719 Gooby 1.0.0
|
189
|
-
// points.push(new GLatLng(35.231288,-80.851882)); // (167 of 1167.0) 2007-03-10T13:18:05Z 933 00:15:33 1.94913642373366 Gooby 1.0.0
|
190
|
-
// points.push(new GLatLng(35.231381,-80.85177)); // (168 of 1167.0) 2007-03-10T13:18:10Z 938 00:15:38 1.95814970201931 Gooby 1.0.0
|
191
|
-
// points.push(new GLatLng(35.231487,-80.851657)); // (169 of 1167.0) 2007-03-10T13:18:15Z 943 00:15:43 1.96786058248535 Gooby 1.0.0
|
192
|
-
// points.push(new GLatLng(35.231607,-80.85157)); // (170 of 1167.0) 2007-03-10T13:18:20Z 948 00:15:48 1.97749610489806 Gooby 1.0.0
|
193
|
-
points.push(new GLatLng(35.231684,-80.851471)); // (171 of 1167.0) 2007-03-10T13:18:24Z 952 00:15:52 1.98521081261971 Gooby 1.0.0
|
194
|
-
// points.push(new GLatLng(35.231806,-80.85138)); // (172 of 1167.0) 2007-03-10T13:18:29Z 957 00:15:57 1.99508091011148 Gooby 1.0.0
|
195
|
-
points.push(new GLatLng(35.231963,-80.851289)); // (173 of 1167.0) 2007-03-10T13:18:35Z 963 00:16:03 2.0070821643338 2.0 00:07:39 Gooby 1.0.0
|
196
|
-
// points.push(new GLatLng(35.232049,-80.851147)); // (174 of 1167.0) 2007-03-10T13:18:40Z 968 00:16:08 2.0170581574085 Gooby 1.0.0
|
197
|
-
// points.push(new GLatLng(35.232072,-80.851006)); // (175 of 1167.0) 2007-03-10T13:18:44Z 972 00:16:12 2.02517227798192 Gooby 1.0.0
|
198
|
-
// points.push(new GLatLng(35.231979,-80.85084)); // (176 of 1167.0) 2007-03-10T13:18:49Z 977 00:16:17 2.03653187525566 Gooby 1.0.0
|
199
|
-
// points.push(new GLatLng(35.231873,-80.850711)); // (177 of 1167.0) 2007-03-10T13:18:54Z 982 00:16:22 2.04685817759583 Gooby 1.0.0
|
200
|
-
points.push(new GLatLng(35.231729,-80.850525)); // (178 of 1167.0) 2007-03-10T13:19:01Z 989 00:16:29 2.06132051624372 Gooby 1.0.0
|
201
|
-
// points.push(new GLatLng(35.231596,-80.850358)); // (179 of 1167.0) 2007-03-10T13:19:08Z 996 00:16:36 2.07448326056066 Gooby 1.0.0
|
202
|
-
// points.push(new GLatLng(35.231484,-80.850213)); // (180 of 1167.0) 2007-03-10T13:19:14Z 1002 00:16:42 2.08574564978803 Gooby 1.0.0
|
203
|
-
// points.push(new GLatLng(35.231374,-80.850074)); // (181 of 1167.0) 2007-03-10T13:19:20Z 1008 00:16:48 2.09666768773379 Gooby 1.0.0
|
204
|
-
// points.push(new GLatLng(35.231248,-80.84992)); // (182 of 1167.0) 2007-03-10T13:19:27Z 1015 00:16:55 2.10896860965956 Gooby 1.0.0
|
205
|
-
points.push(new GLatLng(35.231108,-80.849755)); // (183 of 1167.0) 2007-03-10T13:19:34Z 1022 00:17:02 2.12239490979696 Gooby 1.0.0
|
206
|
-
// points.push(new GLatLng(35.230958,-80.84957)); // (184 of 1167.0) 2007-03-10T13:19:42Z 1030 00:17:10 2.13710568889117 Gooby 1.0.0
|
207
|
-
// points.push(new GLatLng(35.230881,-80.849487)); // (185 of 1167.0) 2007-03-10T13:19:47Z 1035 00:17:15 2.14419397982329 Gooby 1.0.0
|
208
|
-
// points.push(new GLatLng(35.230785,-80.849369)); // (186 of 1167.0) 2007-03-10T13:19:52Z 1040 00:17:20 2.1535927749418 Gooby 1.0.0
|
209
|
-
// points.push(new GLatLng(35.230656,-80.849229)); // (187 of 1167.0) 2007-03-10T13:19:58Z 1046 00:17:26 2.16550322832251 Gooby 1.0.0
|
210
|
-
points.push(new GLatLng(35.230551,-80.849118)); // (188 of 1167.0) 2007-03-10T13:20:03Z 1051 00:17:31 2.17508788036829 Gooby 1.0.0
|
211
|
-
// points.push(new GLatLng(35.230412,-80.849015)); // (189 of 1167.0) 2007-03-10T13:20:09Z 1057 00:17:37 2.18631344458346 Gooby 1.0.0
|
212
|
-
// points.push(new GLatLng(35.230246,-80.848932)); // (190 of 1167.0) 2007-03-10T13:20:16Z 1064 00:17:44 2.19870188455473 Gooby 1.0.0
|
213
|
-
// points.push(new GLatLng(35.230091,-80.848884)); // (191 of 1167.0) 2007-03-10T13:20:22Z 1070 00:17:50 2.20974809815154 Gooby 1.0.0
|
214
|
-
// points.push(new GLatLng(35.229933,-80.848873)); // (192 of 1167.0) 2007-03-10T13:20:28Z 1076 00:17:56 2.22068207614717 Gooby 1.0.0
|
215
|
-
points.push(new GLatLng(35.22977,-80.848878)); // (193 of 1167.0) 2007-03-10T13:20:34Z 1082 00:18:02 2.23194724556309 Gooby 1.0.0
|
216
|
-
// points.push(new GLatLng(35.229578,-80.848884)); // (194 of 1167.0) 2007-03-10T13:20:41Z 1089 00:18:09 2.24521674842423 Gooby 1.0.0
|
217
|
-
// points.push(new GLatLng(35.229326,-80.848895)); // (195 of 1167.0) 2007-03-10T13:20:50Z 1098 00:18:18 2.26263846218805 Gooby 1.0.0
|
218
|
-
// points.push(new GLatLng(35.229151,-80.848875)); // (196 of 1167.0) 2007-03-10T13:20:56Z 1104 00:18:24 2.27478180943187 Gooby 1.0.0
|
219
|
-
// points.push(new GLatLng(35.228988,-80.848833)); // (197 of 1167.0) 2007-03-10T13:21:02Z 1110 00:18:30 2.28629021478009 Gooby 1.0.0
|
220
|
-
points.push(new GLatLng(35.22884,-80.84877)); // (198 of 1167.0) 2007-03-10T13:21:08Z 1116 00:18:36 2.29711593685965 Gooby 1.0.0
|
221
|
-
// points.push(new GLatLng(35.228702,-80.848676)); // (199 of 1167.0) 2007-03-10T13:21:14Z 1122 00:18:42 2.30802681897019 Gooby 1.0.0
|
222
|
-
// points.push(new GLatLng(35.228554,-80.848522)); // (200 of 1167.0) 2007-03-10T13:21:21Z 1129 00:18:49 2.32144663866965 Gooby 1.0.0
|
223
|
-
// points.push(new GLatLng(35.228438,-80.848395)); // (201 of 1167.0) 2007-03-10T13:21:27Z 1135 00:18:55 2.33219850599982 Gooby 1.0.0
|
224
|
-
// points.push(new GLatLng(35.228318,-80.848275)); // (202 of 1167.0) 2007-03-10T13:21:33Z 1141 00:19:01 2.34290399600715 Gooby 1.0.0
|
225
|
-
points.push(new GLatLng(35.228194,-80.848147)); // (203 of 1167.0) 2007-03-10T13:21:39Z 1147 00:19:07 2.35411032613382 Gooby 1.0.0
|
226
|
-
// points.push(new GLatLng(35.22805,-80.847995)); // (204 of 1167.0) 2007-03-10T13:21:46Z 1154 00:19:14 2.367246874329 Gooby 1.0.0
|
227
|
-
// points.push(new GLatLng(35.227956,-80.847884)); // (205 of 1167.0) 2007-03-10T13:21:51Z 1159 00:19:19 2.37627037689424 Gooby 1.0.0
|
228
|
-
// points.push(new GLatLng(35.227817,-80.847724)); // (206 of 1167.0) 2007-03-10T13:21:58Z 1166 00:19:26 2.38945240419751 Gooby 1.0.0
|
229
|
-
// points.push(new GLatLng(35.227656,-80.847549)); // (207 of 1167.0) 2007-03-10T13:22:06Z 1174 00:19:34 2.4043279475565 Gooby 1.0.0
|
230
|
-
points.push(new GLatLng(35.227539,-80.84741)); // (208 of 1167.0) 2007-03-10T13:22:12Z 1180 00:19:40 2.41559219031914 Gooby 1.0.0
|
231
|
-
// points.push(new GLatLng(35.227443,-80.847298)); // (209 of 1167.0) 2007-03-10T13:22:17Z 1185 00:19:45 2.42475440786942 Gooby 1.0.0
|
232
|
-
// points.push(new GLatLng(35.227325,-80.847169)); // (210 of 1167.0) 2007-03-10T13:22:23Z 1191 00:19:51 2.43568456646819 Gooby 1.0.0
|
233
|
-
// points.push(new GLatLng(35.227229,-80.847048)); // (211 of 1167.0) 2007-03-10T13:22:28Z 1196 00:19:56 2.44520438031047 Gooby 1.0.0
|
234
|
-
// points.push(new GLatLng(35.22707,-80.846878)); // (212 of 1167.0) 2007-03-10T13:22:36Z 1204 00:20:04 2.45978961936344 Gooby 1.0.0
|
235
|
-
points.push(new GLatLng(35.226995,-80.846794)); // (213 of 1167.0) 2007-03-10T13:22:40Z 1208 00:20:08 2.46681256766793 Gooby 1.0.0
|
236
|
-
// points.push(new GLatLng(35.226867,-80.846648)); // (214 of 1167.0) 2007-03-10T13:22:47Z 1215 00:20:15 2.4788996236087 Gooby 1.0.0
|
237
|
-
// points.push(new GLatLng(35.226746,-80.846495)); // (215 of 1167.0) 2007-03-10T13:22:54Z 1222 00:20:22 2.49091826088506 Gooby 1.0.0
|
238
|
-
// points.push(new GLatLng(35.226645,-80.846366)); // (216 of 1167.0) 2007-03-10T13:23:00Z 1228 00:20:28 2.50100266074294 Gooby 1.0.0
|
239
|
-
// points.push(new GLatLng(35.22657,-80.846281)); // (217 of 1167.0) 2007-03-10T13:23:04Z 1232 00:20:32 2.50806390172375 Gooby 1.0.0
|
240
|
-
points.push(new GLatLng(35.226466,-80.846163)); // (218 of 1167.0) 2007-03-10T13:23:10Z 1238 00:20:38 2.51786075400897 Gooby 1.0.0
|
241
|
-
// points.push(new GLatLng(35.226388,-80.846024)); // (219 of 1167.0) 2007-03-10T13:23:16Z 1244 00:20:44 2.5273783745984 Gooby 1.0.0
|
242
|
-
// points.push(new GLatLng(35.22631,-80.845912)); // (220 of 1167.0) 2007-03-10T13:23:21Z 1249 00:20:49 2.53568489803836 Gooby 1.0.0
|
243
|
-
// points.push(new GLatLng(35.226165,-80.845763)); // (221 of 1167.0) 2007-03-10T13:23:28Z 1256 00:20:56 2.54876450798291 Gooby 1.0.0
|
244
|
-
// points.push(new GLatLng(35.226035,-80.84563)); // (222 of 1167.0) 2007-03-10T13:23:34Z 1262 00:21:02 2.56046986771673 Gooby 1.0.0
|
245
|
-
points.push(new GLatLng(35.225963,-80.845527)); // (223 of 1167.0) 2007-03-10T13:23:38Z 1266 00:21:06 2.56812094462808 Gooby 1.0.0
|
246
|
-
// points.push(new GLatLng(35.225906,-80.845417)); // (224 of 1167.0) 2007-03-10T13:23:43Z 1271 00:21:11 2.57547284457834 Gooby 1.0.0
|
247
|
-
// points.push(new GLatLng(35.225819,-80.8453)); // (225 of 1167.0) 2007-03-10T13:23:48Z 1276 00:21:16 2.58440195908151 Gooby 1.0.0
|
248
|
-
// points.push(new GLatLng(35.225661,-80.845174)); // (226 of 1167.0) 2007-03-10T13:23:54Z 1282 00:21:22 2.59743012519522 Gooby 1.0.0
|
249
|
-
// points.push(new GLatLng(35.225571,-80.84504)); // (227 of 1167.0) 2007-03-10T13:23:59Z 1287 00:21:27 2.60722093782551 Gooby 1.0.0
|
250
|
-
points.push(new GLatLng(35.225435,-80.844926)); // (228 of 1167.0) 2007-03-10T13:24:04Z 1292 00:21:32 2.6186088329906 Gooby 1.0.0
|
251
|
-
// points.push(new GLatLng(35.22532,-80.844801)); // (229 of 1167.0) 2007-03-10T13:24:09Z 1297 00:21:37 2.62923423112873 Gooby 1.0.0
|
252
|
-
// points.push(new GLatLng(35.225256,-80.844678)); // (230 of 1167.0) 2007-03-10T13:24:13Z 1301 00:21:41 2.63746479823861 Gooby 1.0.0
|
253
|
-
// points.push(new GLatLng(35.225166,-80.84453)); // (231 of 1167.0) 2007-03-10T13:24:18Z 1306 00:21:46 2.64787834019126 Gooby 1.0.0
|
254
|
-
// points.push(new GLatLng(35.225003,-80.844383)); // (232 of 1167.0) 2007-03-10T13:24:24Z 1312 00:21:52 2.66186627387218 Gooby 1.0.0
|
255
|
-
points.push(new GLatLng(35.224983,-80.844354)); // (233 of 1167.0) 2007-03-10T13:24:31Z 1319 00:21:59 2.66400938604673 Gooby 1.0.0
|
256
|
-
// points.push(new GLatLng(35.224711,-80.844223)); // (234 of 1167.0) 2007-03-10T13:24:36Z 1324 00:22:04 2.68420404696626 Gooby 1.0.0
|
257
|
-
// points.push(new GLatLng(35.224628,-80.844069)); // (235 of 1167.0) 2007-03-10T13:24:41Z 1329 00:22:09 2.69461692063449 Gooby 1.0.0
|
258
|
-
// points.push(new GLatLng(35.224495,-80.843943)); // (236 of 1167.0) 2007-03-10T13:24:46Z 1334 00:22:14 2.70623605571278 Gooby 1.0.0
|
259
|
-
// points.push(new GLatLng(35.224379,-80.843801)); // (237 of 1167.0) 2007-03-10T13:24:51Z 1339 00:22:19 2.71757004772852 Gooby 1.0.0
|
260
|
-
points.push(new GLatLng(35.224307,-80.843597)); // (238 of 1167.0) 2007-03-10T13:24:56Z 1344 00:22:24 2.73011229016759 Gooby 1.0.0
|
261
|
-
// points.push(new GLatLng(35.224211,-80.843411)); // (239 of 1167.0) 2007-03-10T13:25:01Z 1349 00:22:29 2.7425296256438 Gooby 1.0.0
|
262
|
-
// points.push(new GLatLng(35.224138,-80.843306)); // (240 of 1167.0) 2007-03-10T13:25:05Z 1353 00:22:33 2.75031146883282 Gooby 1.0.0
|
263
|
-
// points.push(new GLatLng(35.224003,-80.843152)); // (241 of 1167.0) 2007-03-10T13:25:11Z 1359 00:22:39 2.7630606257371 Gooby 1.0.0
|
264
|
-
// points.push(new GLatLng(35.223887,-80.843035)); // (242 of 1167.0) 2007-03-10T13:25:17Z 1365 00:22:45 2.77344505756293 Gooby 1.0.0
|
265
|
-
points.push(new GLatLng(35.22378,-80.842965)); // (243 of 1167.0) 2007-03-10T13:25:22Z 1370 00:22:50 2.78182705660011 Gooby 1.0.0
|
266
|
-
// points.push(new GLatLng(35.223634,-80.842923)); // (244 of 1167.0) 2007-03-10T13:25:27Z 1375 00:22:55 2.79218884664281 Gooby 1.0.0
|
267
|
-
// points.push(new GLatLng(35.223554,-80.84285)); // (245 of 1167.0) 2007-03-10T13:25:32Z 1380 00:23:00 2.79908278491333 Gooby 1.0.0
|
268
|
-
// points.push(new GLatLng(35.223457,-80.842749)); // (246 of 1167.0) 2007-03-10T13:25:37Z 1385 00:23:05 2.80788098157335 Gooby 1.0.0
|
269
|
-
// points.push(new GLatLng(35.223361,-80.842666)); // (247 of 1167.0) 2007-03-10T13:25:42Z 1390 00:23:10 2.81600110339901 Gooby 1.0.0
|
270
|
-
points.push(new GLatLng(35.223256,-80.842502)); // (248 of 1167.0) 2007-03-10T13:25:47Z 1395 00:23:15 2.82776132697838 Gooby 1.0.0
|
271
|
-
// points.push(new GLatLng(35.223155,-80.842324)); // (249 of 1167.0) 2007-03-10T13:25:52Z 1400 00:23:20 2.83999317751253 Gooby 1.0.0
|
272
|
-
// points.push(new GLatLng(35.223063,-80.842151)); // (250 of 1167.0) 2007-03-10T13:25:57Z 1405 00:23:25 2.85164401234649 Gooby 1.0.0
|
273
|
-
// points.push(new GLatLng(35.222956,-80.842092)); // (251 of 1167.0) 2007-03-10T13:26:03Z 1411 00:23:31 2.85975212722582 Gooby 1.0.0
|
274
|
-
// points.push(new GLatLng(35.222859,-80.841999)); // (252 of 1167.0) 2007-03-10T13:26:08Z 1416 00:23:36 2.86826470062972 Gooby 1.0.0
|
275
|
-
points.push(new GLatLng(35.222749,-80.841853)); // (253 of 1167.0) 2007-03-10T13:26:14Z 1422 00:23:42 2.87947444566419 Gooby 1.0.0
|
276
|
-
// points.push(new GLatLng(35.222658,-80.841735)); // (254 of 1167.0) 2007-03-10T13:26:19Z 1427 00:23:47 2.8886334346406 Gooby 1.0.0
|
277
|
-
// points.push(new GLatLng(35.222564,-80.841621)); // (255 of 1167.0) 2007-03-10T13:26:24Z 1432 00:23:52 2.89777550247333 Gooby 1.0.0
|
278
|
-
// points.push(new GLatLng(35.22248,-80.841522)); // (256 of 1167.0) 2007-03-10T13:26:28Z 1436 00:23:56 2.90583152443009 Gooby 1.0.0
|
279
|
-
// points.push(new GLatLng(35.222362,-80.841404)); // (257 of 1167.0) 2007-03-10T13:26:33Z 1441 00:24:01 2.91635871915188 Gooby 1.0.0
|
280
|
-
points.push(new GLatLng(35.222225,-80.841325)); // (258 of 1167.0) 2007-03-10T13:26:37Z 1445 00:24:05 2.92682192825307 Gooby 1.0.0
|
281
|
-
// points.push(new GLatLng(35.222183,-80.841237)); // (259 of 1167.0) 2007-03-10T13:26:41Z 1449 00:24:09 2.93257431657976 Gooby 1.0.0
|
282
|
-
// points.push(new GLatLng(35.222088,-80.841133)); // (260 of 1167.0) 2007-03-10T13:26:46Z 1454 00:24:14 2.94137943138298 Gooby 1.0.0
|
283
|
-
// points.push(new GLatLng(35.221991,-80.841038)); // (261 of 1167.0) 2007-03-10T13:26:51Z 1459 00:24:19 2.94996242679724 Gooby 1.0.0
|
284
|
-
// points.push(new GLatLng(35.221893,-80.840936)); // (262 of 1167.0) 2007-03-10T13:26:56Z 1464 00:24:24 2.9588499435459 Gooby 1.0.0
|
285
|
-
points.push(new GLatLng(35.221773,-80.840811)); // (263 of 1167.0) 2007-03-10T13:27:02Z 1470 00:24:30 2.96973656219475 Gooby 1.0.0
|
286
|
-
// points.push(new GLatLng(35.221625,-80.840632)); // (264 of 1167.0) 2007-03-10T13:27:09Z 1477 00:24:37 2.98411105936146 Gooby 1.0.0
|
287
|
-
// points.push(new GLatLng(35.22152,-80.840493)); // (265 of 1167.0) 2007-03-10T13:27:14Z 1482 00:24:42 2.99479637916276 Gooby 1.0.0
|
288
|
-
points.push(new GLatLng(35.221418,-80.840393)); // (266 of 1167.0) 2007-03-10T13:27:19Z 1487 00:24:47 3.00382508587169 3.0 00:08:44 Gooby 1.0.0
|
289
|
-
// points.push(new GLatLng(35.221279,-80.840264)); // (267 of 1167.0) 2007-03-10T13:27:25Z 1493 00:24:53 3.0158765375156 Gooby 1.0.0
|
290
|
-
// points.push(new GLatLng(35.221156,-80.840129)); // (268 of 1167.0) 2007-03-10T13:27:31Z 1499 00:24:59 3.02729022186747 Gooby 1.0.0
|
291
|
-
// points.push(new GLatLng(35.221068,-80.840031)); // (269 of 1167.0) 2007-03-10T13:27:36Z 1504 00:25:04 3.03550957840311 Gooby 1.0.0
|
292
|
-
// points.push(new GLatLng(35.220969,-80.839948)); // (270 of 1167.0) 2007-03-10T13:27:41Z 1509 00:25:09 3.04379974916503 Gooby 1.0.0
|
293
|
-
points.push(new GLatLng(35.220911,-80.839847)); // (271 of 1167.0) 2007-03-10T13:27:46Z 1514 00:25:14 3.05076748592844 Gooby 1.0.0
|
294
|
-
// points.push(new GLatLng(35.220839,-80.839753)); // (272 of 1167.0) 2007-03-10T13:27:50Z 1518 00:25:18 3.05803991897808 Gooby 1.0.0
|
295
|
-
// points.push(new GLatLng(35.220726,-80.839594)); // (273 of 1167.0) 2007-03-10T13:27:55Z 1523 00:25:23 3.06993458646267 Gooby 1.0.0
|
296
|
-
// points.push(new GLatLng(35.220571,-80.839416)); // (274 of 1167.0) 2007-03-10T13:28:02Z 1530 00:25:30 3.08461849523432 Gooby 1.0.0
|
297
|
-
// points.push(new GLatLng(35.220448,-80.839283)); // (275 of 1167.0) 2007-03-10T13:28:08Z 1536 00:25:36 3.09595724469241 Gooby 1.0.0
|
298
|
-
points.push(new GLatLng(35.220345,-80.839157)); // (276 of 1167.0) 2007-03-10T13:28:13Z 1541 00:25:41 3.10601798174557 Gooby 1.0.0
|
299
|
-
// points.push(new GLatLng(35.22027,-80.839049)); // (277 of 1167.0) 2007-03-10T13:28:17Z 1545 00:25:45 3.11401852796114 Gooby 1.0.0
|
300
|
-
// points.push(new GLatLng(35.220121,-80.83894)); // (278 of 1167.0) 2007-03-10T13:28:23Z 1551 00:25:51 3.12601108120774 Gooby 1.0.0
|
301
|
-
// points.push(new GLatLng(35.219987,-80.838844)); // (279 of 1167.0) 2007-03-10T13:28:28Z 1556 00:25:56 3.1367380010488 Gooby 1.0.0
|
302
|
-
// points.push(new GLatLng(35.219951,-80.838822)); // (280 of 1167.0) 2007-03-10T13:28:31Z 1559 00:25:59 3.13951729463408 Gooby 1.0.0
|
303
|
-
points.push(new GLatLng(35.219909,-80.838689)); // (281 of 1167.0) 2007-03-10T13:28:36Z 1564 00:26:04 3.14756553842053 Gooby 1.0.0
|
304
|
-
// points.push(new GLatLng(35.219827,-80.838575)); // (282 of 1167.0) 2007-03-10T13:28:40Z 1568 00:26:08 3.15613839300159 Gooby 1.0.0
|
305
|
-
// points.push(new GLatLng(35.219694,-80.838431)); // (283 of 1167.0) 2007-03-10T13:28:46Z 1574 00:26:14 3.16840603334279 Gooby 1.0.0
|
306
|
-
// points.push(new GLatLng(35.219557,-80.83826)); // (284 of 1167.0) 2007-03-10T13:28:52Z 1580 00:26:20 3.1819245352146 Gooby 1.0.0
|
307
|
-
// points.push(new GLatLng(35.219433,-80.838104)); // (285 of 1167.0) 2007-03-10T13:28:58Z 1586 00:26:26 3.19420974813836 Gooby 1.0.0
|
308
|
-
points.push(new GLatLng(35.219327,-80.837972)); // (286 of 1167.0) 2007-03-10T13:29:03Z 1591 00:26:31 3.2046569828652 Gooby 1.0.0
|
309
|
-
// points.push(new GLatLng(35.21922,-80.83786)); // (287 of 1167.0) 2007-03-10T13:29:08Z 1596 00:26:36 3.21438397385572 Gooby 1.0.0
|
310
|
-
// points.push(new GLatLng(35.21912,-80.837766)); // (288 of 1167.0) 2007-03-10T13:29:12Z 1600 00:26:40 3.22309493059785 Gooby 1.0.0
|
311
|
-
// points.push(new GLatLng(35.218975,-80.837603)); // (289 of 1167.0) 2007-03-10T13:29:18Z 1606 00:26:46 3.23669657034632 Gooby 1.0.0
|
312
|
-
// points.push(new GLatLng(35.218832,-80.837447)); // (290 of 1167.0) 2007-03-10T13:29:24Z 1612 00:26:52 3.24993075799657 Gooby 1.0.0
|
313
|
-
points.push(new GLatLng(35.218759,-80.83734)); // (291 of 1167.0) 2007-03-10T13:29:29Z 1617 00:26:57 3.2577993083969 Gooby 1.0.0
|
314
|
-
// points.push(new GLatLng(35.218661,-80.83725)); // (292 of 1167.0) 2007-03-10T13:29:34Z 1622 00:27:02 3.26626392325915 Gooby 1.0.0
|
315
|
-
// points.push(new GLatLng(35.218564,-80.837147)); // (293 of 1167.0) 2007-03-10T13:29:39Z 1627 00:27:07 3.27513596214932 Gooby 1.0.0
|
316
|
-
// points.push(new GLatLng(35.218464,-80.837038)); // (294 of 1167.0) 2007-03-10T13:29:44Z 1632 00:27:12 3.28438699408117 Gooby 1.0.0
|
317
|
-
// points.push(new GLatLng(35.218356,-80.83691)); // (295 of 1167.0) 2007-03-10T13:29:49Z 1637 00:27:17 3.29477326861828 Gooby 1.0.0
|
318
|
-
points.push(new GLatLng(35.218222,-80.836755)); // (296 of 1167.0) 2007-03-10T13:29:55Z 1643 00:27:23 3.30751123091231 Gooby 1.0.0
|
319
|
-
// points.push(new GLatLng(35.218127,-80.836619)); // (297 of 1167.0) 2007-03-10T13:30:00Z 1648 00:27:28 3.31761114550589 Gooby 1.0.0
|
320
|
-
// points.push(new GLatLng(35.218003,-80.836439)); // (298 of 1167.0) 2007-03-10T13:30:06Z 1654 00:27:34 3.33090095466491 Gooby 1.0.0
|
321
|
-
// points.push(new GLatLng(35.217874,-80.836312)); // (299 of 1167.0) 2007-03-10T13:30:12Z 1660 00:27:40 3.34233839280804 Gooby 1.0.0
|
322
|
-
// points.push(new GLatLng(35.217764,-80.83621)); // (300 of 1167.0) 2007-03-10T13:30:17Z 1665 00:27:45 3.35187281544252 Gooby 1.0.0
|
323
|
-
points.push(new GLatLng(35.217641,-80.836084)); // (301 of 1167.0) 2007-03-10T13:30:23Z 1671 00:27:51 3.36295425222184 Gooby 1.0.0
|
324
|
-
// points.push(new GLatLng(35.217512,-80.835929)); // (302 of 1167.0) 2007-03-10T13:30:29Z 1677 00:27:57 3.37544339468056 Gooby 1.0.0
|
325
|
-
// points.push(new GLatLng(35.217389,-80.835793)); // (303 of 1167.0) 2007-03-10T13:30:35Z 1683 00:28:03 3.38689542605213 Gooby 1.0.0
|
326
|
-
// points.push(new GLatLng(35.217287,-80.835684)); // (304 of 1167.0) 2007-03-10T13:30:40Z 1688 00:28:08 3.39625043484447 Gooby 1.0.0
|
327
|
-
// points.push(new GLatLng(35.217176,-80.835565)); // (305 of 1167.0) 2007-03-10T13:30:45Z 1693 00:28:13 3.40644498998577 Gooby 1.0.0
|
328
|
-
points.push(new GLatLng(35.217105,-80.835452)); // (306 of 1167.0) 2007-03-10T13:30:51Z 1699 00:28:19 3.41449172047712 Gooby 1.0.0
|
329
|
-
// points.push(new GLatLng(35.216981,-80.835307)); // (307 of 1167.0) 2007-03-10T13:30:57Z 1705 00:28:25 3.42634007880275 Gooby 1.0.0
|
330
|
-
// points.push(new GLatLng(35.216833,-80.835171)); // (308 of 1167.0) 2007-03-10T13:31:03Z 1711 00:28:31 3.43912602674111 Gooby 1.0.0
|
331
|
-
// points.push(new GLatLng(35.216721,-80.835049)); // (309 of 1167.0) 2007-03-10T13:31:08Z 1716 00:28:36 3.44948462618968 Gooby 1.0.0
|
332
|
-
// points.push(new GLatLng(35.216593,-80.834893)); // (310 of 1167.0) 2007-03-10T13:31:14Z 1722 00:28:42 3.46196457141651 Gooby 1.0.0
|
333
|
-
points.push(new GLatLng(35.216482,-80.834732)); // (311 of 1167.0) 2007-03-10T13:31:20Z 1728 00:28:48 3.47385572807827 Gooby 1.0.0
|
334
|
-
// points.push(new GLatLng(35.216387,-80.834612)); // (312 of 1167.0) 2007-03-10T13:31:25Z 1733 00:28:53 3.48328759845458 Gooby 1.0.0
|
335
|
-
// points.push(new GLatLng(35.216286,-80.834478)); // (313 of 1167.0) 2007-03-10T13:31:30Z 1738 00:28:58 3.4935781216512 Gooby 1.0.0
|
336
|
-
// points.push(new GLatLng(35.21618,-80.834323)); // (314 of 1167.0) 2007-03-10T13:31:36Z 1744 00:29:04 3.50498768974963 Gooby 1.0.0
|
337
|
-
// points.push(new GLatLng(35.21607,-80.834169)); // (315 of 1167.0) 2007-03-10T13:31:42Z 1750 00:29:10 3.51653412754274 Gooby 1.0.0
|
338
|
-
points.push(new GLatLng(35.215937,-80.833984)); // (316 of 1167.0) 2007-03-10T13:31:50Z 1758 00:29:18 3.53044385963974 Gooby 1.0.0
|
339
|
-
// points.push(new GLatLng(35.215845,-80.833829)); // (317 of 1167.0) 2007-03-10T13:31:56Z 1764 00:29:24 3.54125800477936 Gooby 1.0.0
|
340
|
-
// points.push(new GLatLng(35.215734,-80.833647)); // (318 of 1167.0) 2007-03-10T13:32:03Z 1771 00:29:31 3.5540779243481 Gooby 1.0.0
|
341
|
-
// points.push(new GLatLng(35.215637,-80.833466)); // (319 of 1167.0) 2007-03-10T13:32:10Z 1778 00:29:38 3.56629668264022 Gooby 1.0.0
|
342
|
-
// points.push(new GLatLng(35.215556,-80.83329)); // (320 of 1167.0) 2007-03-10T13:32:16Z 1784 00:29:44 3.57769892928569 Gooby 1.0.0
|
343
|
-
points.push(new GLatLng(35.215445,-80.833094)); // (321 of 1167.0) 2007-03-10T13:32:24Z 1792 00:29:52 3.59116042835808 Gooby 1.0.0
|
344
|
-
// points.push(new GLatLng(35.215349,-80.832907)); // (322 of 1167.0) 2007-03-10T13:32:31Z 1799 00:29:59 3.60362670457122 Gooby 1.0.0
|
345
|
-
// points.push(new GLatLng(35.21526,-80.832746)); // (323 of 1167.0) 2007-03-10T13:32:37Z 1805 00:30:05 3.6145992790836 Gooby 1.0.0
|
346
|
-
// points.push(new GLatLng(35.215147,-80.832565)); // (324 of 1167.0) 2007-03-10T13:32:44Z 1812 00:30:12 3.62745741092958 Gooby 1.0.0
|
347
|
-
// points.push(new GLatLng(35.215033,-80.832393)); // (325 of 1167.0) 2007-03-10T13:32:51Z 1819 00:30:19 3.63995908416392 Gooby 1.0.0
|
348
|
-
points.push(new GLatLng(35.214928,-80.832257)); // (326 of 1167.0) 2007-03-10T13:32:57Z 1825 00:30:25 3.65052125633971 Gooby 1.0.0
|
349
|
-
// points.push(new GLatLng(35.214841,-80.832126)); // (327 of 1167.0) 2007-03-10T13:33:02Z 1830 00:30:30 3.66005056844445 Gooby 1.0.0
|
350
|
-
// points.push(new GLatLng(35.214736,-80.831967)); // (328 of 1167.0) 2007-03-10T13:33:08Z 1836 00:30:36 3.67159067620109 Gooby 1.0.0
|
351
|
-
// points.push(new GLatLng(35.214614,-80.831802)); // (329 of 1167.0) 2007-03-10T13:33:15Z 1843 00:30:43 3.68415232315989 Gooby 1.0.0
|
352
|
-
// points.push(new GLatLng(35.214516,-80.831651)); // (330 of 1167.0) 2007-03-10T13:33:21Z 1849 00:30:49 3.69503766328629 Gooby 1.0.0
|
353
|
-
points.push(new GLatLng(35.214435,-80.831538)); // (331 of 1167.0) 2007-03-10T13:33:26Z 1854 00:30:54 3.70352301145152 Gooby 1.0.0
|
354
|
-
// points.push(new GLatLng(35.214317,-80.831368)); // (332 of 1167.0) 2007-03-10T13:33:33Z 1861 00:31:01 3.71611453815194 Gooby 1.0.0
|
355
|
-
// points.push(new GLatLng(35.214193,-80.831223)); // (333 of 1167.0) 2007-03-10T13:33:40Z 1868 00:31:08 3.72796304331103 Gooby 1.0.0
|
356
|
-
// points.push(new GLatLng(35.214054,-80.831089)); // (334 of 1167.0) 2007-03-10T13:33:47Z 1875 00:31:15 3.74018749560518 Gooby 1.0.0
|
357
|
-
// points.push(new GLatLng(35.213892,-80.830948)); // (335 of 1167.0) 2007-03-10T13:33:54Z 1882 00:31:22 3.75392138785438 Gooby 1.0.0
|
358
|
-
points.push(new GLatLng(35.213784,-80.830854)); // (336 of 1167.0) 2007-03-10T13:33:59Z 1887 00:31:27 3.76307714711845 Gooby 1.0.0
|
359
|
-
// points.push(new GLatLng(35.213648,-80.830741)); // (337 of 1167.0) 2007-03-10T13:34:05Z 1893 00:31:33 3.77443383412956 Gooby 1.0.0
|
360
|
-
// points.push(new GLatLng(35.21346,-80.830554)); // (338 of 1167.0) 2007-03-10T13:34:14Z 1902 00:31:42 3.79117103587994 Gooby 1.0.0
|
361
|
-
// points.push(new GLatLng(35.213295,-80.830382)); // (339 of 1167.0) 2007-03-10T13:34:23Z 1911 00:31:51 3.8061448464239 Gooby 1.0.0
|
362
|
-
// points.push(new GLatLng(35.213147,-80.830198)); // (340 of 1167.0) 2007-03-10T13:34:31Z 1919 00:31:59 3.82071982367593 Gooby 1.0.0
|
363
|
-
points.push(new GLatLng(35.213021,-80.830034)); // (341 of 1167.0) 2007-03-10T13:34:38Z 1926 00:32:06 3.83342742911996 Gooby 1.0.0
|
364
|
-
// points.push(new GLatLng(35.212922,-80.829891)); // (342 of 1167.0) 2007-03-10T13:34:44Z 1932 00:32:12 3.84400770441035 Gooby 1.0.0
|
365
|
-
// points.push(new GLatLng(35.212782,-80.829699)); // (343 of 1167.0) 2007-03-10T13:34:52Z 1940 00:32:20 3.85853413852326 Gooby 1.0.0
|
366
|
-
// points.push(new GLatLng(35.212655,-80.82952)); // (344 of 1167.0) 2007-03-10T13:34:59Z 1947 00:32:27 3.87191617979193 Gooby 1.0.0
|
367
|
-
// points.push(new GLatLng(35.212544,-80.829381)); // (345 of 1167.0) 2007-03-10T13:35:05Z 1953 00:32:33 3.88288764436982 Gooby 1.0.0
|
368
|
-
points.push(new GLatLng(35.212441,-80.829288)); // (346 of 1167.0) 2007-03-10T13:35:10Z 1958 00:32:38 3.89173041710922 Gooby 1.0.0
|
369
|
-
// points.push(new GLatLng(35.212309,-80.82915)); // (347 of 1167.0) 2007-03-10T13:35:16Z 1964 00:32:44 3.90372427590458 Gooby 1.0.0
|
370
|
-
// points.push(new GLatLng(35.212186,-80.829024)); // (348 of 1167.0) 2007-03-10T13:35:21Z 1969 00:32:49 3.91480602667234 Gooby 1.0.0
|
371
|
-
// points.push(new GLatLng(35.212031,-80.828913)); // (349 of 1167.0) 2007-03-10T13:35:28Z 1976 00:32:56 3.92721327039871 Gooby 1.0.0
|
372
|
-
// points.push(new GLatLng(35.211894,-80.828824)); // (350 of 1167.0) 2007-03-10T13:35:34Z 1982 00:33:02 3.93792915598051 Gooby 1.0.0
|
373
|
-
points.push(new GLatLng(35.211738,-80.828725)); // (351 of 1167.0) 2007-03-10T13:35:41Z 1989 00:33:09 3.95006992413674 Gooby 1.0.0
|
374
|
-
// points.push(new GLatLng(35.211602,-80.828621)); // (352 of 1167.0) 2007-03-10T13:35:47Z 1995 00:33:15 3.96114916274787 Gooby 1.0.0
|
375
|
-
// points.push(new GLatLng(35.211429,-80.828454)); // (353 of 1167.0) 2007-03-10T13:35:55Z 2003 00:33:23 3.97637175208121 Gooby 1.0.0
|
376
|
-
// points.push(new GLatLng(35.211306,-80.828323)); // (354 of 1167.0) 2007-03-10T13:36:01Z 2009 00:33:29 3.98763661262117 Gooby 1.0.0
|
377
|
-
// points.push(new GLatLng(35.211184,-80.828169)); // (355 of 1167.0) 2007-03-10T13:36:07Z 2015 00:33:35 3.99974495215106 Gooby 1.0.0
|
378
|
-
points.push(new GLatLng(35.211071,-80.828026)); // (356 of 1167.0) 2007-03-10T13:36:13Z 2021 00:33:41 4.01097485498824 4.0 00:08:54 Gooby 1.0.0
|
379
|
-
// points.push(new GLatLng(35.210981,-80.827897)); // (357 of 1167.0) 2007-03-10T13:36:18Z 2026 00:33:46 4.02055024535798 Gooby 1.0.0
|
380
|
-
// points.push(new GLatLng(35.210901,-80.827751)); // (358 of 1167.0) 2007-03-10T13:36:23Z 2031 00:33:51 4.03047343190071 Gooby 1.0.0
|
381
|
-
// points.push(new GLatLng(35.21081,-80.827617)); // (359 of 1167.0) 2007-03-10T13:36:29Z 2037 00:33:57 4.04030927467077 Gooby 1.0.0
|
382
|
-
// points.push(new GLatLng(35.21072,-80.827458)); // (360 of 1167.0) 2007-03-10T13:36:35Z 2043 00:34:03 4.0512281263981 Gooby 1.0.0
|
383
|
-
points.push(new GLatLng(35.210639,-80.827306)); // (361 of 1167.0) 2007-03-10T13:36:41Z 2049 00:34:09 4.06147222161334 Gooby 1.0.0
|
384
|
-
// points.push(new GLatLng(35.210545,-80.827117)); // (362 of 1167.0) 2007-03-10T13:36:48Z 2056 00:34:16 4.07396219984822 Gooby 1.0.0
|
385
|
-
// points.push(new GLatLng(35.210465,-80.826958)); // (363 of 1167.0) 2007-03-10T13:36:54Z 2062 00:34:22 4.08450293734976 Gooby 1.0.0
|
386
|
-
// points.push(new GLatLng(35.210382,-80.826797)); // (364 of 1167.0) 2007-03-10T13:37:00Z 2068 00:34:28 4.09524897798638 Gooby 1.0.0
|
387
|
-
// points.push(new GLatLng(35.210264,-80.826605)); // (365 of 1167.0) 2007-03-10T13:37:08Z 2076 00:34:36 4.10881116513407 Gooby 1.0.0
|
388
|
-
points.push(new GLatLng(35.210142,-80.826432)); // (366 of 1167.0) 2007-03-10T13:37:15Z 2083 00:34:43 4.12171130763963 Gooby 1.0.0
|
389
|
-
// points.push(new GLatLng(35.210025,-80.826285)); // (367 of 1167.0) 2007-03-10T13:37:21Z 2089 00:34:49 4.13329595337206 Gooby 1.0.0
|
390
|
-
// points.push(new GLatLng(35.209879,-80.826141)); // (368 of 1167.0) 2007-03-10T13:37:28Z 2096 00:34:56 4.14625086865609 Gooby 1.0.0
|
391
|
-
// points.push(new GLatLng(35.209739,-80.825985)); // (369 of 1167.0) 2007-03-10T13:37:35Z 2103 00:35:03 4.15933167565459 Gooby 1.0.0
|
392
|
-
// points.push(new GLatLng(35.209603,-80.825855)); // (370 of 1167.0) 2007-03-10T13:37:41Z 2109 00:35:09 4.17125410066378 Gooby 1.0.0
|
393
|
-
points.push(new GLatLng(35.20941,-80.825683)); // (371 of 1167.0) 2007-03-10T13:37:49Z 2117 00:35:17 4.18774902040673 Gooby 1.0.0
|
394
|
-
// points.push(new GLatLng(35.209282,-80.825547)); // (372 of 1167.0) 2007-03-10T13:37:55Z 2123 00:35:23 4.1994600266489 Gooby 1.0.0
|
395
|
-
// points.push(new GLatLng(35.209152,-80.825421)); // (373 of 1167.0) 2007-03-10T13:38:01Z 2129 00:35:29 4.21091722199822 Gooby 1.0.0
|
396
|
-
// points.push(new GLatLng(35.209011,-80.825274)); // (374 of 1167.0) 2007-03-10T13:38:08Z 2136 00:35:36 4.22371405067034 Gooby 1.0.0
|
397
|
-
// points.push(new GLatLng(35.208897,-80.825128)); // (375 of 1167.0) 2007-03-10T13:38:14Z 2142 00:35:42 4.23511416100632 Gooby 1.0.0
|
398
|
-
points.push(new GLatLng(35.208768,-80.825005)); // (376 of 1167.0) 2007-03-10T13:38:20Z 2148 00:35:48 4.24641217737302 Gooby 1.0.0
|
399
|
-
// points.push(new GLatLng(35.208614,-80.824865)); // (377 of 1167.0) 2007-03-10T13:38:27Z 2155 00:35:55 4.25966606912609 Gooby 1.0.0
|
400
|
-
// points.push(new GLatLng(35.208461,-80.82472)); // (378 of 1167.0) 2007-03-10T13:38:34Z 2162 00:36:02 4.27303549386189 Gooby 1.0.0
|
401
|
-
// points.push(new GLatLng(35.208317,-80.824596)); // (379 of 1167.0) 2007-03-10T13:38:40Z 2168 00:36:08 4.28520016922262 Gooby 1.0.0
|
402
|
-
// points.push(new GLatLng(35.208125,-80.824446)); // (380 of 1167.0) 2007-03-10T13:38:48Z 2176 00:36:16 4.30093771221953 Gooby 1.0.0
|
403
|
-
points.push(new GLatLng(35.20791,-80.824329)); // (381 of 1167.0) 2007-03-10T13:38:57Z 2185 00:36:25 4.3171942308099 Gooby 1.0.0
|
404
|
-
// points.push(new GLatLng(35.207758,-80.824244)); // (382 of 1167.0) 2007-03-10T13:39:03Z 2191 00:36:31 4.32874006589191 Gooby 1.0.0
|
405
|
-
// points.push(new GLatLng(35.207619,-80.824192)); // (383 of 1167.0) 2007-03-10T13:39:08Z 2196 00:36:36 4.338782109752 Gooby 1.0.0
|
406
|
-
// points.push(new GLatLng(35.207396,-80.82414)); // (384 of 1167.0) 2007-03-10T13:39:16Z 2204 00:36:44 4.35446627834033 Gooby 1.0.0
|
407
|
-
// points.push(new GLatLng(35.207198,-80.82412)); // (385 of 1167.0) 2007-03-10T13:39:23Z 2211 00:36:51 4.36819269470692 Gooby 1.0.0
|
408
|
-
points.push(new GLatLng(35.207034,-80.824117)); // (386 of 1167.0) 2007-03-10T13:39:29Z 2217 00:36:57 4.37952469107179 Gooby 1.0.0
|
409
|
-
// points.push(new GLatLng(35.206861,-80.82411)); // (387 of 1167.0) 2007-03-10T13:39:35Z 2223 00:37:03 4.39148383193354 Gooby 1.0.0
|
410
|
-
// points.push(new GLatLng(35.206657,-80.824117)); // (388 of 1167.0) 2007-03-10T13:39:42Z 2230 00:37:10 4.40558362874693 Gooby 1.0.0
|
411
|
-
// points.push(new GLatLng(35.206516,-80.824119)); // (389 of 1167.0) 2007-03-10T13:39:47Z 2235 00:37:15 4.41532563218977 Gooby 1.0.0
|
412
|
-
// points.push(new GLatLng(35.206342,-80.824116)); // (390 of 1167.0) 2007-03-10T13:39:53Z 2241 00:37:21 4.42734846660002 Gooby 1.0.0
|
413
|
-
points.push(new GLatLng(35.206182,-80.824134)); // (391 of 1167.0) 2007-03-10T13:39:59Z 2247 00:37:27 4.43844935386795 Gooby 1.0.0
|
414
|
-
// points.push(new GLatLng(35.205994,-80.824145)); // (392 of 1167.0) 2007-03-10T13:40:06Z 2254 00:37:34 4.45145305969366 Gooby 1.0.0
|
415
|
-
// points.push(new GLatLng(35.205831,-80.82416)); // (393 of 1167.0) 2007-03-10T13:40:12Z 2260 00:37:40 4.46274630145863 Gooby 1.0.0
|
416
|
-
// points.push(new GLatLng(35.205675,-80.824152)); // (394 of 1167.0) 2007-03-10T13:40:18Z 2266 00:37:46 4.47353386925108 Gooby 1.0.0
|
417
|
-
// points.push(new GLatLng(35.205483,-80.824203)); // (395 of 1167.0) 2007-03-10T13:40:25Z 2273 00:37:53 4.48710798111926 Gooby 1.0.0
|
418
|
-
points.push(new GLatLng(35.205281,-80.824253)); // (396 of 1167.0) 2007-03-10T13:40:33Z 2281 00:38:01 4.50134664594196 Gooby 1.0.0
|
419
|
-
// points.push(new GLatLng(35.205137,-80.824257)); // (397 of 1167.0) 2007-03-10T13:40:39Z 2287 00:38:07 4.51129819400792 Gooby 1.0.0
|
420
|
-
// points.push(new GLatLng(35.204978,-80.824298)); // (398 of 1167.0) 2007-03-10T13:40:45Z 2293 00:38:13 4.52252468806896 Gooby 1.0.0
|
421
|
-
// points.push(new GLatLng(35.204803,-80.824346)); // (399 of 1167.0) 2007-03-10T13:40:52Z 2300 00:38:20 4.53491523435659 Gooby 1.0.0
|
422
|
-
// points.push(new GLatLng(35.204624,-80.824392)); // (400 of 1167.0) 2007-03-10T13:40:59Z 2307 00:38:27 4.54755199889942 Gooby 1.0.0
|
423
|
-
points.push(new GLatLng(35.204467,-80.824421)); // (401 of 1167.0) 2007-03-10T13:41:05Z 2313 00:38:33 4.5585218776618 Gooby 1.0.0
|
424
|
-
// points.push(new GLatLng(35.204288,-80.824468)); // (402 of 1167.0) 2007-03-10T13:41:12Z 2320 00:38:40 4.57117047657417 Gooby 1.0.0
|
425
|
-
// points.push(new GLatLng(35.204102,-80.824515)); // (403 of 1167.0) 2007-03-10T13:41:19Z 2327 00:38:47 4.584292183603 Gooby 1.0.0
|
426
|
-
// points.push(new GLatLng(35.203928,-80.824552)); // (404 of 1167.0) 2007-03-10T13:41:26Z 2334 00:38:54 4.59649384394613 Gooby 1.0.0
|
427
|
-
// points.push(new GLatLng(35.203768,-80.824588)); // (405 of 1167.0) 2007-03-10T13:41:32Z 2340 00:39:00 4.60773350255951 Gooby 1.0.0
|
428
|
-
points.push(new GLatLng(35.203605,-80.824623)); // (406 of 1167.0) 2007-03-10T13:41:38Z 2346 00:39:06 4.61916713732589 Gooby 1.0.0
|
429
|
-
// points.push(new GLatLng(35.203438,-80.824667)); // (407 of 1167.0) 2007-03-10T13:41:44Z 2352 00:39:12 4.6309695944186 Gooby 1.0.0
|
430
|
-
// points.push(new GLatLng(35.203281,-80.824678)); // (408 of 1167.0) 2007-03-10T13:41:50Z 2358 00:39:18 4.64183445772456 Gooby 1.0.0
|
431
|
-
// points.push(new GLatLng(35.203066,-80.824729)); // (409 of 1167.0) 2007-03-10T13:41:58Z 2366 00:39:26 4.65696511115437 Gooby 1.0.0
|
432
|
-
// points.push(new GLatLng(35.202904,-80.824766)); // (410 of 1167.0) 2007-03-10T13:42:04Z 2372 00:39:32 4.66835086731719 Gooby 1.0.0
|
433
|
-
points.push(new GLatLng(35.202775,-80.824793)); // (411 of 1167.0) 2007-03-10T13:42:09Z 2377 00:39:37 4.67739305230173 Gooby 1.0.0
|
434
|
-
// points.push(new GLatLng(35.202614,-80.82483)); // (412 of 1167.0) 2007-03-10T13:42:15Z 2383 00:39:43 4.68871091554197 Gooby 1.0.0
|
435
|
-
// points.push(new GLatLng(35.202416,-80.824884)); // (413 of 1167.0) 2007-03-10T13:42:22Z 2390 00:39:50 4.70272618496359 Gooby 1.0.0
|
436
|
-
// points.push(new GLatLng(35.202218,-80.82492)); // (414 of 1167.0) 2007-03-10T13:42:29Z 2397 00:39:57 4.71655614121544 Gooby 1.0.0
|
437
|
-
// points.push(new GLatLng(35.202031,-80.824958)); // (415 of 1167.0) 2007-03-10T13:42:36Z 2404 00:40:04 4.72965316415154 Gooby 1.0.0
|
438
|
-
points.push(new GLatLng(35.201849,-80.825001)); // (416 of 1167.0) 2007-03-10T13:42:43Z 2411 00:40:11 4.74245977758004 Gooby 1.0.0
|
439
|
-
// points.push(new GLatLng(35.201644,-80.825025)); // (417 of 1167.0) 2007-03-10T13:42:51Z 2419 00:40:19 4.75668756381407 Gooby 1.0.0
|
440
|
-
// points.push(new GLatLng(35.201459,-80.825036)); // (418 of 1167.0) 2007-03-10T13:42:58Z 2426 00:40:26 4.7694843924862 Gooby 1.0.0
|
441
|
-
// points.push(new GLatLng(35.201275,-80.825084)); // (419 of 1167.0) 2007-03-10T13:43:05Z 2433 00:40:33 4.78248274567077 Gooby 1.0.0
|
442
|
-
// points.push(new GLatLng(35.201108,-80.825131)); // (420 of 1167.0) 2007-03-10T13:43:11Z 2439 00:40:39 4.79432184981761 Gooby 1.0.0
|
443
|
-
points.push(new GLatLng(35.200941,-80.825122)); // (421 of 1167.0) 2007-03-10T13:43:17Z 2445 00:40:45 4.80587099942141 Gooby 1.0.0
|
444
|
-
// points.push(new GLatLng(35.200803,-80.825142)); // (422 of 1167.0) 2007-03-10T13:43:22Z 2450 00:40:50 4.81547233620997 Gooby 1.0.0
|
445
|
-
// points.push(new GLatLng(35.200666,-80.825216)); // (423 of 1167.0) 2007-03-10T13:43:27Z 2455 00:40:55 4.82581849975537 Gooby 1.0.0
|
446
|
-
// points.push(new GLatLng(35.20048,-80.825244)); // (424 of 1167.0) 2007-03-10T13:43:34Z 2462 00:41:02 4.8387661612212 Gooby 1.0.0
|
447
|
-
// points.push(new GLatLng(35.20027,-80.82535)); // (425 of 1167.0) 2007-03-10T13:43:42Z 2470 00:41:10 4.85446064232406 Gooby 1.0.0
|
448
|
-
points.push(new GLatLng(35.200061,-80.825495)); // (426 of 1167.0) 2007-03-10T13:43:50Z 2478 00:41:18 4.87105944094584 Gooby 1.0.0
|
449
|
-
// points.push(new GLatLng(35.199906,-80.825547)); // (427 of 1167.0) 2007-03-10T13:43:56Z 2484 00:41:24 4.88216346219855 Gooby 1.0.0
|
450
|
-
// points.push(new GLatLng(35.199769,-80.82562)); // (428 of 1167.0) 2007-03-10T13:44:01Z 2489 00:41:29 4.89248723707195 Gooby 1.0.0
|
451
|
-
// points.push(new GLatLng(35.199633,-80.825674)); // (429 of 1167.0) 2007-03-10T13:44:06Z 2494 00:41:34 4.90236561551346 Gooby 1.0.0
|
452
|
-
// points.push(new GLatLng(35.199473,-80.825717)); // (430 of 1167.0) 2007-03-10T13:44:12Z 2500 00:41:40 4.9136834787537 Gooby 1.0.0
|
453
|
-
points.push(new GLatLng(35.199287,-80.825773)); // (431 of 1167.0) 2007-03-10T13:44:19Z 2507 00:41:47 4.92691740348439 Gooby 1.0.0
|
454
|
-
// points.push(new GLatLng(35.199152,-80.82585)); // (432 of 1167.0) 2007-03-10T13:44:24Z 2512 00:41:52 4.937207926681 Gooby 1.0.0
|
455
|
-
// points.push(new GLatLng(35.199016,-80.825924)); // (433 of 1167.0) 2007-03-10T13:44:29Z 2517 00:41:57 4.94749100841754 Gooby 1.0.0
|
456
|
-
// points.push(new GLatLng(35.198859,-80.825993)); // (434 of 1167.0) 2007-03-10T13:44:35Z 2523 00:42:03 4.95901633256885 Gooby 1.0.0
|
457
|
-
// points.push(new GLatLng(35.198705,-80.826053)); // (435 of 1167.0) 2007-03-10T13:44:41Z 2529 00:42:09 4.97018253720171 Gooby 1.0.0
|
458
|
-
points.push(new GLatLng(35.198543,-80.826129)); // (436 of 1167.0) 2007-03-10T13:44:47Z 2535 00:42:15 4.98216943142725 Gooby 1.0.0
|
459
|
-
// points.push(new GLatLng(35.198398,-80.826204)); // (437 of 1167.0) 2007-03-10T13:44:53Z 2541 00:42:21 4.99304565773089 Gooby 1.0.0
|
460
|
-
points.push(new GLatLng(35.198202,-80.826266)); // (438 of 1167.0) 2007-03-10T13:45:00Z 2548 00:42:28 5.00703234760874 5.0 00:08:47 Gooby 1.0.0
|
461
|
-
// points.push(new GLatLng(35.198041,-80.826331)); // (439 of 1167.0) 2007-03-10T13:45:06Z 2554 00:42:34 5.0187454334573 Gooby 1.0.0
|
462
|
-
// points.push(new GLatLng(35.197885,-80.826391)); // (440 of 1167.0) 2007-03-10T13:45:12Z 2560 00:42:40 5.03004329583609 Gooby 1.0.0
|
463
|
-
// points.push(new GLatLng(35.197731,-80.826469)); // (441 of 1167.0) 2007-03-10T13:45:18Z 2566 00:42:46 5.04155835082157 Gooby 1.0.0
|
464
|
-
// points.push(new GLatLng(35.197574,-80.826507)); // (442 of 1167.0) 2007-03-10T13:45:24Z 2572 00:42:52 5.05261558371615 Gooby 1.0.0
|
465
|
-
points.push(new GLatLng(35.197364,-80.82658)); // (443 of 1167.0) 2007-03-10T13:45:32Z 2580 00:43:00 5.06769844431758 Gooby 1.0.0
|
466
|
-
// points.push(new GLatLng(35.197231,-80.826646)); // (444 of 1167.0) 2007-03-10T13:45:37Z 2585 00:43:05 5.07761426463093 Gooby 1.0.0
|
467
|
-
// points.push(new GLatLng(35.197077,-80.826711)); // (445 of 1167.0) 2007-03-10T13:45:43Z 2591 00:43:11 5.08886923666465 Gooby 1.0.0
|
468
|
-
// points.push(new GLatLng(35.196926,-80.826796)); // (446 of 1167.0) 2007-03-10T13:45:49Z 2597 00:43:17 5.10035282307861 Gooby 1.0.0
|
469
|
-
// points.push(new GLatLng(35.196751,-80.826863)); // (447 of 1167.0) 2007-03-10T13:45:56Z 2604 00:43:24 5.1130214875827 Gooby 1.0.0
|
470
|
-
points.push(new GLatLng(35.196597,-80.826939)); // (448 of 1167.0) 2007-03-10T13:46:02Z 2610 00:43:30 5.12449385762987 Gooby 1.0.0
|
471
|
-
// points.push(new GLatLng(35.196385,-80.827033)); // (449 of 1167.0) 2007-03-10T13:46:10Z 2618 00:43:38 5.14007285066903 Gooby 1.0.0
|
472
|
-
// points.push(new GLatLng(35.1962,-80.827112)); // (450 of 1167.0) 2007-03-10T13:46:17Z 2625 00:43:45 5.15361038581077 Gooby 1.0.0
|
473
|
-
// points.push(new GLatLng(35.196044,-80.827197)); // (451 of 1167.0) 2007-03-10T13:46:23Z 2631 00:43:51 5.1654085673719 Gooby 1.0.0
|
474
|
-
// points.push(new GLatLng(35.19588,-80.827276)); // (452 of 1167.0) 2007-03-10T13:46:29Z 2637 00:43:57 5.17758567878878 Gooby 1.0.0
|
475
|
-
points.push(new GLatLng(35.195694,-80.827364)); // (453 of 1167.0) 2007-03-10T13:46:36Z 2644 00:44:04 5.19136345727915 Gooby 1.0.0
|
476
|
-
// points.push(new GLatLng(35.195517,-80.827453)); // (454 of 1167.0) 2007-03-10T13:46:43Z 2651 00:44:11 5.2045844925463 Gooby 1.0.0
|
477
|
-
// points.push(new GLatLng(35.195358,-80.827505)); // (455 of 1167.0) 2007-03-10T13:46:49Z 2657 00:44:17 5.2159554174273 Gooby 1.0.0
|
478
|
-
// points.push(new GLatLng(35.195186,-80.827575)); // (456 of 1167.0) 2007-03-10T13:46:56Z 2664 00:44:24 5.22847878097117 Gooby 1.0.0
|
479
|
-
// points.push(new GLatLng(35.195033,-80.827629)); // (457 of 1167.0) 2007-03-10T13:47:02Z 2670 00:44:30 5.23948017447483 Gooby 1.0.0
|
480
|
-
points.push(new GLatLng(35.194901,-80.827682)); // (458 of 1167.0) 2007-03-10T13:47:07Z 2675 00:44:35 5.24907824913939 Gooby 1.0.0
|
481
|
-
// points.push(new GLatLng(35.194746,-80.827741)); // (459 of 1167.0) 2007-03-10T13:47:13Z 2681 00:44:41 5.26029311458587 Gooby 1.0.0
|
482
|
-
// points.push(new GLatLng(35.19454,-80.827824)); // (460 of 1167.0) 2007-03-10T13:47:21Z 2689 00:44:49 5.27527726210977 Gooby 1.0.0
|
483
|
-
// points.push(new GLatLng(35.194354,-80.827894)); // (461 of 1167.0) 2007-03-10T13:47:28Z 2696 00:44:56 5.28872194965844 Gooby 1.0.0
|
484
|
-
// points.push(new GLatLng(35.194201,-80.827939)); // (462 of 1167.0) 2007-03-10T13:47:34Z 2702 00:45:02 5.29959369619819 Gooby 1.0.0
|
485
|
-
points.push(new GLatLng(35.193987,-80.828035)); // (463 of 1167.0) 2007-03-10T13:47:42Z 2710 00:45:10 5.31534107484962 Gooby 1.0.0
|
486
|
-
// points.push(new GLatLng(35.193842,-80.828129)); // (464 of 1167.0) 2007-03-10T13:47:48Z 2716 00:45:16 5.32667813641152 Gooby 1.0.0
|
487
|
-
// points.push(new GLatLng(35.193701,-80.828194)); // (465 of 1167.0) 2007-03-10T13:47:54Z 2722 00:45:22 5.33708816939235 Gooby 1.0.0
|
488
|
-
// points.push(new GLatLng(35.193539,-80.828259)); // (466 of 1167.0) 2007-03-10T13:48:00Z 2728 00:45:28 5.34886701800596 Gooby 1.0.0
|
489
|
-
// points.push(new GLatLng(35.193387,-80.828319)); // (467 of 1167.0) 2007-03-10T13:48:06Z 2734 00:45:34 5.35990141300099 Gooby 1.0.0
|
490
|
-
points.push(new GLatLng(35.193196,-80.828373)); // (468 of 1167.0) 2007-03-10T13:48:13Z 2741 00:45:41 5.37344511535088 Gooby 1.0.0
|
491
|
-
// points.push(new GLatLng(35.193118,-80.828207)); // (469 of 1167.0) 2007-03-10T13:48:18Z 2746 00:45:46 5.3842563643185 Gooby 1.0.0
|
492
|
-
// points.push(new GLatLng(35.193092,-80.828076)); // (470 of 1167.0) 2007-03-10T13:48:22Z 2750 00:45:50 5.39186800183885 Gooby 1.0.0
|
493
|
-
// points.push(new GLatLng(35.193059,-80.82785)); // (471 of 1167.0) 2007-03-10T13:48:29Z 2757 00:45:57 5.40483043531345 Gooby 1.0.0
|
494
|
-
// points.push(new GLatLng(35.193024,-80.827697)); // (472 of 1167.0) 2007-03-10T13:48:34Z 2762 00:46:02 5.41380095467765 Gooby 1.0.0
|
495
|
-
points.push(new GLatLng(35.192987,-80.827553)); // (473 of 1167.0) 2007-03-10T13:48:39Z 2767 00:46:07 5.42232374064059 Gooby 1.0.0
|
496
|
-
// points.push(new GLatLng(35.192951,-80.827395)); // (474 of 1167.0) 2007-03-10T13:48:44Z 2772 00:46:12 5.43158492222755 Gooby 1.0.0
|
497
|
-
// points.push(new GLatLng(35.19293,-80.827238)); // (475 of 1167.0) 2007-03-10T13:48:49Z 2777 00:46:17 5.44056707047836 Gooby 1.0.0
|
498
|
-
// points.push(new GLatLng(35.192906,-80.827061)); // (476 of 1167.0) 2007-03-10T13:48:54Z 2782 00:46:22 5.45069725633236 Gooby 1.0.0
|
499
|
-
// points.push(new GLatLng(35.192884,-80.826895)); // (477 of 1167.0) 2007-03-10T13:48:59Z 2787 00:46:27 5.46019218364347 Gooby 1.0.0
|
500
|
-
points.push(new GLatLng(35.192905,-80.826705)); // (478 of 1167.0) 2007-03-10T13:49:05Z 2793 00:46:33 5.47101758430855 Gooby 1.0.0
|
501
|
-
// points.push(new GLatLng(35.192933,-80.826562)); // (479 of 1167.0) 2007-03-10T13:49:10Z 2798 00:46:38 5.47931991782469 Gooby 1.0.0
|
502
|
-
// points.push(new GLatLng(35.193028,-80.826396)); // (480 of 1167.0) 2007-03-10T13:49:16Z 2804 00:46:44 5.49076222244528 Gooby 1.0.0
|
503
|
-
// points.push(new GLatLng(35.193101,-80.826254)); // (481 of 1167.0) 2007-03-10T13:49:21Z 2809 00:46:49 5.50023403476487 Gooby 1.0.0
|
504
|
-
// points.push(new GLatLng(35.193154,-80.826044)); // (482 of 1167.0) 2007-03-10T13:49:27Z 2815 00:46:55 5.51264338161592 Gooby 1.0.0
|
505
|
-
points.push(new GLatLng(35.193238,-80.825827)); // (483 of 1167.0) 2007-03-10T13:49:34Z 2822 00:47:02 5.5262004366257 Gooby 1.0.0
|
506
|
-
// points.push(new GLatLng(35.193284,-80.825651)); // (484 of 1167.0) 2007-03-10T13:49:39Z 2827 00:47:07 5.53663334020537 Gooby 1.0.0
|
507
|
-
// points.push(new GLatLng(35.193345,-80.825508)); // (485 of 1167.0) 2007-03-10T13:49:44Z 2832 00:47:12 5.54574070736968 Gooby 1.0.0
|
508
|
-
// points.push(new GLatLng(35.193403,-80.825341)); // (486 of 1167.0) 2007-03-10T13:49:49Z 2837 00:47:17 5.55598582150923 Gooby 1.0.0
|
509
|
-
// points.push(new GLatLng(35.193341,-80.825203)); // (487 of 1167.0) 2007-03-10T13:49:53Z 2841 00:47:21 5.56487744809245 Gooby 1.0.0
|
510
|
-
points.push(new GLatLng(35.193139,-80.825023)); // (488 of 1167.0) 2007-03-10T13:50:01Z 2849 00:47:29 5.58214187008084 Gooby 1.0.0
|
511
|
-
// points.push(new GLatLng(35.192979,-80.824893)); // (489 of 1167.0) 2007-03-10T13:50:07Z 2855 00:47:35 5.59541124183272 Gooby 1.0.0
|
512
|
-
// points.push(new GLatLng(35.192797,-80.824738)); // (490 of 1167.0) 2007-03-10T13:50:14Z 2862 00:47:42 5.61073123504094 Gooby 1.0.0
|
513
|
-
// points.push(new GLatLng(35.192623,-80.824614)); // (491 of 1167.0) 2007-03-10T13:50:21Z 2869 00:47:49 5.62464309323382 Gooby 1.0.0
|
514
|
-
// points.push(new GLatLng(35.192429,-80.824426)); // (492 of 1167.0) 2007-03-10T13:50:29Z 2877 00:47:57 5.64174074052312 Gooby 1.0.0
|
515
|
-
points.push(new GLatLng(35.192269,-80.824329)); // (493 of 1167.0) 2007-03-10T13:50:36Z 2884 00:48:04 5.65407753391766 Gooby 1.0.0
|
516
|
-
// points.push(new GLatLng(35.192135,-80.824205)); // (494 of 1167.0) 2007-03-10T13:50:42Z 2890 00:48:10 5.66568483421008 Gooby 1.0.0
|
517
|
-
// points.push(new GLatLng(35.191934,-80.82406)); // (495 of 1167.0) 2007-03-10T13:50:50Z 2898 00:48:18 5.6818056219683 Gooby 1.0.0
|
518
|
-
// points.push(new GLatLng(35.191753,-80.823938)); // (496 of 1167.0) 2007-03-10T13:50:57Z 2905 00:48:25 5.6960826012183 Gooby 1.0.0
|
519
|
-
// points.push(new GLatLng(35.191644,-80.823875)); // (497 of 1167.0) 2007-03-10T13:51:02Z 2910 00:48:30 5.70441129606437 Gooby 1.0.0
|
520
|
-
points.push(new GLatLng(35.191504,-80.823766)); // (498 of 1167.0) 2007-03-10T13:51:08Z 2916 00:48:36 5.71587577777535 Gooby 1.0.0
|
521
|
-
// points.push(new GLatLng(35.191362,-80.823672)); // (499 of 1167.0) 2007-03-10T13:51:14Z 2922 00:48:42 5.7270301349729 Gooby 1.0.0
|
522
|
-
// points.push(new GLatLng(35.191216,-80.823593)); // (500 of 1167.0) 2007-03-10T13:51:20Z 2928 00:48:48 5.73805932577103 Gooby 1.0.0
|
523
|
-
// points.push(new GLatLng(35.191067,-80.823556)); // (501 of 1167.0) 2007-03-10T13:51:26Z 2934 00:48:54 5.74856352394534 Gooby 1.0.0
|
524
|
-
// points.push(new GLatLng(35.190878,-80.823475)); // (502 of 1167.0) 2007-03-10T13:51:33Z 2941 00:49:01 5.76239926557969 Gooby 1.0.0
|
525
|
-
points.push(new GLatLng(35.190724,-80.823423)); // (503 of 1167.0) 2007-03-10T13:51:39Z 2947 00:49:07 5.77343697105882 Gooby 1.0.0
|
526
|
-
// points.push(new GLatLng(35.190579,-80.823359)); // (504 of 1167.0) 2007-03-10T13:51:45Z 2953 00:49:13 5.78408673772019 Gooby 1.0.0
|
527
|
-
// points.push(new GLatLng(35.190398,-80.82328)); // (505 of 1167.0) 2007-03-10T13:51:52Z 2960 00:49:20 5.79736358063366 Gooby 1.0.0
|
528
|
-
// points.push(new GLatLng(35.190233,-80.823211)); // (506 of 1167.0) 2007-03-10T13:51:58Z 2966 00:49:26 5.80941055629002 Gooby 1.0.0
|
529
|
-
// points.push(new GLatLng(35.190066,-80.823129)); // (507 of 1167.0) 2007-03-10T13:52:04Z 2972 00:49:32 5.82184273415672 Gooby 1.0.0
|
530
|
-
points.push(new GLatLng(35.189899,-80.823049)); // (508 of 1167.0) 2007-03-10T13:52:10Z 2978 00:49:38 5.83423342085271 Gooby 1.0.0
|
531
|
-
// points.push(new GLatLng(35.189683,-80.822966)); // (509 of 1167.0) 2007-03-10T13:52:18Z 2986 00:49:46 5.84987538163917 Gooby 1.0.0
|
532
|
-
// points.push(new GLatLng(35.189501,-80.82288)); // (510 of 1167.0) 2007-03-10T13:52:25Z 2993 00:49:53 5.86335470384798 Gooby 1.0.0
|
533
|
-
// points.push(new GLatLng(35.189354,-80.822804)); // (511 of 1167.0) 2007-03-10T13:52:31Z 2999 00:49:59 5.87438010823272 Gooby 1.0.0
|
534
|
-
// points.push(new GLatLng(35.189197,-80.822734)); // (512 of 1167.0) 2007-03-10T13:52:37Z 3005 00:50:05 5.88592503918909 Gooby 1.0.0
|
535
|
-
points.push(new GLatLng(35.189013,-80.822673)); // (513 of 1167.0) 2007-03-10T13:52:44Z 3012 00:50:12 5.89909610770938 Gooby 1.0.0
|
536
|
-
// points.push(new GLatLng(35.188879,-80.822629)); // (514 of 1167.0) 2007-03-10T13:52:49Z 3017 00:50:17 5.90868184877579 Gooby 1.0.0
|
537
|
-
// points.push(new GLatLng(35.188724,-80.822572)); // (515 of 1167.0) 2007-03-10T13:52:55Z 3023 00:50:23 5.91986393418569 Gooby 1.0.0
|
538
|
-
// points.push(new GLatLng(35.188572,-80.822503)); // (516 of 1167.0) 2007-03-10T13:53:01Z 3029 00:50:29 5.93106498467976 Gooby 1.0.0
|
539
|
-
// points.push(new GLatLng(35.188413,-80.822439)); // (517 of 1167.0) 2007-03-10T13:53:07Z 3035 00:50:35 5.94262948919929 Gooby 1.0.0
|
540
|
-
points.push(new GLatLng(35.188256,-80.82237)); // (518 of 1167.0) 2007-03-10T13:53:13Z 3041 00:50:41 5.95415511524638 Gooby 1.0.0
|
541
|
-
// points.push(new GLatLng(35.188096,-80.822293)); // (519 of 1167.0) 2007-03-10T13:53:19Z 3047 00:50:47 5.96603382939867 Gooby 1.0.0
|
542
|
-
// points.push(new GLatLng(35.187942,-80.822242)); // (520 of 1167.0) 2007-03-10T13:53:25Z 3053 00:50:53 5.97705639311979 Gooby 1.0.0
|
543
|
-
// points.push(new GLatLng(35.187785,-80.822182)); // (521 of 1167.0) 2007-03-10T13:53:31Z 3059 00:50:59 5.9884204309364 Gooby 1.0.0
|
544
|
-
// points.push(new GLatLng(35.18763,-80.822117)); // (522 of 1167.0) 2007-03-10T13:53:37Z 3065 00:51:05 5.99974075337885 Gooby 1.0.0
|
545
|
-
points.push(new GLatLng(35.18745,-80.822014)); // (523 of 1167.0) 2007-03-10T13:53:44Z 3072 00:51:12 6.01346957767746 6.0 00:08:44 Gooby 1.0.0
|
546
|
-
// points.push(new GLatLng(35.187293,-80.821948)); // (524 of 1167.0) 2007-03-10T13:53:50Z 3078 00:51:18 6.02493921776068 Gooby 1.0.0
|
547
|
-
// points.push(new GLatLng(35.187118,-80.821885)); // (525 of 1167.0) 2007-03-10T13:53:57Z 3085 00:51:25 6.03754262130823 Gooby 1.0.0
|
548
|
-
// points.push(new GLatLng(35.18696,-80.821812)); // (526 of 1167.0) 2007-03-10T13:54:03Z 3091 00:51:31 6.04921136123164 Gooby 1.0.0
|
549
|
-
// points.push(new GLatLng(35.186826,-80.821763)); // (527 of 1167.0) 2007-03-10T13:54:08Z 3096 00:51:36 6.05887410905501 Gooby 1.0.0
|
550
|
-
points.push(new GLatLng(35.186675,-80.82171)); // (528 of 1167.0) 2007-03-10T13:54:14Z 3102 00:51:42 6.06972743717195 Gooby 1.0.0
|
551
|
-
// points.push(new GLatLng(35.186497,-80.821609)); // (529 of 1167.0) 2007-03-10T13:54:21Z 3109 00:51:49 6.08328333718293 Gooby 1.0.0
|
552
|
-
// points.push(new GLatLng(35.186343,-80.821529)); // (530 of 1167.0) 2007-03-10T13:54:27Z 3115 00:51:55 6.09484242464954 Gooby 1.0.0
|
553
|
-
// points.push(new GLatLng(35.186128,-80.821458)); // (531 of 1167.0) 2007-03-10T13:54:35Z 3123 00:52:03 6.1102283681175 Gooby 1.0.0
|
554
|
-
// points.push(new GLatLng(35.185942,-80.821396)); // (532 of 1167.0) 2007-03-10T13:54:42Z 3130 00:52:10 6.12354733783212 Gooby 1.0.0
|
555
|
-
points.push(new GLatLng(35.185804,-80.821337)); // (533 of 1167.0) 2007-03-10T13:54:47Z 3135 00:52:15 6.13364673565183 Gooby 1.0.0
|
556
|
-
// points.push(new GLatLng(35.185594,-80.821263)); // (534 of 1167.0) 2007-03-10T13:54:55Z 3143 00:52:23 6.14874515991988 Gooby 1.0.0
|
557
|
-
// points.push(new GLatLng(35.185434,-80.821167)); // (535 of 1167.0) 2007-03-10T13:55:01Z 3149 00:52:29 6.16105696730663 Gooby 1.0.0
|
558
|
-
// points.push(new GLatLng(35.18526,-80.821073)); // (536 of 1167.0) 2007-03-10T13:55:07Z 3155 00:52:35 6.17419828231716 Gooby 1.0.0
|
559
|
-
// points.push(new GLatLng(35.185139,-80.82104)); // (537 of 1167.0) 2007-03-10T13:55:12Z 3160 00:52:40 6.18276321871327 Gooby 1.0.0
|
560
|
-
points.push(new GLatLng(35.184956,-80.82098)); // (538 of 1167.0) 2007-03-10T13:55:19Z 3167 00:52:47 6.19585253493824 Gooby 1.0.0
|
561
|
-
// points.push(new GLatLng(35.184791,-80.820927)); // (539 of 1167.0) 2007-03-10T13:55:25Z 3173 00:52:53 6.20763861867218 Gooby 1.0.0
|
562
|
-
// points.push(new GLatLng(35.184668,-80.8209)); // (540 of 1167.0) 2007-03-10T13:55:30Z 3178 00:52:58 6.21627234109303 Gooby 1.0.0
|
563
|
-
// points.push(new GLatLng(35.184511,-80.820813)); // (541 of 1167.0) 2007-03-10T13:55:36Z 3184 00:53:04 6.22818001884232 Gooby 1.0.0
|
564
|
-
// points.push(new GLatLng(35.184328,-80.820717)); // (542 of 1167.0) 2007-03-10T13:55:43Z 3191 00:53:11 6.24193656729855 Gooby 1.0.0
|
565
|
-
points.push(new GLatLng(35.184139,-80.820638)); // (543 of 1167.0) 2007-03-10T13:55:50Z 3198 00:53:18 6.2557355431602 Gooby 1.0.0
|
566
|
-
// points.push(new GLatLng(35.183923,-80.820531)); // (544 of 1167.0) 2007-03-10T13:55:58Z 3206 00:53:26 6.2718357051135 Gooby 1.0.0
|
567
|
-
// points.push(new GLatLng(35.183759,-80.820473)); // (545 of 1167.0) 2007-03-10T13:56:04Z 3212 00:53:32 6.28363019962758 Gooby 1.0.0
|
568
|
-
// points.push(new GLatLng(35.183616,-80.820448)); // (546 of 1167.0) 2007-03-10T13:56:09Z 3217 00:53:37 6.29361037726332 Gooby 1.0.0
|
569
|
-
// points.push(new GLatLng(35.183517,-80.820429)); // (547 of 1167.0) 2007-03-10T13:56:15Z 3223 00:53:43 6.30053377855698 Gooby 1.0.0
|
570
|
-
points.push(new GLatLng(35.18338,-80.820373)); // (548 of 1167.0) 2007-03-10T13:56:22Z 3230 00:53:50 6.31051325888773 Gooby 1.0.0
|
571
|
-
// points.push(new GLatLng(35.183224,-80.820301)); // (549 of 1167.0) 2007-03-10T13:56:28Z 3236 00:53:56 6.32203269448998 Gooby 1.0.0
|
572
|
-
// points.push(new GLatLng(35.18306,-80.820229)); // (550 of 1167.0) 2007-03-10T13:56:35Z 3243 00:54:03 6.33407100221694 Gooby 1.0.0
|
573
|
-
// points.push(new GLatLng(35.182908,-80.820174)); // (551 of 1167.0) 2007-03-10T13:56:41Z 3249 00:54:09 6.34502230987703 Gooby 1.0.0
|
574
|
-
// points.push(new GLatLng(35.182732,-80.820102)); // (552 of 1167.0) 2007-03-10T13:56:48Z 3256 00:54:16 6.35784385782009 Gooby 1.0.0
|
575
|
-
points.push(new GLatLng(35.182536,-80.820006)); // (553 of 1167.0) 2007-03-10T13:56:56Z 3264 00:54:24 6.3724302896372 Gooby 1.0.0
|
576
|
-
// points.push(new GLatLng(35.182416,-80.819955)); // (554 of 1167.0) 2007-03-10T13:57:01Z 3269 00:54:29 6.38120690628664 Gooby 1.0.0
|
577
|
-
// points.push(new GLatLng(35.182278,-80.81991)); // (555 of 1167.0) 2007-03-10T13:57:07Z 3275 00:54:35 6.39107435945923 Gooby 1.0.0
|
578
|
-
// points.push(new GLatLng(35.182128,-80.819849)); // (556 of 1167.0) 2007-03-10T13:57:13Z 3281 00:54:41 6.40199544163707 Gooby 1.0.0
|
579
|
-
// points.push(new GLatLng(35.181978,-80.819775)); // (557 of 1167.0) 2007-03-10T13:57:19Z 3287 00:54:47 6.41316943378475 Gooby 1.0.0
|
580
|
-
points.push(new GLatLng(35.181825,-80.81971)); // (558 of 1167.0) 2007-03-10T13:57:25Z 3293 00:54:53 6.42435929565733 Gooby 1.0.0
|
581
|
-
// points.push(new GLatLng(35.181698,-80.819668)); // (559 of 1167.0) 2007-03-10T13:57:30Z 3298 00:54:58 6.43344868861795 Gooby 1.0.0
|
582
|
-
// points.push(new GLatLng(35.181519,-80.819571)); // (560 of 1167.0) 2007-03-10T13:57:37Z 3305 00:55:05 6.44697465266527 Gooby 1.0.0
|
583
|
-
// points.push(new GLatLng(35.18138,-80.819469)); // (561 of 1167.0) 2007-03-10T13:57:43Z 3311 00:55:11 6.45817306240962 Gooby 1.0.0
|
584
|
-
// points.push(new GLatLng(35.18124,-80.819415)); // (562 of 1167.0) 2007-03-10T13:57:49Z 3317 00:55:17 6.46831491977949 Gooby 1.0.0
|
585
|
-
points.push(new GLatLng(35.181089,-80.819367)); // (563 of 1167.0) 2007-03-10T13:57:55Z 3323 00:55:23 6.47909377529824 Gooby 1.0.0
|
586
|
-
// points.push(new GLatLng(35.180969,-80.819318)); // (564 of 1167.0) 2007-03-10T13:58:00Z 3328 00:55:28 6.48783404146847 Gooby 1.0.0
|
587
|
-
// points.push(new GLatLng(35.180823,-80.819246)); // (565 of 1167.0) 2007-03-10T13:58:06Z 3334 00:55:34 6.49870978788567 Gooby 1.0.0
|
588
|
-
// points.push(new GLatLng(35.180666,-80.819181)); // (566 of 1167.0) 2007-03-10T13:58:12Z 3340 00:55:40 6.51016121157735 Gooby 1.0.0
|
589
|
-
// points.push(new GLatLng(35.180507,-80.819127)); // (567 of 1167.0) 2007-03-10T13:58:18Z 3346 00:55:46 6.52156193232831 Gooby 1.0.0
|
590
|
-
points.push(new GLatLng(35.180383,-80.819057)); // (568 of 1167.0) 2007-03-10T13:58:23Z 3351 00:55:51 6.53099730667959 Gooby 1.0.0
|
591
|
-
// points.push(new GLatLng(35.180199,-80.819006)); // (569 of 1167.0) 2007-03-10T13:58:30Z 3358 00:55:58 6.54403201447867 Gooby 1.0.0
|
592
|
-
// points.push(new GLatLng(35.180048,-80.818951)); // (570 of 1167.0) 2007-03-10T13:58:36Z 3364 00:56:04 6.55491687512043 Gooby 1.0.0
|
593
|
-
// points.push(new GLatLng(35.179907,-80.81888)); // (571 of 1167.0) 2007-03-10T13:58:42Z 3370 00:56:10 6.56545117371492 Gooby 1.0.0
|
594
|
-
// points.push(new GLatLng(35.179787,-80.81881)); // (572 of 1167.0) 2007-03-10T13:58:47Z 3375 00:56:15 6.5746361489196 Gooby 1.0.0
|
595
|
-
points.push(new GLatLng(35.179635,-80.818756)); // (573 of 1167.0) 2007-03-10T13:58:53Z 3381 00:56:21 6.58557155884513 Gooby 1.0.0
|
596
|
-
// points.push(new GLatLng(35.179494,-80.818692)); // (574 of 1167.0) 2007-03-10T13:58:59Z 3387 00:56:27 6.59596202014705 Gooby 1.0.0
|
597
|
-
// points.push(new GLatLng(35.179349,-80.818623)); // (575 of 1167.0) 2007-03-10T13:59:05Z 3393 00:56:33 6.60671113637663 Gooby 1.0.0
|
598
|
-
// points.push(new GLatLng(35.179228,-80.818556)); // (576 of 1167.0) 2007-03-10T13:59:10Z 3398 00:56:38 6.61588720489065 Gooby 1.0.0
|
599
|
-
// points.push(new GLatLng(35.179113,-80.818526)); // (577 of 1167.0) 2007-03-10T13:59:15Z 3403 00:56:43 6.62401118232319 Gooby 1.0.0
|
600
|
-
points.push(new GLatLng(35.178972,-80.818437)); // (578 of 1167.0) 2007-03-10T13:59:21Z 3409 00:56:49 6.63497296985787 Gooby 1.0.0
|
601
|
-
// points.push(new GLatLng(35.178841,-80.8184)); // (579 of 1167.0) 2007-03-10T13:59:27Z 3415 00:56:55 6.64426191216806 Gooby 1.0.0
|
602
|
-
// points.push(new GLatLng(35.178698,-80.818375)); // (580 of 1167.0) 2007-03-10T13:59:33Z 3421 00:57:01 6.6542420898038 Gooby 1.0.0
|
603
|
-
// points.push(new GLatLng(35.178555,-80.818297)); // (581 of 1167.0) 2007-03-10T13:59:39Z 3427 00:57:07 6.66505945200288 Gooby 1.0.0
|
604
|
-
// points.push(new GLatLng(35.178412,-80.818201)); // (582 of 1167.0) 2007-03-10T13:59:45Z 3433 00:57:13 6.67632894479328 Gooby 1.0.0
|
605
|
-
points.push(new GLatLng(35.178347,-80.818179)); // (583 of 1167.0) 2007-03-10T13:59:48Z 3436 00:57:16 6.68098856191783 Gooby 1.0.0
|
606
|
-
// points.push(new GLatLng(35.178152,-80.818103)); // (584 of 1167.0) 2007-03-10T13:59:56Z 3444 00:57:24 6.69512827993742 Gooby 1.0.0
|
607
|
-
// points.push(new GLatLng(35.178004,-80.818052)); // (585 of 1167.0) 2007-03-10T14:00:02Z 3450 00:57:30 6.70575154931151 Gooby 1.0.0
|
608
|
-
// points.push(new GLatLng(35.177852,-80.817965)); // (586 of 1167.0) 2007-03-10T14:00:08Z 3456 00:57:36 6.71734565232808 Gooby 1.0.0
|
609
|
-
// points.push(new GLatLng(35.177692,-80.817859)); // (587 of 1167.0) 2007-03-10T14:00:15Z 3463 00:57:43 6.72991671353197 Gooby 1.0.0
|
610
|
-
points.push(new GLatLng(35.177513,-80.817728)); // (588 of 1167.0) 2007-03-10T14:00:23Z 3471 00:57:51 6.74432747397255 Gooby 1.0.0
|
611
|
-
// points.push(new GLatLng(35.177371,-80.817611)); // (589 of 1167.0) 2007-03-10T14:00:29Z 3477 00:57:57 6.75615555179947 Gooby 1.0.0
|
612
|
-
// points.push(new GLatLng(35.177261,-80.817635)); // (590 of 1167.0) 2007-03-10T14:00:33Z 3481 00:58:01 6.76387521915373 Gooby 1.0.0
|
613
|
-
// points.push(new GLatLng(35.177134,-80.817791)); // (591 of 1167.0) 2007-03-10T14:00:39Z 3487 00:58:07 6.77630907617463 Gooby 1.0.0
|
614
|
-
// points.push(new GLatLng(35.176997,-80.817977)); // (592 of 1167.0) 2007-03-10T14:00:46Z 3494 00:58:14 6.79044854811276 Gooby 1.0.0
|
615
|
-
points.push(new GLatLng(35.176885,-80.818136)); // (593 of 1167.0) 2007-03-10T14:00:52Z 3500 00:58:20 6.80230175098192 Gooby 1.0.0
|
616
|
-
// points.push(new GLatLng(35.176795,-80.818264)); // (594 of 1167.0) 2007-03-10T14:00:57Z 3505 00:58:25 6.81183690346848 Gooby 1.0.0
|
617
|
-
// points.push(new GLatLng(35.176651,-80.818431)); // (595 of 1167.0) 2007-03-10T14:01:04Z 3512 00:58:32 6.82554543722886 Gooby 1.0.0
|
618
|
-
// points.push(new GLatLng(35.176554,-80.818557)); // (596 of 1167.0) 2007-03-10T14:01:09Z 3517 00:58:37 6.83531988855223 Gooby 1.0.0
|
619
|
-
// points.push(new GLatLng(35.176453,-80.818711)); // (597 of 1167.0) 2007-03-10T14:01:15Z 3523 00:58:43 6.84647018978994 Gooby 1.0.0
|
620
|
-
points.push(new GLatLng(35.176345,-80.818843)); // (598 of 1167.0) 2007-03-10T14:01:20Z 3528 00:58:48 6.85701752721542 Gooby 1.0.0
|
621
|
-
// points.push(new GLatLng(35.176205,-80.819006)); // (599 of 1167.0) 2007-03-10T14:01:26Z 3534 00:58:54 6.87037015479443 Gooby 1.0.0
|
622
|
-
// points.push(new GLatLng(35.176082,-80.819149)); // (600 of 1167.0) 2007-03-10T14:01:32Z 3540 00:59:00 6.88209333634084 Gooby 1.0.0
|
623
|
-
// points.push(new GLatLng(35.175969,-80.819278)); // (601 of 1167.0) 2007-03-10T14:01:37Z 3545 00:59:05 6.89277148981399 Gooby 1.0.0
|
624
|
-
// points.push(new GLatLng(35.175882,-80.819404)); // (602 of 1167.0) 2007-03-10T14:01:42Z 3550 00:59:10 6.90208624258446 Gooby 1.0.0
|
625
|
-
points.push(new GLatLng(35.175773,-80.819563)); // (603 of 1167.0) 2007-03-10T14:01:48Z 3556 00:59:16 6.91380526813212 Gooby 1.0.0
|
626
|
-
// points.push(new GLatLng(35.175636,-80.81972)); // (604 of 1167.0) 2007-03-10T14:01:55Z 3563 00:59:23 6.9267746788813 Gooby 1.0.0
|
627
|
-
// points.push(new GLatLng(35.175531,-80.81981)); // (605 of 1167.0) 2007-03-10T14:02:00Z 3568 00:59:28 6.93563219499142 Gooby 1.0.0
|
628
|
-
// points.push(new GLatLng(35.175367,-80.819974)); // (606 of 1167.0) 2007-03-10T14:02:07Z 3575 00:59:35 6.95026649542042 Gooby 1.0.0
|
629
|
-
// points.push(new GLatLng(35.175246,-80.820095)); // (607 of 1167.0) 2007-03-10T14:02:12Z 3580 00:59:40 6.96106357414202 Gooby 1.0.0
|
630
|
-
points.push(new GLatLng(35.175162,-80.820143)); // (608 of 1167.0) 2007-03-10T14:02:16Z 3584 00:59:44 6.9674687824386 Gooby 1.0.0
|
631
|
-
// points.push(new GLatLng(35.174986,-80.820308)); // (609 of 1167.0) 2007-03-10T14:02:24Z 3592 00:59:52 6.98278832139807 Gooby 1.0.0
|
632
|
-
// points.push(new GLatLng(35.174853,-80.820429)); // (610 of 1167.0) 2007-03-10T14:02:30Z 3598 00:59:58 6.99423974508975 Gooby 1.0.0
|
633
|
-
points.push(new GLatLng(35.174682,-80.820568)); // (611 of 1167.0) 2007-03-10T14:02:37Z 3605 01:00:05 7.00842430149279 7.0 00:08:53 Gooby 1.0.0
|
634
|
-
// points.push(new GLatLng(35.174545,-80.820671)); // (612 of 1167.0) 2007-03-10T14:02:43Z 3611 01:00:11 7.01953396169022 Gooby 1.0.0
|
635
|
-
// points.push(new GLatLng(35.174401,-80.820766)); // (613 of 1167.0) 2007-03-10T14:02:49Z 3617 01:00:17 7.03083721239784 Gooby 1.0.0
|
636
|
-
// points.push(new GLatLng(35.174265,-80.820855)); // (614 of 1167.0) 2007-03-10T14:02:55Z 3623 01:00:23 7.04149351145673 Gooby 1.0.0
|
637
|
-
// points.push(new GLatLng(35.17409,-80.820953)); // (615 of 1167.0) 2007-03-10T14:03:02Z 3630 01:00:30 7.05479078029445 Gooby 1.0.0
|
638
|
-
points.push(new GLatLng(35.173976,-80.821013)); // (616 of 1167.0) 2007-03-10T14:03:06Z 3634 01:00:34 7.06336525821476 Gooby 1.0.0
|
639
|
-
// points.push(new GLatLng(35.173799,-80.82112)); // (617 of 1167.0) 2007-03-10T14:03:13Z 3641 01:00:41 7.07700598138038 Gooby 1.0.0
|
640
|
-
// points.push(new GLatLng(35.173643,-80.821196)); // (618 of 1167.0) 2007-03-10T14:03:19Z 3647 01:00:47 7.08860713480991 Gooby 1.0.0
|
641
|
-
// points.push(new GLatLng(35.173455,-80.821295)); // (619 of 1167.0) 2007-03-10T14:03:26Z 3654 01:00:54 7.10274832922837 Gooby 1.0.0
|
642
|
-
// points.push(new GLatLng(35.173276,-80.821427)); // (620 of 1167.0) 2007-03-10T14:03:33Z 3661 01:01:01 7.11718851664367 Gooby 1.0.0
|
643
|
-
points.push(new GLatLng(35.17316,-80.821528)); // (621 of 1167.0) 2007-03-10T14:03:38Z 3666 01:01:06 7.12702542062566 Gooby 1.0.0
|
644
|
-
// points.push(new GLatLng(35.173015,-80.821679)); // (622 of 1167.0) 2007-03-10T14:03:45Z 3673 01:01:13 7.1401815546832 Gooby 1.0.0
|
645
|
-
// points.push(new GLatLng(35.172929,-80.821816)); // (623 of 1167.0) 2007-03-10T14:03:50Z 3678 01:01:18 7.14993712091446 Gooby 1.0.0
|
646
|
-
// points.push(new GLatLng(35.172807,-80.822047)); // (624 of 1167.0) 2007-03-10T14:03:58Z 3686 01:01:26 7.16546925266945 Gooby 1.0.0
|
647
|
-
// points.push(new GLatLng(35.172732,-80.822187)); // (625 of 1167.0) 2007-03-10T14:04:03Z 3691 01:01:31 7.1749226795291 Gooby 1.0.0
|
648
|
-
points.push(new GLatLng(35.172635,-80.822343)); // (626 of 1167.0) 2007-03-10T14:04:09Z 3697 01:01:37 7.18599217814836 Gooby 1.0.0
|
649
|
-
// points.push(new GLatLng(35.172535,-80.822549)); // (627 of 1167.0) 2007-03-10T14:04:16Z 3704 01:01:44 7.19952302897585 Gooby 1.0.0
|
650
|
-
// points.push(new GLatLng(35.172418,-80.822744)); // (628 of 1167.0) 2007-03-10T14:04:22Z 3710 01:01:50 7.21318401604676 Gooby 1.0.0
|
651
|
-
// points.push(new GLatLng(35.172322,-80.822887)); // (629 of 1167.0) 2007-03-10T14:04:27Z 3715 01:01:55 7.22363441430667 Gooby 1.0.0
|
652
|
-
// points.push(new GLatLng(35.172215,-80.823036)); // (630 of 1167.0) 2007-03-10T14:04:33Z 3721 01:02:01 7.23483515415662 Gooby 1.0.0
|
653
|
-
points.push(new GLatLng(35.172058,-80.823054)); // (631 of 1167.0) 2007-03-10T14:04:39Z 3727 01:02:07 7.24572976017147 Gooby 1.0.0
|
654
|
-
// points.push(new GLatLng(35.171887,-80.822994)); // (632 of 1167.0) 2007-03-10T14:04:45Z 3733 01:02:13 7.25802049476224 Gooby 1.0.0
|
655
|
-
// points.push(new GLatLng(35.171722,-80.822942)); // (633 of 1167.0) 2007-03-10T14:04:51Z 3739 01:02:19 7.2697925471754 Gooby 1.0.0
|
656
|
-
// points.push(new GLatLng(35.171583,-80.822916)); // (634 of 1167.0) 2007-03-10T14:04:56Z 3744 01:02:24 7.27950754731682 Gooby 1.0.0
|
657
|
-
// points.push(new GLatLng(35.171413,-80.822873)); // (635 of 1167.0) 2007-03-10T14:05:02Z 3750 01:02:30 7.29150126105822 Gooby 1.0.0
|
658
|
-
points.push(new GLatLng(35.171241,-80.82282)); // (636 of 1167.0) 2007-03-10T14:05:08Z 3756 01:02:36 7.30375598935977 Gooby 1.0.0
|
659
|
-
// points.push(new GLatLng(35.171073,-80.822759)); // (637 of 1167.0) 2007-03-10T14:05:14Z 3762 01:02:42 7.3158634667691 Gooby 1.0.0
|
660
|
-
// points.push(new GLatLng(35.170913,-80.822709)); // (638 of 1167.0) 2007-03-10T14:05:20Z 3768 01:02:48 7.32727288238518 Gooby 1.0.0
|
661
|
-
// points.push(new GLatLng(35.170721,-80.822646)); // (639 of 1167.0) 2007-03-10T14:05:27Z 3775 01:02:55 7.34100702798283 Gooby 1.0.0
|
662
|
-
// points.push(new GLatLng(35.170555,-80.822611)); // (640 of 1167.0) 2007-03-10T14:05:33Z 3781 01:03:01 7.35264501389076 Gooby 1.0.0
|
663
|
-
points.push(new GLatLng(35.170417,-80.82257)); // (641 of 1167.0) 2007-03-10T14:05:38Z 3786 01:03:06 7.36245641710663 Gooby 1.0.0
|
664
|
-
// points.push(new GLatLng(35.17025,-80.822523)); // (642 of 1167.0) 2007-03-10T14:05:44Z 3792 01:03:12 7.3742956682017 Gooby 1.0.0
|
665
|
-
// points.push(new GLatLng(35.170064,-80.822486)); // (643 of 1167.0) 2007-03-10T14:05:51Z 3799 01:03:19 7.38731515149748 Gooby 1.0.0
|
666
|
-
// points.push(new GLatLng(35.169933,-80.82246)); // (644 of 1167.0) 2007-03-10T14:05:56Z 3804 01:03:24 7.39648420227497 Gooby 1.0.0
|
667
|
-
// points.push(new GLatLng(35.169744,-80.822452)); // (645 of 1167.0) 2007-03-10T14:06:03Z 3811 01:03:31 7.40955010479252 Gooby 1.0.0
|
668
|
-
points.push(new GLatLng(35.169552,-80.822429)); // (646 of 1167.0) 2007-03-10T14:06:10Z 3818 01:03:38 7.42287886753251 Gooby 1.0.0
|
669
|
-
// points.push(new GLatLng(35.16936,-80.82243)); // (647 of 1167.0) 2007-03-10T14:06:17Z 3825 01:03:45 7.43614404310379 Gooby 1.0.0
|
670
|
-
// points.push(new GLatLng(35.1692,-80.822453)); // (648 of 1167.0) 2007-03-10T14:06:23Z 3831 01:03:51 7.44727435498988 Gooby 1.0.0
|
671
|
-
// points.push(new GLatLng(35.169015,-80.822471)); // (649 of 1167.0) 2007-03-10T14:06:30Z 3838 01:03:58 7.46009644567842 Gooby 1.0.0
|
672
|
-
// points.push(new GLatLng(35.168807,-80.8225)); // (650 of 1167.0) 2007-03-10T14:06:38Z 3846 01:04:06 7.47456022779354 Gooby 1.0.0
|
673
|
-
points.push(new GLatLng(35.168613,-80.822538)); // (651 of 1167.0) 2007-03-10T14:06:45Z 3853 01:04:13 7.48813446782759 Gooby 1.0.0
|
674
|
-
// points.push(new GLatLng(35.168454,-80.822571)); // (652 of 1167.0) 2007-03-10T14:06:51Z 3859 01:04:19 7.49927680885567 Gooby 1.0.0
|
675
|
-
// points.push(new GLatLng(35.168305,-80.82264)); // (653 of 1167.0) 2007-03-10T14:06:57Z 3865 01:04:25 7.51028420998984 Gooby 1.0.0
|
676
|
-
// points.push(new GLatLng(35.168173,-80.82277)); // (654 of 1167.0) 2007-03-10T14:07:03Z 3871 01:04:31 7.52199239331822 Gooby 1.0.0
|
677
|
-
// points.push(new GLatLng(35.168076,-80.822925)); // (655 of 1167.0) 2007-03-10T14:07:09Z 3877 01:04:37 7.53301748210981 Gooby 1.0.0
|
678
|
-
points.push(new GLatLng(35.167998,-80.823114)); // (656 of 1167.0) 2007-03-10T14:07:15Z 3883 01:04:43 7.54497516814134 Gooby 1.0.0
|
679
|
-
// points.push(new GLatLng(35.167924,-80.823275)); // (657 of 1167.0) 2007-03-10T14:07:20Z 3888 01:04:48 7.55540673759011 Gooby 1.0.0
|
680
|
-
// points.push(new GLatLng(35.167854,-80.823453)); // (658 of 1167.0) 2007-03-10T14:07:25Z 3893 01:04:53 7.56656265437956 Gooby 1.0.0
|
681
|
-
// points.push(new GLatLng(35.167806,-80.823698)); // (659 of 1167.0) 2007-03-10T14:07:32Z 3900 01:05:00 7.58079190787469 Gooby 1.0.0
|
682
|
-
// points.push(new GLatLng(35.16779,-80.823867)); // (660 of 1167.0) 2007-03-10T14:07:37Z 3905 01:05:05 7.59040048986258 Gooby 1.0.0
|
683
|
-
points.push(new GLatLng(35.16778,-80.82405)); // (661 of 1167.0) 2007-03-10T14:07:43Z 3911 01:05:11 7.60075908931115 Gooby 1.0.0
|
684
|
-
// points.push(new GLatLng(35.167777,-80.824282)); // (662 of 1167.0) 2007-03-10T14:07:50Z 3918 01:05:18 7.61386381442617 Gooby 1.0.0
|
685
|
-
// points.push(new GLatLng(35.167755,-80.824416)); // (663 of 1167.0) 2007-03-10T14:07:54Z 3922 01:05:22 7.62158280565454 Gooby 1.0.0
|
686
|
-
// points.push(new GLatLng(35.167747,-80.824591)); // (664 of 1167.0) 2007-03-10T14:07:59Z 3927 01:05:27 7.63148176828852 Gooby 1.0.0
|
687
|
-
// points.push(new GLatLng(35.167698,-80.824748)); // (665 of 1167.0) 2007-03-10T14:08:04Z 3932 01:05:32 7.64097303031197 Gooby 1.0.0
|
688
|
-
points.push(new GLatLng(35.16767,-80.82489)); // (666 of 1167.0) 2007-03-10T14:08:08Z 3936 01:05:36 7.64922281023306 Gooby 1.0.0
|
689
|
-
// points.push(new GLatLng(35.167611,-80.825095)); // (667 of 1167.0) 2007-03-10T14:08:14Z 3942 01:05:42 7.66149753931987 Gooby 1.0.0
|
690
|
-
// points.push(new GLatLng(35.167603,-80.825237)); // (668 of 1167.0) 2007-03-10T14:08:18Z 3946 01:05:46 7.66953626623316 Gooby 1.0.0
|
691
|
-
// points.push(new GLatLng(35.167584,-80.825402)); // (669 of 1167.0) 2007-03-10T14:08:23Z 3951 01:05:51 7.67894727022686 Gooby 1.0.0
|
692
|
-
// points.push(new GLatLng(35.167545,-80.825612)); // (670 of 1167.0) 2007-03-10T14:08:29Z 3957 01:05:57 7.69111008623436 Gooby 1.0.0
|
693
|
-
points.push(new GLatLng(35.16752,-80.82578)); // (671 of 1167.0) 2007-03-10T14:08:34Z 3962 01:06:02 7.7007546321946 Gooby 1.0.0
|
694
|
-
// points.push(new GLatLng(35.167462,-80.825978)); // (672 of 1167.0) 2007-03-10T14:08:40Z 3968 01:06:08 7.71263378571616 Gooby 1.0.0
|
695
|
-
// points.push(new GLatLng(35.167436,-80.826148)); // (673 of 1167.0) 2007-03-10T14:08:45Z 3973 01:06:13 7.72240182732905 Gooby 1.0.0
|
696
|
-
// points.push(new GLatLng(35.167421,-80.826358)); // (674 of 1167.0) 2007-03-10T14:08:51Z 3979 01:06:19 7.73430775171457 Gooby 1.0.0
|
697
|
-
// points.push(new GLatLng(35.16741,-80.826576)); // (675 of 1167.0) 2007-03-10T14:08:57Z 3985 01:06:25 7.74664369895449 Gooby 1.0.0
|
698
|
-
points.push(new GLatLng(35.167517,-80.826677)); // (676 of 1167.0) 2007-03-10T14:09:01Z 3989 01:06:29 7.75598139656813 Gooby 1.0.0
|
699
|
-
// points.push(new GLatLng(35.167661,-80.826755)); // (677 of 1167.0) 2007-03-10T14:09:06Z 3994 01:06:34 7.76686210079128 Gooby 1.0.0
|
700
|
-
// points.push(new GLatLng(35.167814,-80.826855)); // (678 of 1167.0) 2007-03-10T14:09:12Z 4000 01:06:40 7.778847253242 Gooby 1.0.0
|
701
|
-
// points.push(new GLatLng(35.167962,-80.826953)); // (679 of 1167.0) 2007-03-10T14:09:18Z 4006 01:06:46 7.79047447098959 Gooby 1.0.0
|
702
|
-
// points.push(new GLatLng(35.168126,-80.827088)); // (680 of 1167.0) 2007-03-10T14:09:25Z 4013 01:06:53 7.80413176436989 Gooby 1.0.0
|
703
|
-
points.push(new GLatLng(35.168281,-80.82728)); // (681 of 1167.0) 2007-03-10T14:09:32Z 4020 01:07:00 7.81937217206802 Gooby 1.0.0
|
704
|
-
// points.push(new GLatLng(35.168398,-80.827473)); // (682 of 1167.0) 2007-03-10T14:09:39Z 4027 01:07:07 7.83294256659928 Gooby 1.0.0
|
705
|
-
// points.push(new GLatLng(35.1685,-80.827682)); // (683 of 1167.0) 2007-03-10T14:09:46Z 4034 01:07:14 7.84669025953191 Gooby 1.0.0
|
706
|
-
// points.push(new GLatLng(35.168563,-80.827867)); // (684 of 1167.0) 2007-03-10T14:09:52Z 4040 01:07:20 7.8580090450356 Gooby 1.0.0
|
707
|
-
// points.push(new GLatLng(35.168615,-80.828048)); // (685 of 1167.0) 2007-03-10T14:09:58Z 4046 01:07:26 7.86884440511637 Gooby 1.0.0
|
708
|
-
points.push(new GLatLng(35.168651,-80.828236)); // (686 of 1167.0) 2007-03-10T14:10:04Z 4052 01:07:32 7.87974986456075 Gooby 1.0.0
|
709
|
-
// points.push(new GLatLng(35.168681,-80.828426)); // (687 of 1167.0) 2007-03-10T14:10:10Z 4058 01:07:38 7.89067922728385 Gooby 1.0.0
|
710
|
-
// points.push(new GLatLng(35.16867,-80.828597)); // (688 of 1167.0) 2007-03-10T14:10:15Z 4063 01:07:43 7.90036661010578 Gooby 1.0.0
|
711
|
-
// points.push(new GLatLng(35.16861,-80.828801)); // (689 of 1167.0) 2007-03-10T14:10:21Z 4069 01:07:49 7.91261111263963 Gooby 1.0.0
|
712
|
-
// points.push(new GLatLng(35.16858,-80.828965)); // (690 of 1167.0) 2007-03-10T14:10:26Z 4074 01:07:54 7.92210274125555 Gooby 1.0.0
|
713
|
-
points.push(new GLatLng(35.168516,-80.829202)); // (691 of 1167.0) 2007-03-10T14:10:33Z 4081 01:08:01 7.93619957644521 Gooby 1.0.0
|
714
|
-
// points.push(new GLatLng(35.168462,-80.829399)); // (692 of 1167.0) 2007-03-10T14:10:39Z 4087 01:08:07 7.94793462416354 Gooby 1.0.0
|
715
|
-
// points.push(new GLatLng(35.168441,-80.82961)); // (693 of 1167.0) 2007-03-10T14:10:45Z 4093 01:08:13 7.95993964685021 Gooby 1.0.0
|
716
|
-
// points.push(new GLatLng(35.168484,-80.829797)); // (694 of 1167.0) 2007-03-10T14:10:51Z 4099 01:08:19 7.97091095285687 Gooby 1.0.0
|
717
|
-
// points.push(new GLatLng(35.168503,-80.829968)); // (695 of 1167.0) 2007-03-10T14:10:56Z 4104 01:08:24 7.98065759832488 Gooby 1.0.0
|
718
|
-
points.push(new GLatLng(35.168552,-80.83017)); // (696 of 1167.0) 2007-03-10T14:11:02Z 4110 01:08:30 7.992557822494 Gooby 1.0.0
|
719
|
-
points.push(new GLatLng(35.168577,-80.830323)); // (697 of 1167.0) 2007-03-10T14:11:07Z 4115 01:08:35 8.00136965257832 8.0 00:08:30 Gooby 1.0.0
|
720
|
-
// points.push(new GLatLng(35.168571,-80.830497)); // (698 of 1167.0) 2007-03-10T14:11:12Z 4120 01:08:40 8.01120549534837 Gooby 1.0.0
|
721
|
-
// points.push(new GLatLng(35.168572,-80.830573)); // (699 of 1167.0) 2007-03-10T14:11:14Z 4122 01:08:42 8.01549820906432 Gooby 1.0.0
|
722
|
-
// points.push(new GLatLng(35.168664,-80.830678)); // (700 of 1167.0) 2007-03-10T14:11:19Z 4127 01:08:47 8.02419117248649 Gooby 1.0.0
|
723
|
-
// points.push(new GLatLng(35.168691,-80.830683)); // (701 of 1167.0) 2007-03-10T14:11:20Z 4128 01:08:48 8.02607784166505 Gooby 1.0.0
|
724
|
-
points.push(new GLatLng(35.168887,-80.830713)); // (702 of 1167.0) 2007-03-10T14:11:27Z 4135 01:08:55 8.03972519533084 Gooby 1.0.0
|
725
|
-
// points.push(new GLatLng(35.169092,-80.830694)); // (703 of 1167.0) 2007-03-10T14:11:34Z 4142 01:09:02 8.05392923981196 Gooby 1.0.0
|
726
|
-
// points.push(new GLatLng(35.169252,-80.830669)); // (704 of 1167.0) 2007-03-10T14:11:40Z 4148 01:09:08 8.06507329822893 Gooby 1.0.0
|
727
|
-
// points.push(new GLatLng(35.16945,-80.830613)); // (705 of 1167.0) 2007-03-10T14:11:47Z 4155 01:09:15 8.07911399169027 Gooby 1.0.0
|
728
|
-
// points.push(new GLatLng(35.169602,-80.830564)); // (706 of 1167.0) 2007-03-10T14:11:53Z 4161 01:09:21 8.08997421035204 Gooby 1.0.0
|
729
|
-
points.push(new GLatLng(35.16974,-80.830511)); // (707 of 1167.0) 2007-03-10T14:11:59Z 4167 01:09:27 8.09996762753803 Gooby 1.0.0
|
730
|
-
// points.push(new GLatLng(35.169894,-80.830443)); // (708 of 1167.0) 2007-03-10T14:12:05Z 4173 01:09:33 8.11127949423307 Gooby 1.0.0
|
731
|
-
// points.push(new GLatLng(35.170021,-80.830415)); // (709 of 1167.0) 2007-03-10T14:12:10Z 4178 01:09:38 8.12019534979137 Gooby 1.0.0
|
732
|
-
// points.push(new GLatLng(35.170173,-80.830368)); // (710 of 1167.0) 2007-03-10T14:12:16Z 4184 01:09:44 8.13102717693411 Gooby 1.0.0
|
733
|
-
// points.push(new GLatLng(35.170322,-80.830349)); // (711 of 1167.0) 2007-03-10T14:12:21Z 4189 01:09:49 8.14137737538257 Gooby 1.0.0
|
734
|
-
points.push(new GLatLng(35.170464,-80.830337)); // (712 of 1167.0) 2007-03-10T14:12:25Z 4193 01:09:53 8.15121144921159 Gooby 1.0.0
|
735
|
-
// points.push(new GLatLng(35.170561,-80.830288)); // (713 of 1167.0) 2007-03-10T14:12:30Z 4198 01:09:58 8.1584623200667 Gooby 1.0.0
|
736
|
-
// points.push(new GLatLng(35.170693,-80.83024)); // (714 of 1167.0) 2007-03-10T14:12:36Z 4204 01:10:04 8.16797664982888 Gooby 1.0.0
|
737
|
-
// points.push(new GLatLng(35.170816,-80.830185)); // (715 of 1167.0) 2007-03-10T14:12:42Z 4210 01:10:10 8.17702460507097 Gooby 1.0.0
|
738
|
-
// points.push(new GLatLng(35.170964,-80.830124)); // (716 of 1167.0) 2007-03-10T14:12:49Z 4217 01:10:17 8.187814591691 Gooby 1.0.0
|
739
|
-
points.push(new GLatLng(35.171105,-80.83007)); // (717 of 1167.0) 2007-03-10T14:12:55Z 4223 01:10:23 8.19802261963073 Gooby 1.0.0
|
740
|
-
// points.push(new GLatLng(35.171277,-80.829997)); // (718 of 1167.0) 2007-03-10T14:13:03Z 4231 01:10:31 8.2106008752089 Gooby 1.0.0
|
741
|
-
// points.push(new GLatLng(35.171391,-80.82997)); // (719 of 1167.0) 2007-03-10T14:13:08Z 4236 01:10:36 8.21862335415661 Gooby 1.0.0
|
742
|
-
// points.push(new GLatLng(35.171511,-80.829956)); // (720 of 1167.0) 2007-03-10T14:13:13Z 4241 01:10:41 8.22695184011425 Gooby 1.0.0
|
743
|
-
// points.push(new GLatLng(35.171681,-80.830013)); // (721 of 1167.0) 2007-03-10T14:13:20Z 4248 01:10:48 8.23913009443896 Gooby 1.0.0
|
744
|
-
points.push(new GLatLng(35.171866,-80.830134)); // (722 of 1167.0) 2007-03-10T14:13:28Z 4256 01:10:56 8.2536237960589 Gooby 1.0.0
|
745
|
-
// points.push(new GLatLng(35.171993,-80.83025)); // (723 of 1167.0) 2007-03-10T14:13:34Z 4262 01:11:02 8.26457415050579 Gooby 1.0.0
|
746
|
-
// points.push(new GLatLng(35.172116,-80.830397)); // (724 of 1167.0) 2007-03-10T14:13:40Z 4268 01:11:08 8.27645447559927 Gooby 1.0.0
|
747
|
-
// points.push(new GLatLng(35.172271,-80.83058)); // (725 of 1167.0) 2007-03-10T14:13:47Z 4275 01:11:15 8.29133715140886 Gooby 1.0.0
|
748
|
-
// points.push(new GLatLng(35.172406,-80.830713)); // (726 of 1167.0) 2007-03-10T14:13:53Z 4281 01:11:21 8.3033127195698 Gooby 1.0.0
|
749
|
-
points.push(new GLatLng(35.172518,-80.830883)); // (727 of 1167.0) 2007-03-10T14:13:59Z 4287 01:11:27 8.31564372975051 Gooby 1.0.0
|
750
|
-
// points.push(new GLatLng(35.172635,-80.831039)); // (728 of 1167.0) 2007-03-10T14:14:05Z 4293 01:11:33 8.32760054279893 Gooby 1.0.0
|
751
|
-
// points.push(new GLatLng(35.172742,-80.831243)); // (729 of 1167.0) 2007-03-10T14:14:12Z 4300 01:11:40 8.34128939141954 Gooby 1.0.0
|
752
|
-
// points.push(new GLatLng(35.172849,-80.831379)); // (730 of 1167.0) 2007-03-10T14:14:17Z 4305 01:11:45 8.35194960799553 Gooby 1.0.0
|
753
|
-
// points.push(new GLatLng(35.172896,-80.831508)); // (731 of 1167.0) 2007-03-10T14:14:22Z 4310 01:11:50 8.35992576224513 Gooby 1.0.0
|
754
|
-
points.push(new GLatLng(35.172907,-80.831594)); // (732 of 1167.0) 2007-03-10T14:14:27Z 4315 01:11:55 8.36484156063356 Gooby 1.0.0
|
755
|
-
// points.push(new GLatLng(35.172951,-80.831707)); // (733 of 1167.0) 2007-03-10T14:14:31Z 4319 01:11:59 8.37191018913965 Gooby 1.0.0
|
756
|
-
// points.push(new GLatLng(35.173036,-80.831806)); // (734 of 1167.0) 2007-03-10T14:14:35Z 4323 01:12:03 8.38001873314465 Gooby 1.0.0
|
757
|
-
// points.push(new GLatLng(35.173191,-80.831924)); // (735 of 1167.0) 2007-03-10T14:14:41Z 4329 01:12:09 8.3926317956372 Gooby 1.0.0
|
758
|
-
// points.push(new GLatLng(35.173304,-80.832016)); // (736 of 1167.0) 2007-03-10T14:14:46Z 4334 01:12:14 8.40200983629322 Gooby 1.0.0
|
759
|
-
points.push(new GLatLng(35.173448,-80.832155)); // (737 of 1167.0) 2007-03-10T14:14:52Z 4340 01:12:20 8.41468261992922 Gooby 1.0.0
|
760
|
-
// points.push(new GLatLng(35.173618,-80.832343)); // (738 of 1167.0) 2007-03-10T14:14:59Z 4347 01:12:27 8.43051549775957 Gooby 1.0.0
|
761
|
-
// points.push(new GLatLng(35.173725,-80.832506)); // (739 of 1167.0) 2007-03-10T14:15:05Z 4353 01:12:33 8.44232193412778 Gooby 1.0.0
|
762
|
-
// points.push(new GLatLng(35.173845,-80.832784)); // (740 of 1167.0) 2007-03-10T14:15:14Z 4362 01:12:42 8.46007659778102 Gooby 1.0.0
|
763
|
-
// points.push(new GLatLng(35.173889,-80.832941)); // (741 of 1167.0) 2007-03-10T14:15:19Z 4367 01:12:47 8.46944962825438 Gooby 1.0.0
|
764
|
-
points.push(new GLatLng(35.173964,-80.833182)); // (742 of 1167.0) 2007-03-10T14:15:27Z 4375 01:12:55 8.48401302247234 Gooby 1.0.0
|
765
|
-
// points.push(new GLatLng(35.173993,-80.833357)); // (743 of 1167.0) 2007-03-10T14:15:32Z 4380 01:13:00 8.49409724981018 Gooby 1.0.0
|
766
|
-
// points.push(new GLatLng(35.174041,-80.833528)); // (744 of 1167.0) 2007-03-10T14:15:37Z 4385 01:13:05 8.50430800425314 Gooby 1.0.0
|
767
|
-
// points.push(new GLatLng(35.174115,-80.833749)); // (745 of 1167.0) 2007-03-10T14:15:44Z 4392 01:13:12 8.5177955842701 Gooby 1.0.0
|
768
|
-
// points.push(new GLatLng(35.17418,-80.833954)); // (746 of 1167.0) 2007-03-10T14:15:51Z 4399 01:13:19 8.53021334005791 Gooby 1.0.0
|
769
|
-
points.push(new GLatLng(35.174221,-80.834187)); // (747 of 1167.0) 2007-03-10T14:15:58Z 4406 01:13:26 8.54367328817701 Gooby 1.0.0
|
770
|
-
// points.push(new GLatLng(35.174243,-80.834401)); // (748 of 1167.0) 2007-03-10T14:16:04Z 4412 01:13:32 8.55585382799565 Gooby 1.0.0
|
771
|
-
// points.push(new GLatLng(35.17424,-80.834611)); // (749 of 1167.0) 2007-03-10T14:16:10Z 4418 01:13:38 8.56771524738055 Gooby 1.0.0
|
772
|
-
// points.push(new GLatLng(35.174223,-80.834832)); // (750 of 1167.0) 2007-03-10T14:16:16Z 4424 01:13:44 8.58025124627367 Gooby 1.0.0
|
773
|
-
// points.push(new GLatLng(35.174219,-80.834994)); // (751 of 1167.0) 2007-03-10T14:16:21Z 4429 01:13:49 8.58940396476738 Gooby 1.0.0
|
774
|
-
points.push(new GLatLng(35.174206,-80.835222)); // (752 of 1167.0) 2007-03-10T14:16:28Z 4436 01:13:56 8.60231152258202 Gooby 1.0.0
|
775
|
-
// points.push(new GLatLng(35.174185,-80.835476)); // (753 of 1167.0) 2007-03-10T14:16:35Z 4443 01:14:03 8.61672928340079 Gooby 1.0.0
|
776
|
-
// points.push(new GLatLng(35.174165,-80.835672)); // (754 of 1167.0) 2007-03-10T14:16:41Z 4449 01:14:09 8.62788410849881 Gooby 1.0.0
|
777
|
-
// points.push(new GLatLng(35.174142,-80.835878)); // (755 of 1167.0) 2007-03-10T14:16:47Z 4455 01:14:15 8.63962582566895 Gooby 1.0.0
|
778
|
-
// points.push(new GLatLng(35.174127,-80.836107)); // (756 of 1167.0) 2007-03-10T14:16:54Z 4462 01:14:22 8.65259966235768 Gooby 1.0.0
|
779
|
-
points.push(new GLatLng(35.17411,-80.836292)); // (757 of 1167.0) 2007-03-10T14:17:00Z 4468 01:14:28 8.66311329685506 Gooby 1.0.0
|
780
|
-
// points.push(new GLatLng(35.174122,-80.836358)); // (758 of 1167.0) 2007-03-10T14:17:02Z 4470 01:14:30 8.66693155203244 Gooby 1.0.0
|
781
|
-
// points.push(new GLatLng(35.174219,-80.836417)); // (759 of 1167.0) 2007-03-10T14:17:06Z 4474 01:14:34 8.67441572643697 Gooby 1.0.0
|
782
|
-
// points.push(new GLatLng(35.174442,-80.836438)); // (760 of 1167.0) 2007-03-10T14:17:14Z 4482 01:14:42 8.68986835198505 Gooby 1.0.0
|
783
|
-
// points.push(new GLatLng(35.174546,-80.836445)); // (761 of 1167.0) 2007-03-10T14:17:18Z 4486 01:14:46 8.69706479297384 Gooby 1.0.0
|
784
|
-
points.push(new GLatLng(35.174676,-80.836447)); // (762 of 1167.0) 2007-03-10T14:17:23Z 4491 01:14:51 8.70604713491188 Gooby 1.0.0
|
785
|
-
// points.push(new GLatLng(35.174845,-80.836422)); // (763 of 1167.0) 2007-03-10T14:17:29Z 4497 01:14:57 8.71780839398915 Gooby 1.0.0
|
786
|
-
// points.push(new GLatLng(35.175024,-80.836426)); // (764 of 1167.0) 2007-03-10T14:17:35Z 4503 01:15:03 8.73017757967298 Gooby 1.0.0
|
787
|
-
// points.push(new GLatLng(35.175153,-80.83641)); // (765 of 1167.0) 2007-03-10T14:17:40Z 4508 01:15:08 8.73913606666259 Gooby 1.0.0
|
788
|
-
// points.push(new GLatLng(35.175333,-80.836392)); // (766 of 1167.0) 2007-03-10T14:17:46Z 4514 01:15:14 8.75161378123652 Gooby 1.0.0
|
789
|
-
points.push(new GLatLng(35.175461,-80.836372)); // (767 of 1167.0) 2007-03-10T14:17:51Z 4519 01:15:19 8.7605290513872 Gooby 1.0.0
|
790
|
-
// points.push(new GLatLng(35.175651,-80.836348)); // (768 of 1167.0) 2007-03-10T14:17:58Z 4526 01:15:26 8.77372585202062 Gooby 1.0.0
|
791
|
-
// points.push(new GLatLng(35.175801,-80.836341)); // (769 of 1167.0) 2007-03-10T14:18:04Z 4532 01:15:32 8.78409687246047 Gooby 1.0.0
|
792
|
-
// points.push(new GLatLng(35.175947,-80.836332)); // (770 of 1167.0) 2007-03-10T14:18:10Z 4538 01:15:38 8.79419661479903 Gooby 1.0.0
|
793
|
-
// points.push(new GLatLng(35.176099,-80.836319)); // (771 of 1167.0) 2007-03-10T14:18:16Z 4544 01:15:44 8.80472380952081 Gooby 1.0.0
|
794
|
-
points.push(new GLatLng(35.176234,-80.836313)); // (772 of 1167.0) 2007-03-10T14:18:21Z 4549 01:15:49 8.81405684811589 Gooby 1.0.0
|
795
|
-
// points.push(new GLatLng(35.176398,-80.83627)); // (773 of 1167.0) 2007-03-10T14:18:28Z 4556 01:15:56 8.82564479726903 Gooby 1.0.0
|
796
|
-
// points.push(new GLatLng(35.176577,-80.836275)); // (774 of 1167.0) 2007-03-10T14:18:34Z 4562 01:16:02 8.83801524875278 Gooby 1.0.0
|
797
|
-
// points.push(new GLatLng(35.176713,-80.836263)); // (775 of 1167.0) 2007-03-10T14:18:39Z 4567 01:16:07 8.8474358607163 Gooby 1.0.0
|
798
|
-
// points.push(new GLatLng(35.176873,-80.83622)); // (776 of 1167.0) 2007-03-10T14:18:45Z 4573 01:16:13 8.85875387767233 Gooby 1.0.0
|
799
|
-
points.push(new GLatLng(35.177039,-80.83618)); // (777 of 1167.0) 2007-03-10T14:18:51Z 4579 01:16:19 8.87044317454311 Gooby 1.0.0
|
800
|
-
// points.push(new GLatLng(35.177216,-80.83614)); // (778 of 1167.0) 2007-03-10T14:18:57Z 4585 01:16:25 8.8828789902907 Gooby 1.0.0
|
801
|
-
// points.push(new GLatLng(35.177363,-80.836087)); // (779 of 1167.0) 2007-03-10T14:19:03Z 4591 01:16:31 8.89346715542208 Gooby 1.0.0
|
802
|
-
// points.push(new GLatLng(35.177525,-80.836034)); // (780 of 1167.0) 2007-03-10T14:19:09Z 4597 01:16:37 8.90505300250739 Gooby 1.0.0
|
803
|
-
// points.push(new GLatLng(35.177686,-80.835945)); // (781 of 1167.0) 2007-03-10T14:19:16Z 4604 01:16:44 8.91725922464536 Gooby 1.0.0
|
804
|
-
points.push(new GLatLng(35.177784,-80.835901)); // (782 of 1167.0) 2007-03-10T14:19:20Z 4608 01:16:48 8.92447160354519 Gooby 1.0.0
|
805
|
-
// points.push(new GLatLng(35.177918,-80.835866)); // (783 of 1167.0) 2007-03-10T14:19:25Z 4613 01:16:53 8.93393827153525 Gooby 1.0.0
|
806
|
-
// points.push(new GLatLng(35.178071,-80.835825)); // (784 of 1167.0) 2007-03-10T14:19:31Z 4619 01:16:59 8.94475949294323 Gooby 1.0.0
|
807
|
-
// points.push(new GLatLng(35.178215,-80.835772)); // (785 of 1167.0) 2007-03-10T14:19:36Z 4624 01:17:04 8.95514894957547 Gooby 1.0.0
|
808
|
-
// points.push(new GLatLng(35.178437,-80.835677)); // (786 of 1167.0) 2007-03-10T14:19:44Z 4632 01:17:12 8.97139818928706 Gooby 1.0.0
|
809
|
-
points.push(new GLatLng(35.178695,-80.835595)); // (787 of 1167.0) 2007-03-10T14:19:53Z 4641 01:17:21 8.98981495954449 Gooby 1.0.0
|
810
|
-
points.push(new GLatLng(35.178899,-80.835537)); // (788 of 1167.0) 2007-03-10T14:20:00Z 4648 01:17:28 9.0042847545564 9.0 00:08:53 Gooby 1.0.0
|
811
|
-
// points.push(new GLatLng(35.179127,-80.835487)); // (789 of 1167.0) 2007-03-10T14:20:08Z 4656 01:17:36 9.0202882387964 Gooby 1.0.0
|
812
|
-
// points.push(new GLatLng(35.179359,-80.835444)); // (790 of 1167.0) 2007-03-10T14:20:16Z 4664 01:17:44 9.03649996199016 Gooby 1.0.0
|
813
|
-
// points.push(new GLatLng(35.179592,-80.835401)); // (791 of 1167.0) 2007-03-10T14:20:24Z 4672 01:17:52 9.05278000759752 Gooby 1.0.0
|
814
|
-
// points.push(new GLatLng(35.179787,-80.835346)); // (792 of 1167.0) 2007-03-10T14:20:31Z 4679 01:17:59 9.06660593780766 Gooby 1.0.0
|
815
|
-
points.push(new GLatLng(35.17999,-80.835305)); // (793 of 1167.0) 2007-03-10T14:20:38Z 4686 01:18:06 9.08082112382185 Gooby 1.0.0
|
816
|
-
// points.push(new GLatLng(35.180161,-80.835261)); // (794 of 1167.0) 2007-03-10T14:20:44Z 4692 01:18:12 9.09289377771768 Gooby 1.0.0
|
817
|
-
// points.push(new GLatLng(35.180369,-80.83518)); // (795 of 1167.0) 2007-03-10T14:20:52Z 4700 01:18:20 9.10797479267178 Gooby 1.0.0
|
818
|
-
// points.push(new GLatLng(35.180519,-80.83515)); // (796 of 1167.0) 2007-03-10T14:20:57Z 4705 01:18:25 9.11847600919295 Gooby 1.0.0
|
819
|
-
// points.push(new GLatLng(35.18072,-80.835122)); // (797 of 1167.0) 2007-03-10T14:21:03Z 4711 01:18:31 9.13245286913537 Gooby 1.0.0
|
820
|
-
points.push(new GLatLng(35.180852,-80.83508)); // (798 of 1167.0) 2007-03-10T14:21:08Z 4716 01:18:36 9.14187606618621 Gooby 1.0.0
|
821
|
-
// points.push(new GLatLng(35.181015,-80.835017)); // (799 of 1167.0) 2007-03-10T14:21:15Z 4723 01:18:43 9.15368633318215 Gooby 1.0.0
|
822
|
-
// points.push(new GLatLng(35.181165,-80.83495)); // (800 of 1167.0) 2007-03-10T14:21:21Z 4729 01:18:49 9.16471899371764 Gooby 1.0.0
|
823
|
-
// points.push(new GLatLng(35.181317,-80.834876)); // (801 of 1167.0) 2007-03-10T14:21:27Z 4735 01:18:55 9.17602147482128 Gooby 1.0.0
|
824
|
-
// points.push(new GLatLng(35.181448,-80.834835)); // (802 of 1167.0) 2007-03-10T14:21:32Z 4740 01:19:00 9.18536364290681 Gooby 1.0.0
|
825
|
-
points.push(new GLatLng(35.181632,-80.834758)); // (803 of 1167.0) 2007-03-10T14:21:39Z 4747 01:19:07 9.19879926938355 Gooby 1.0.0
|
826
|
-
// points.push(new GLatLng(35.181851,-80.83469)); // (804 of 1167.0) 2007-03-10T14:21:47Z 4755 01:19:15 9.21440972232168 Gooby 1.0.0
|
827
|
-
// points.push(new GLatLng(35.182025,-80.83464)); // (805 of 1167.0) 2007-03-10T14:21:53Z 4761 01:19:21 9.22675835579305 Gooby 1.0.0
|
828
|
-
// points.push(new GLatLng(35.182176,-80.834586)); // (806 of 1167.0) 2007-03-10T14:21:59Z 4767 01:19:27 9.23762722150958 Gooby 1.0.0
|
829
|
-
// points.push(new GLatLng(35.182344,-80.834535)); // (807 of 1167.0) 2007-03-10T14:22:05Z 4773 01:19:33 9.24958607141944 Gooby 1.0.0
|
830
|
-
points.push(new GLatLng(35.182503,-80.834483)); // (808 of 1167.0) 2007-03-10T14:22:11Z 4779 01:19:39 9.26095699630043 Gooby 1.0.0
|
831
|
-
// points.push(new GLatLng(35.182693,-80.834416)); // (809 of 1167.0) 2007-03-10T14:22:18Z 4786 01:19:46 9.27461836542027 Gooby 1.0.0
|
832
|
-
// points.push(new GLatLng(35.182866,-80.834349)); // (810 of 1167.0) 2007-03-10T14:22:25Z 4793 01:19:53 9.28715561327132 Gooby 1.0.0
|
833
|
-
// points.push(new GLatLng(35.183039,-80.834287)); // (811 of 1167.0) 2007-03-10T14:22:31Z 4799 01:19:59 9.29961044061884 Gooby 1.0.0
|
834
|
-
// points.push(new GLatLng(35.18322,-80.834217)); // (812 of 1167.0) 2007-03-10T14:22:38Z 4806 01:20:06 9.31272551670466 Gooby 1.0.0
|
835
|
-
points.push(new GLatLng(35.183365,-80.834182)); // (813 of 1167.0) 2007-03-10T14:22:44Z 4812 01:20:12 9.32293661190934 Gooby 1.0.0
|
836
|
-
// points.push(new GLatLng(35.183501,-80.834147)); // (814 of 1167.0) 2007-03-10T14:22:49Z 4817 01:20:17 9.3325383110877 Gooby 1.0.0
|
837
|
-
// points.push(new GLatLng(35.183631,-80.834092)); // (815 of 1167.0) 2007-03-10T14:22:54Z 4822 01:20:22 9.34204166319564 Gooby 1.0.0
|
838
|
-
// points.push(new GLatLng(35.183751,-80.834059)); // (816 of 1167.0) 2007-03-10T14:22:58Z 4826 01:20:26 9.3505390994872 Gooby 1.0.0
|
839
|
-
// points.push(new GLatLng(35.183923,-80.834007)); // (817 of 1167.0) 2007-03-10T14:23:04Z 4832 01:20:32 9.36278004940928 Gooby 1.0.0
|
840
|
-
points.push(new GLatLng(35.1841,-80.833906)); // (818 of 1167.0) 2007-03-10T14:23:11Z 4839 01:20:39 9.37627356160434 Gooby 1.0.0
|
841
|
-
// points.push(new GLatLng(35.184238,-80.833817)); // (819 of 1167.0) 2007-03-10T14:23:16Z 4844 01:20:44 9.38705161007486 Gooby 1.0.0
|
842
|
-
// points.push(new GLatLng(35.184366,-80.833645)); // (820 of 1167.0) 2007-03-10T14:23:23Z 4851 01:20:51 9.40018709874282 Gooby 1.0.0
|
843
|
-
// points.push(new GLatLng(35.18449,-80.833493)); // (821 of 1167.0) 2007-03-10T14:23:29Z 4857 01:20:57 9.4123141025016 Gooby 1.0.0
|
844
|
-
// points.push(new GLatLng(35.18462,-80.833353)); // (822 of 1167.0) 2007-03-10T14:23:35Z 4863 01:21:03 9.42427935171866 Gooby 1.0.0
|
845
|
-
points.push(new GLatLng(35.184727,-80.833216)); // (823 of 1167.0) 2007-03-10T14:23:41Z 4869 01:21:09 9.43497964015144 Gooby 1.0.0
|
846
|
-
// points.push(new GLatLng(35.184872,-80.833075)); // (824 of 1167.0) 2007-03-10T14:23:47Z 4875 01:21:15 9.44777619691797 Gooby 1.0.0
|
847
|
-
// points.push(new GLatLng(35.185029,-80.83296)); // (825 of 1167.0) 2007-03-10T14:23:53Z 4881 01:21:21 9.46041846719675 Gooby 1.0.0
|
848
|
-
// points.push(new GLatLng(35.18512,-80.832867)); // (826 of 1167.0) 2007-03-10T14:23:57Z 4885 01:21:25 9.46860983636684 Gooby 1.0.0
|
849
|
-
// points.push(new GLatLng(35.185208,-80.83275)); // (827 of 1167.0) 2007-03-10T14:24:02Z 4890 01:21:30 9.47758830376649 Gooby 1.0.0
|
850
|
-
points.push(new GLatLng(35.185296,-80.832669)); // (828 of 1167.0) 2007-03-10T14:24:06Z 4894 01:21:34 9.48519651205473 Gooby 1.0.0
|
851
|
-
// points.push(new GLatLng(35.185411,-80.832544)); // (829 of 1167.0) 2007-03-10T14:24:12Z 4900 01:21:40 9.49582436592924 Gooby 1.0.0
|
852
|
-
// points.push(new GLatLng(35.185506,-80.832406)); // (830 of 1167.0) 2007-03-10T14:24:18Z 4906 01:21:46 9.5060126048995 Gooby 1.0.0
|
853
|
-
// points.push(new GLatLng(35.185646,-80.832272)); // (831 of 1167.0) 2007-03-10T14:24:24Z 4912 01:21:52 9.51829300203661 Gooby 1.0.0
|
854
|
-
// points.push(new GLatLng(35.185772,-80.832137)); // (832 of 1167.0) 2007-03-10T14:24:30Z 4918 01:21:58 9.52986412395464 Gooby 1.0.0
|
855
|
-
points.push(new GLatLng(35.185905,-80.832017)); // (833 of 1167.0) 2007-03-10T14:24:36Z 4924 01:22:04 9.54128131357408 Gooby 1.0.0
|
856
|
-
// points.push(new GLatLng(35.186045,-80.831931)); // (834 of 1167.0) 2007-03-10T14:24:42Z 4930 01:22:10 9.55210430332625 Gooby 1.0.0
|
857
|
-
// points.push(new GLatLng(35.186129,-80.83199)); // (835 of 1167.0) 2007-03-10T14:24:46Z 4934 01:22:14 9.55879564896777 Gooby 1.0.0
|
858
|
-
// points.push(new GLatLng(35.18621,-80.832122)); // (836 of 1167.0) 2007-03-10T14:24:51Z 4939 01:22:19 9.56811637656424 Gooby 1.0.0
|
859
|
-
// points.push(new GLatLng(35.186314,-80.832327)); // (837 of 1167.0) 2007-03-10T14:24:58Z 4946 01:22:26 9.58174076475126 Gooby 1.0.0
|
860
|
-
points.push(new GLatLng(35.186439,-80.832436)); // (838 of 1167.0) 2007-03-10T14:25:04Z 4952 01:22:32 9.59234584035461 Gooby 1.0.0
|
861
|
-
// points.push(new GLatLng(35.186521,-80.832558)); // (839 of 1167.0) 2007-03-10T14:25:09Z 4957 01:22:37 9.60126501249697 Gooby 1.0.0
|
862
|
-
// points.push(new GLatLng(35.186609,-80.832671)); // (840 of 1167.0) 2007-03-10T14:25:14Z 4962 01:22:42 9.61007842190384 Gooby 1.0.0
|
863
|
-
// points.push(new GLatLng(35.186701,-80.832796)); // (841 of 1167.0) 2007-03-10T14:25:19Z 4967 01:22:47 9.61957682992815 Gooby 1.0.0
|
864
|
-
// points.push(new GLatLng(35.186804,-80.832935)); // (842 of 1167.0) 2007-03-10T14:25:24Z 4972 01:22:52 9.63017140122895 Gooby 1.0.0
|
865
|
-
points.push(new GLatLng(35.186873,-80.833089)); // (843 of 1167.0) 2007-03-10T14:25:29Z 4977 01:22:57 9.6400879233237 Gooby 1.0.0
|
866
|
-
// points.push(new GLatLng(35.186871,-80.833153)); // (844 of 1167.0) 2007-03-10T14:25:31Z 4979 01:22:59 9.64370398913341 Gooby 1.0.0
|
867
|
-
// points.push(new GLatLng(35.186731,-80.833319)); // (845 of 1167.0) 2007-03-10T14:25:38Z 4986 01:23:06 9.6571729819624 Gooby 1.0.0
|
868
|
-
// points.push(new GLatLng(35.186643,-80.833442)); // (846 of 1167.0) 2007-03-10T14:25:43Z 4991 01:23:11 9.66640330414826 Gooby 1.0.0
|
869
|
-
// points.push(new GLatLng(35.18652,-80.83357)); // (847 of 1167.0) 2007-03-10T14:25:49Z 4997 01:23:17 9.67755922093772 Gooby 1.0.0
|
870
|
-
points.push(new GLatLng(35.186325,-80.833753)); // (848 of 1167.0) 2007-03-10T14:25:57Z 5005 01:23:25 9.69453832139408 Gooby 1.0.0
|
871
|
-
// points.push(new GLatLng(35.186207,-80.833898)); // (849 of 1167.0) 2007-03-10T14:26:03Z 5011 01:23:31 9.70609259157042 Gooby 1.0.0
|
872
|
-
// points.push(new GLatLng(35.186071,-80.834053)); // (850 of 1167.0) 2007-03-10T14:26:10Z 5018 01:23:38 9.71893366389881 Gooby 1.0.0
|
873
|
-
// points.push(new GLatLng(35.185937,-80.834198)); // (851 of 1167.0) 2007-03-10T14:26:16Z 5024 01:23:44 9.73129300004694 Gooby 1.0.0
|
874
|
-
// points.push(new GLatLng(35.185808,-80.834354)); // (852 of 1167.0) 2007-03-10T14:26:22Z 5030 01:23:50 9.74382386302737 Gooby 1.0.0
|
875
|
-
points.push(new GLatLng(35.185682,-80.834499)); // (853 of 1167.0) 2007-03-10T14:26:28Z 5036 01:23:56 9.75577456340851 Gooby 1.0.0
|
876
|
-
// points.push(new GLatLng(35.185557,-80.834657)); // (854 of 1167.0) 2007-03-10T14:26:34Z 5042 01:24:02 9.7681914785589 Gooby 1.0.0
|
877
|
-
// points.push(new GLatLng(35.185408,-80.834821)); // (855 of 1167.0) 2007-03-10T14:26:41Z 5049 01:24:09 9.78203802985904 Gooby 1.0.0
|
878
|
-
// points.push(new GLatLng(35.185261,-80.83501)); // (856 of 1167.0) 2007-03-10T14:26:49Z 5057 01:24:17 9.79677043525136 Gooby 1.0.0
|
879
|
-
// points.push(new GLatLng(35.185172,-80.835125)); // (857 of 1167.0) 2007-03-10T14:26:54Z 5062 01:24:22 9.80571337267492 Gooby 1.0.0
|
880
|
-
points.push(new GLatLng(35.185011,-80.835311)); // (858 of 1167.0) 2007-03-10T14:27:02Z 5070 01:24:30 9.82101188789246 Gooby 1.0.0
|
881
|
-
// points.push(new GLatLng(35.184909,-80.835414)); // (859 of 1167.0) 2007-03-10T14:27:07Z 5075 01:24:35 9.83014900655532 Gooby 1.0.0
|
882
|
-
// points.push(new GLatLng(35.18475,-80.8355)); // (860 of 1167.0) 2007-03-10T14:27:13Z 5081 01:24:41 9.84215982457069 Gooby 1.0.0
|
883
|
-
// points.push(new GLatLng(35.184586,-80.835548)); // (861 of 1167.0) 2007-03-10T14:27:19Z 5087 01:24:47 9.85381036075336 Gooby 1.0.0
|
884
|
-
// points.push(new GLatLng(35.184409,-80.835584)); // (862 of 1167.0) 2007-03-10T14:27:26Z 5094 01:24:54 9.86620722384278 Gooby 1.0.0
|
885
|
-
points.push(new GLatLng(35.184311,-80.835601)); // (863 of 1167.0) 2007-03-10T14:27:30Z 5098 01:24:58 9.87304567221 Gooby 1.0.0
|
886
|
-
// points.push(new GLatLng(35.184162,-80.835656)); // (864 of 1167.0) 2007-03-10T14:27:36Z 5104 01:25:04 9.8837985103488 Gooby 1.0.0
|
887
|
-
// points.push(new GLatLng(35.183958,-80.835704)); // (865 of 1167.0) 2007-03-10T14:27:43Z 5111 01:25:11 9.8981510843582 Gooby 1.0.0
|
888
|
-
// points.push(new GLatLng(35.183839,-80.835732)); // (866 of 1167.0) 2007-03-10T14:27:47Z 5115 01:25:15 9.90652353030995 Gooby 1.0.0
|
889
|
-
// points.push(new GLatLng(35.183702,-80.835782)); // (867 of 1167.0) 2007-03-10T14:27:52Z 5120 01:25:20 9.91640102812936 Gooby 1.0.0
|
890
|
-
points.push(new GLatLng(35.18354,-80.835826)); // (868 of 1167.0) 2007-03-10T14:27:58Z 5126 01:25:26 9.92786611682812 Gooby 1.0.0
|
891
|
-
// points.push(new GLatLng(35.18337,-80.835874)); // (869 of 1167.0) 2007-03-10T14:28:04Z 5132 01:25:32 9.93992031099772 Gooby 1.0.0
|
892
|
-
// points.push(new GLatLng(35.183205,-80.835926)); // (870 of 1167.0) 2007-03-10T14:28:10Z 5138 01:25:38 9.95169236341088 Gooby 1.0.0
|
893
|
-
// points.push(new GLatLng(35.182972,-80.835963)); // (871 of 1167.0) 2007-03-10T14:28:18Z 5146 01:25:46 9.96792553523171 Gooby 1.0.0
|
894
|
-
// points.push(new GLatLng(35.182836,-80.835976)); // (872 of 1167.0) 2007-03-10T14:28:23Z 5151 01:25:51 9.97735057833939 Gooby 1.0.0
|
895
|
-
points.push(new GLatLng(35.182624,-80.836041)); // (873 of 1167.0) 2007-03-10T14:28:31Z 5159 01:25:59 9.99245061569928 Gooby 1.0.0
|
896
|
-
points.push(new GLatLng(35.182462,-80.836097)); // (874 of 1167.0) 2007-03-10T14:28:37Z 5165 01:26:05 10.0040814239414 10.0 00:08:37 Gooby 1.0.0
|
897
|
-
// points.push(new GLatLng(35.18229,-80.836138)); // (875 of 1167.0) 2007-03-10T14:28:43Z 5171 01:26:11 10.0161883265695 Gooby 1.0.0
|
898
|
-
// points.push(new GLatLng(35.18212,-80.836187)); // (876 of 1167.0) 2007-03-10T14:28:49Z 5177 01:26:17 10.0282552148345 Gooby 1.0.0
|
899
|
-
// points.push(new GLatLng(35.181927,-80.836225)); // (877 of 1167.0) 2007-03-10T14:28:56Z 5184 01:26:24 10.0417610988343 Gooby 1.0.0
|
900
|
-
// points.push(new GLatLng(35.181797,-80.836258)); // (878 of 1167.0) 2007-03-10T14:29:01Z 5189 01:26:29 10.0509339436496 Gooby 1.0.0
|
901
|
-
points.push(new GLatLng(35.18163,-80.836318)); // (879 of 1167.0) 2007-03-10T14:29:07Z 5195 01:26:35 10.0629592377676 Gooby 1.0.0
|
902
|
-
// points.push(new GLatLng(35.181547,-80.83633)); // (880 of 1167.0) 2007-03-10T14:29:10Z 5198 01:26:38 10.068733963206 Gooby 1.0.0
|
903
|
-
// points.push(new GLatLng(35.181379,-80.836391)); // (881 of 1167.0) 2007-03-10T14:29:16Z 5204 01:26:44 10.0808414406153 Gooby 1.0.0
|
904
|
-
// points.push(new GLatLng(35.18131,-80.836533)); // (882 of 1167.0) 2007-03-10T14:29:20Z 5208 01:26:48 10.0901700043634 Gooby 1.0.0
|
905
|
-
// points.push(new GLatLng(35.181309,-80.83669)); // (883 of 1167.0) 2007-03-10T14:29:24Z 5212 01:26:52 10.0990361585072 Gooby 1.0.0
|
906
|
-
points.push(new GLatLng(35.181321,-80.836836)); // (884 of 1167.0) 2007-03-10T14:29:28Z 5216 01:26:56 10.1073221310763 Gooby 1.0.0
|
907
|
-
// points.push(new GLatLng(35.18135,-80.837039)); // (885 of 1167.0) 2007-03-10T14:29:34Z 5222 01:27:02 10.1189593695173 Gooby 1.0.0
|
908
|
-
// points.push(new GLatLng(35.181416,-80.837322)); // (886 of 1167.0) 2007-03-10T14:29:42Z 5230 01:27:10 10.1355780704056 Gooby 1.0.0
|
909
|
-
// points.push(new GLatLng(35.181489,-80.837548)); // (887 of 1167.0) 2007-03-10T14:29:49Z 5237 01:27:17 10.149300683914 Gooby 1.0.0
|
910
|
-
// points.push(new GLatLng(35.181551,-80.837735)); // (888 of 1167.0) 2007-03-10T14:29:55Z 5243 01:27:23 10.1606959097529 Gooby 1.0.0
|
911
|
-
points.push(new GLatLng(35.181628,-80.837909)); // (889 of 1167.0) 2007-03-10T14:30:01Z 5249 01:27:29 10.1718692790992 Gooby 1.0.0
|
912
|
-
// points.push(new GLatLng(35.181694,-80.838119)); // (890 of 1167.0) 2007-03-10T14:30:07Z 5255 01:27:35 10.1845745569298 Gooby 1.0.0
|
913
|
-
// points.push(new GLatLng(35.181803,-80.838328)); // (891 of 1167.0) 2007-03-10T14:30:14Z 5262 01:27:42 10.198574674033 Gooby 1.0.0
|
914
|
-
// points.push(new GLatLng(35.181917,-80.838446)); // (892 of 1167.0) 2007-03-10T14:30:20Z 5268 01:27:48 10.208891537338 Gooby 1.0.0
|
915
|
-
// points.push(new GLatLng(35.181981,-80.838571)); // (893 of 1167.0) 2007-03-10T14:30:25Z 5273 01:27:53 10.2172208588179 Gooby 1.0.0
|
916
|
-
points.push(new GLatLng(35.182077,-80.838735)); // (894 of 1167.0) 2007-03-10T14:30:31Z 5279 01:27:59 10.2286119617332 Gooby 1.0.0
|
917
|
-
// points.push(new GLatLng(35.182188,-80.838906)); // (895 of 1167.0) 2007-03-10T14:30:37Z 5285 01:28:05 10.240942971914 Gooby 1.0.0
|
918
|
-
// points.push(new GLatLng(35.182349,-80.839041)); // (896 of 1167.0) 2007-03-10T14:30:44Z 5292 01:28:12 10.2544279719091 Gooby 1.0.0
|
919
|
-
// points.push(new GLatLng(35.182485,-80.839147)); // (897 of 1167.0) 2007-03-10T14:30:49Z 5297 01:28:17 10.2655685952835 Gooby 1.0.0
|
920
|
-
// points.push(new GLatLng(35.182592,-80.839266)); // (898 of 1167.0) 2007-03-10T14:30:54Z 5302 01:28:22 10.2755585300785 Gooby 1.0.0
|
921
|
-
points.push(new GLatLng(35.182713,-80.839376)); // (899 of 1167.0) 2007-03-10T14:30:59Z 5307 01:28:27 10.2859732414257 Gooby 1.0.0
|
922
|
-
// points.push(new GLatLng(35.182899,-80.839508)); // (900 of 1167.0) 2007-03-10T14:31:06Z 5314 01:28:34 10.3008291236117 Gooby 1.0.0
|
923
|
-
// points.push(new GLatLng(35.183087,-80.839612)); // (901 of 1167.0) 2007-03-10T14:31:13Z 5321 01:28:41 10.3150840297287 Gooby 1.0.0
|
924
|
-
// points.push(new GLatLng(35.183216,-80.839691)); // (902 of 1167.0) 2007-03-10T14:31:18Z 5326 01:28:46 10.3250506011173 Gooby 1.0.0
|
925
|
-
// points.push(new GLatLng(35.183412,-80.839803)); // (903 of 1167.0) 2007-03-10T14:31:26Z 5334 01:28:54 10.339996384622 Gooby 1.0.0
|
926
|
-
points.push(new GLatLng(35.183565,-80.839886)); // (904 of 1167.0) 2007-03-10T14:31:32Z 5340 01:29:00 10.3515595351163 Gooby 1.0.0
|
927
|
-
// points.push(new GLatLng(35.183698,-80.839954)); // (905 of 1167.0) 2007-03-10T14:31:37Z 5345 01:29:05 10.3615185976764 Gooby 1.0.0
|
928
|
-
// points.push(new GLatLng(35.183857,-80.839992)); // (906 of 1167.0) 2007-03-10T14:31:43Z 5351 01:29:11 10.3727114131882 Gooby 1.0.0
|
929
|
-
// points.push(new GLatLng(35.184007,-80.840025)); // (907 of 1167.0) 2007-03-10T14:31:49Z 5357 01:29:17 10.3832409213249 Gooby 1.0.0
|
930
|
-
// points.push(new GLatLng(35.184161,-80.840078)); // (908 of 1167.0) 2007-03-10T14:31:55Z 5363 01:29:23 10.3942934330086 Gooby 1.0.0
|
931
|
-
points.push(new GLatLng(35.184341,-80.840126)); // (909 of 1167.0) 2007-03-10T14:32:02Z 5370 01:29:30 10.4070215577707 Gooby 1.0.0
|
932
|
-
// points.push(new GLatLng(35.184506,-80.840162)); // (910 of 1167.0) 2007-03-10T14:32:08Z 5376 01:29:36 10.4186012466051 Gooby 1.0.0
|
933
|
-
// points.push(new GLatLng(35.184653,-80.840192)); // (911 of 1167.0) 2007-03-10T14:32:13Z 5381 01:29:41 10.4288976853045 Gooby 1.0.0
|
934
|
-
// points.push(new GLatLng(35.184789,-80.84022)); // (912 of 1167.0) 2007-03-10T14:32:18Z 5386 01:29:46 10.4384262671098 Gooby 1.0.0
|
935
|
-
// points.push(new GLatLng(35.185014,-80.840274)); // (913 of 1167.0) 2007-03-10T14:32:25Z 5393 01:29:53 10.454267713407 Gooby 1.0.0
|
936
|
-
points.push(new GLatLng(35.185163,-80.840272)); // (914 of 1167.0) 2007-03-10T14:32:30Z 5398 01:29:58 10.4645626313017 Gooby 1.0.0
|
937
|
-
// points.push(new GLatLng(35.185329,-80.840264)); // (915 of 1167.0) 2007-03-10T14:32:36Z 5404 01:30:04 10.4760404593288 Gooby 1.0.0
|
938
|
-
// points.push(new GLatLng(35.185512,-80.840257)); // (916 of 1167.0) 2007-03-10T14:32:42Z 5410 01:30:10 10.4886901585499 Gooby 1.0.0
|
939
|
-
// points.push(new GLatLng(35.185708,-80.84026)); // (917 of 1167.0) 2007-03-10T14:32:48Z 5416 01:30:16 10.5022328332268 Gooby 1.0.0
|
940
|
-
// points.push(new GLatLng(35.185888,-80.840267)); // (918 of 1167.0) 2007-03-10T14:32:54Z 5422 01:30:22 10.5146753622679 Gooby 1.0.0
|
941
|
-
points.push(new GLatLng(35.186057,-80.84025)); // (919 of 1167.0) 2007-03-10T14:33:00Z 5428 01:30:28 10.5263911213537 Gooby 1.0.0
|
942
|
-
// points.push(new GLatLng(35.186224,-80.840223)); // (920 of 1167.0) 2007-03-10T14:33:06Z 5434 01:30:34 10.5380295557187 Gooby 1.0.0
|
943
|
-
// points.push(new GLatLng(35.186403,-80.840196)); // (921 of 1167.0) 2007-03-10T14:33:13Z 5441 01:30:41 10.5504902484335 Gooby 1.0.0
|
944
|
-
// points.push(new GLatLng(35.186599,-80.840183)); // (922 of 1167.0) 2007-03-10T14:33:20Z 5448 01:30:48 10.5640516658843 Gooby 1.0.0
|
945
|
-
// points.push(new GLatLng(35.18682,-80.840117)); // (923 of 1167.0) 2007-03-10T14:33:28Z 5456 01:30:56 10.5797688549779 Gooby 1.0.0
|
946
|
-
points.push(new GLatLng(35.186988,-80.840058)); // (924 of 1167.0) 2007-03-10T14:33:35Z 5463 01:31:03 10.5918446787973 Gooby 1.0.0
|
947
|
-
// points.push(new GLatLng(35.187129,-80.839997)); // (925 of 1167.0) 2007-03-10T14:33:41Z 5469 01:31:09 10.6021775496578 Gooby 1.0.0
|
948
|
-
// points.push(new GLatLng(35.187301,-80.839957)); // (926 of 1167.0) 2007-03-10T14:33:47Z 5475 01:31:15 10.6142738139084 Gooby 1.0.0
|
949
|
-
// points.push(new GLatLng(35.187497,-80.839885)); // (927 of 1167.0) 2007-03-10T14:33:54Z 5482 01:31:22 10.6284124245277 Gooby 1.0.0
|
950
|
-
// points.push(new GLatLng(35.18763,-80.839812)); // (928 of 1167.0) 2007-03-10T14:34:00Z 5488 01:31:28 10.6384833589479 Gooby 1.0.0
|
951
|
-
points.push(new GLatLng(35.187813,-80.839726)); // (929 of 1167.0) 2007-03-10T14:34:07Z 5495 01:31:35 10.6520270612978 Gooby 1.0.0
|
952
|
-
// points.push(new GLatLng(35.187965,-80.83966)); // (930 of 1167.0) 2007-03-10T14:34:13Z 5501 01:31:41 10.6631704952403 Gooby 1.0.0
|
953
|
-
// points.push(new GLatLng(35.188092,-80.839593)); // (931 of 1167.0) 2007-03-10T14:34:19Z 5507 01:31:47 10.6727255147379 Gooby 1.0.0
|
954
|
-
// points.push(new GLatLng(35.188257,-80.839489)); // (932 of 1167.0) 2007-03-10T14:34:26Z 5514 01:31:54 10.6855489621897 Gooby 1.0.0
|
955
|
-
// points.push(new GLatLng(35.188417,-80.839408)); // (933 of 1167.0) 2007-03-10T14:34:32Z 5520 01:32:00 10.6975121756349 Gooby 1.0.0
|
956
|
-
points.push(new GLatLng(35.18855,-80.839352)); // (934 of 1167.0) 2007-03-10T14:34:37Z 5525 01:32:05 10.7072298615802 Gooby 1.0.0
|
957
|
-
// points.push(new GLatLng(35.188677,-80.839276)); // (935 of 1167.0) 2007-03-10T14:34:42Z 5530 01:32:10 10.7169975469747 Gooby 1.0.0
|
958
|
-
// points.push(new GLatLng(35.18881,-80.839195)); // (936 of 1167.0) 2007-03-10T14:34:47Z 5535 01:32:15 10.7272618319648 Gooby 1.0.0
|
959
|
-
// points.push(new GLatLng(35.188942,-80.839106)); // (937 of 1167.0) 2007-03-10T14:34:53Z 5541 01:32:21 10.7376747056331 Gooby 1.0.0
|
960
|
-
// points.push(new GLatLng(35.189082,-80.839021)); // (938 of 1167.0) 2007-03-10T14:34:59Z 5547 01:32:27 10.7484725899806 Gooby 1.0.0
|
961
|
-
points.push(new GLatLng(35.189204,-80.838952)); // (939 of 1167.0) 2007-03-10T14:35:04Z 5552 01:32:32 10.7577583477781 Gooby 1.0.0
|
962
|
-
// points.push(new GLatLng(35.189348,-80.838865)); // (940 of 1167.0) 2007-03-10T14:35:10Z 5558 01:32:38 10.7688539052403 Gooby 1.0.0
|
963
|
-
// points.push(new GLatLng(35.189524,-80.838786)); // (941 of 1167.0) 2007-03-10T14:35:16Z 5564 01:32:44 10.7818061343987 Gooby 1.0.0
|
964
|
-
// points.push(new GLatLng(35.189659,-80.838692)); // (942 of 1167.0) 2007-03-10T14:35:22Z 5570 01:32:50 10.7925375944606 Gooby 1.0.0
|
965
|
-
// points.push(new GLatLng(35.189784,-80.838633)); // (943 of 1167.0) 2007-03-10T14:35:27Z 5575 01:32:55 10.8017938905658 Gooby 1.0.0
|
966
|
-
points.push(new GLatLng(35.189972,-80.838507)); // (944 of 1167.0) 2007-03-10T14:35:35Z 5583 01:33:03 10.8166036777035 Gooby 1.0.0
|
967
|
-
// points.push(new GLatLng(35.190104,-80.838441)); // (945 of 1167.0) 2007-03-10T14:35:40Z 5588 01:33:08 10.8264557798287 Gooby 1.0.0
|
968
|
-
// points.push(new GLatLng(35.19023,-80.838361)); // (946 of 1167.0) 2007-03-10T14:35:45Z 5593 01:33:13 10.8362634586431 Gooby 1.0.0
|
969
|
-
// points.push(new GLatLng(35.190372,-80.838271)); // (947 of 1167.0) 2007-03-10T14:35:51Z 5599 01:33:19 10.8473123493655 Gooby 1.0.0
|
970
|
-
// points.push(new GLatLng(35.190459,-80.838225)); // (948 of 1167.0) 2007-03-10T14:35:55Z 5603 01:33:23 10.8538601966237 Gooby 1.0.0
|
971
|
-
points.push(new GLatLng(35.190608,-80.838131)); // (949 of 1167.0) 2007-03-10T14:36:01Z 5609 01:33:29 10.8654421388565 Gooby 1.0.0
|
972
|
-
// points.push(new GLatLng(35.190739,-80.838034)); // (950 of 1167.0) 2007-03-10T14:36:06Z 5614 01:33:34 10.8760209341466 Gooby 1.0.0
|
973
|
-
// points.push(new GLatLng(35.190896,-80.837906)); // (951 of 1167.0) 2007-03-10T14:36:13Z 5621 01:33:41 10.8890551080536 Gooby 1.0.0
|
974
|
-
// points.push(new GLatLng(35.191029,-80.837823)); // (952 of 1167.0) 2007-03-10T14:36:18Z 5626 01:33:46 10.8993699475845 Gooby 1.0.0
|
975
|
-
// points.push(new GLatLng(35.191213,-80.8377)); // (953 of 1167.0) 2007-03-10T14:36:25Z 5633 01:33:53 10.9138558448522 Gooby 1.0.0
|
976
|
-
points.push(new GLatLng(35.191363,-80.837602)); // (954 of 1167.0) 2007-03-10T14:36:31Z 5639 01:33:59 10.9256039315164 Gooby 1.0.0
|
977
|
-
// points.push(new GLatLng(35.191528,-80.837481)); // (955 of 1167.0) 2007-03-10T14:36:38Z 5646 01:34:06 10.9388942642983 Gooby 1.0.0
|
978
|
-
// points.push(new GLatLng(35.191705,-80.837354)); // (956 of 1167.0) 2007-03-10T14:36:45Z 5653 01:34:13 10.953070600721 Gooby 1.0.0
|
979
|
-
// points.push(new GLatLng(35.191859,-80.837295)); // (957 of 1167.0) 2007-03-10T14:36:51Z 5659 01:34:19 10.9642198097174 Gooby 1.0.0
|
980
|
-
// points.push(new GLatLng(35.192047,-80.837188)); // (958 of 1167.0) 2007-03-10T14:36:58Z 5666 01:34:26 10.9785450844071 Gooby 1.0.0
|
981
|
-
points.push(new GLatLng(35.192243,-80.837111)); // (959 of 1167.0) 2007-03-10T14:37:05Z 5673 01:34:33 10.9927673670639 Gooby 1.0.0
|
982
|
-
points.push(new GLatLng(35.19239,-80.837008)); // (960 of 1167.0) 2007-03-10T14:37:11Z 5679 01:34:39 11.0044706458184 11.0 00:08:34 Gooby 1.0.0
|
983
|
-
// points.push(new GLatLng(35.192486,-80.836952)); // (961 of 1167.0) 2007-03-10T14:37:15Z 5683 01:34:43 11.0118182850323 Gooby 1.0.0
|
984
|
-
// points.push(new GLatLng(35.192658,-80.836858)); // (962 of 1167.0) 2007-03-10T14:37:22Z 5690 01:34:50 11.0248332242389 Gooby 1.0.0
|
985
|
-
// points.push(new GLatLng(35.192806,-80.836801)); // (963 of 1167.0) 2007-03-10T14:37:27Z 5695 01:34:55 11.0355531678539 Gooby 1.0.0
|
986
|
-
// points.push(new GLatLng(35.192978,-80.836782)); // (964 of 1167.0) 2007-03-10T14:37:33Z 5701 01:35:01 11.0474849282272 Gooby 1.0.0
|
987
|
-
points.push(new GLatLng(35.193137,-80.836789)); // (965 of 1167.0) 2007-03-10T14:37:38Z 5706 01:35:06 11.0584773041288 Gooby 1.0.0
|
988
|
-
// points.push(new GLatLng(35.193254,-80.836797)); // (966 of 1167.0) 2007-03-10T14:37:43Z 5711 01:35:11 11.0665733942549 Gooby 1.0.0
|
989
|
-
// points.push(new GLatLng(35.193379,-80.836802)); // (967 of 1167.0) 2007-03-10T14:37:48Z 5716 01:35:16 11.0752141665045 Gooby 1.0.0
|
990
|
-
// points.push(new GLatLng(35.19354,-80.83682)); // (968 of 1167.0) 2007-03-10T14:37:54Z 5722 01:35:22 11.0863837983128 Gooby 1.0.0
|
991
|
-
// points.push(new GLatLng(35.193771,-80.836847)); // (969 of 1167.0) 2007-03-10T14:38:02Z 5730 01:35:30 11.102416173457 Gooby 1.0.0
|
992
|
-
points.push(new GLatLng(35.193932,-80.836857)); // (970 of 1167.0) 2007-03-10T14:38:07Z 5735 01:35:35 11.1135536731461 Gooby 1.0.0
|
993
|
-
// points.push(new GLatLng(35.19414,-80.836858)); // (971 of 1167.0) 2007-03-10T14:38:14Z 5742 01:35:42 11.1279244178915 Gooby 1.0.0
|
994
|
-
// points.push(new GLatLng(35.194305,-80.836875)); // (972 of 1167.0) 2007-03-10T14:38:20Z 5748 01:35:48 11.1393645936829 Gooby 1.0.0
|
995
|
-
// points.push(new GLatLng(35.19445,-80.836865)); // (973 of 1167.0) 2007-03-10T14:38:25Z 5753 01:35:53 11.1493983182784 Gooby 1.0.0
|
996
|
-
// points.push(new GLatLng(35.194601,-80.836833)); // (974 of 1167.0) 2007-03-10T14:38:30Z 5758 01:35:58 11.1599861547838 Gooby 1.0.0
|
997
|
-
points.push(new GLatLng(35.194722,-80.83668)); // (975 of 1167.0) 2007-03-10T14:38:36Z 5764 01:36:04 11.1720073973503 Gooby 1.0.0
|
998
|
-
// points.push(new GLatLng(35.194759,-80.836548)); // (976 of 1167.0) 2007-03-10T14:38:40Z 5768 01:36:08 11.1798865534619 Gooby 1.0.0
|
999
|
-
// points.push(new GLatLng(35.194791,-80.836358)); // (977 of 1167.0) 2007-03-10T14:38:45Z 5773 01:36:13 11.1908394496263 Gooby 1.0.0
|
1000
|
-
// points.push(new GLatLng(35.194815,-80.836151)); // (978 of 1167.0) 2007-03-10T14:38:51Z 5779 01:36:19 11.2026438228339 Gooby 1.0.0
|
1001
|
-
// points.push(new GLatLng(35.194859,-80.835926)); // (979 of 1167.0) 2007-03-10T14:38:58Z 5786 01:36:26 11.215705996574 Gooby 1.0.0
|
1002
|
-
points.push(new GLatLng(35.194877,-80.835767)); // (980 of 1167.0) 2007-03-10T14:39:03Z 5791 01:36:31 11.2247687453274 Gooby 1.0.0
|
1003
|
-
// points.push(new GLatLng(35.194931,-80.835529)); // (981 of 1167.0) 2007-03-10T14:39:10Z 5798 01:36:38 11.2387144522217 Gooby 1.0.0
|
1004
|
-
// points.push(new GLatLng(35.194977,-80.835323)); // (982 of 1167.0) 2007-03-10T14:39:17Z 5805 01:36:45 11.2507715325865 Gooby 1.0.0
|
1005
|
-
// points.push(new GLatLng(35.194998,-80.835228)); // (983 of 1167.0) 2007-03-10T14:39:20Z 5808 01:36:48 11.2563276153248 Gooby 1.0.0
|
1006
|
-
// points.push(new GLatLng(35.195051,-80.835048)); // (984 of 1167.0) 2007-03-10T14:39:26Z 5814 01:36:54 11.2671298490139 Gooby 1.0.0
|
1007
|
-
points.push(new GLatLng(35.195103,-80.834901)); // (985 of 1167.0) 2007-03-10T14:39:31Z 5819 01:36:59 11.2761735730937 Gooby 1.0.0
|
1008
|
-
// points.push(new GLatLng(35.195142,-80.834718)); // (986 of 1167.0) 2007-03-10T14:39:37Z 5825 01:37:05 11.2868514007104 Gooby 1.0.0
|
1009
|
-
// points.push(new GLatLng(35.195185,-80.834527)); // (987 of 1167.0) 2007-03-10T14:39:43Z 5831 01:37:11 11.29803690843 Gooby 1.0.0
|
1010
|
-
// points.push(new GLatLng(35.195255,-80.834377)); // (988 of 1167.0) 2007-03-10T14:39:48Z 5836 01:37:16 11.3077894425173 Gooby 1.0.0
|
1011
|
-
// points.push(new GLatLng(35.195353,-80.834189)); // (989 of 1167.0) 2007-03-10T14:39:55Z 5843 01:37:23 11.3203794492779 Gooby 1.0.0
|
1012
|
-
points.push(new GLatLng(35.195367,-80.834124)); // (990 of 1167.0) 2007-03-10T14:39:57Z 5845 01:37:25 11.3241743957194 Gooby 1.0.0
|
1013
|
-
// points.push(new GLatLng(35.195469,-80.833932)); // (991 of 1167.0) 2007-03-10T14:40:04Z 5852 01:37:32 11.3371040393908 Gooby 1.0.0
|
1014
|
-
// points.push(new GLatLng(35.19557,-80.833792)); // (992 of 1167.0) 2007-03-10T14:40:10Z 5858 01:37:38 11.3476479123714 Gooby 1.0.0
|
1015
|
-
// points.push(new GLatLng(35.195668,-80.833681)); // (993 of 1167.0) 2007-03-10T14:40:15Z 5863 01:37:43 11.3568740870296 Gooby 1.0.0
|
1016
|
-
// points.push(new GLatLng(35.195767,-80.833561)); // (994 of 1167.0) 2007-03-10T14:40:21Z 5869 01:37:49 11.3665014810183 Gooby 1.0.0
|
1017
|
-
points.push(new GLatLng(35.195898,-80.83341)); // (995 of 1167.0) 2007-03-10T14:40:28Z 5876 01:37:56 11.3789353380392 Gooby 1.0.0
|
1018
|
-
// points.push(new GLatLng(35.196039,-80.833275)); // (996 of 1167.0) 2007-03-10T14:40:35Z 5883 01:38:03 11.3913043830706 Gooby 1.0.0
|
1019
|
-
// points.push(new GLatLng(35.196117,-80.833199)); // (997 of 1167.0) 2007-03-10T14:40:39Z 5887 01:38:07 11.3981930197674 Gooby 1.0.0
|
1020
|
-
// points.push(new GLatLng(35.196218,-80.833087)); // (998 of 1167.0) 2007-03-10T14:40:45Z 5893 01:38:13 11.407609937518 Gooby 1.0.0
|
1021
|
-
// points.push(new GLatLng(35.196318,-80.832935)); // (999 of 1167.0) 2007-03-10T14:40:51Z 5899 01:38:19 11.4186271335428 Gooby 1.0.0
|
1022
|
-
points.push(new GLatLng(35.196421,-80.832791)); // (1000 of 1167.0) 2007-03-10T14:40:57Z 5905 01:38:25 11.4294316217568 Gooby 1.0.0
|
1023
|
-
// points.push(new GLatLng(35.19652,-80.832608)); // (1001 of 1167.0) 2007-03-10T14:41:04Z 5912 01:38:32 11.4418225892647 Gooby 1.0.0
|
1024
|
-
// points.push(new GLatLng(35.196607,-80.832468)); // (1002 of 1167.0) 2007-03-10T14:41:10Z 5918 01:38:38 11.4517527861838 Gooby 1.0.0
|
1025
|
-
// points.push(new GLatLng(35.196716,-80.832379)); // (1003 of 1167.0) 2007-03-10T14:41:15Z 5923 01:38:43 11.4608061236815 Gooby 1.0.0
|
1026
|
-
// points.push(new GLatLng(35.196863,-80.832328)); // (1004 of 1167.0) 2007-03-10T14:41:21Z 5929 01:38:49 11.4713626940684 Gooby 1.0.0
|
1027
|
-
points.push(new GLatLng(35.19704,-80.832291)); // (1005 of 1167.0) 2007-03-10T14:41:28Z 5936 01:38:56 11.4837686757488 Gooby 1.0.0
|
1028
|
-
// points.push(new GLatLng(35.197211,-80.832272)); // (1006 of 1167.0) 2007-03-10T14:41:35Z 5943 01:39:03 11.4956317084234 Gooby 1.0.0
|
1029
|
-
// points.push(new GLatLng(35.197316,-80.832262)); // (1007 of 1167.0) 2007-03-10T14:41:39Z 5947 01:39:07 11.5029079680627 Gooby 1.0.0
|
1030
|
-
// points.push(new GLatLng(35.197425,-80.832263)); // (1008 of 1167.0) 2007-03-10T14:41:44Z 5952 01:39:12 11.5104389523247 Gooby 1.0.0
|
1031
|
-
// points.push(new GLatLng(35.197557,-80.83228)); // (1009 of 1167.0) 2007-03-10T14:41:49Z 5957 01:39:17 11.5196087620354 Gooby 1.0.0
|
1032
|
-
points.push(new GLatLng(35.197694,-80.832304)); // (1010 of 1167.0) 2007-03-10T14:41:54Z 5962 01:39:22 11.5291705159965 Gooby 1.0.0
|
1033
|
-
// points.push(new GLatLng(35.197853,-80.832334)); // (1011 of 1167.0) 2007-03-10T14:42:00Z 5968 01:39:28 11.5402854992371 Gooby 1.0.0
|
1034
|
-
// points.push(new GLatLng(35.198029,-80.832344)); // (1012 of 1167.0) 2007-03-10T14:42:07Z 5975 01:39:35 11.5524583237939 Gooby 1.0.0
|
1035
|
-
// points.push(new GLatLng(35.198149,-80.832355)); // (1013 of 1167.0) 2007-03-10T14:42:12Z 5980 01:39:40 11.5607723837757 Gooby 1.0.0
|
1036
|
-
// points.push(new GLatLng(35.198339,-80.832368)); // (1014 of 1167.0) 2007-03-10T14:42:19Z 5987 01:39:47 11.5739200518516 Gooby 1.0.0
|
1037
|
-
points.push(new GLatLng(35.19847,-80.832381)); // (1015 of 1167.0) 2007-03-10T14:42:24Z 5992 01:39:52 11.5830006359599 Gooby 1.0.0
|
1038
|
-
// points.push(new GLatLng(35.198666,-80.832384)); // (1016 of 1167.0) 2007-03-10T14:42:31Z 5999 01:39:59 11.5965433106368 Gooby 1.0.0
|
1039
|
-
// points.push(new GLatLng(35.198771,-80.832365)); // (1017 of 1167.0) 2007-03-10T14:42:35Z 6003 01:40:03 11.6038767295177 Gooby 1.0.0
|
1040
|
-
// points.push(new GLatLng(35.19895,-80.832341)); // (1018 of 1167.0) 2007-03-10T14:42:41Z 6009 01:40:09 11.616317580575 Gooby 1.0.0
|
1041
|
-
// points.push(new GLatLng(35.199121,-80.832308)); // (1019 of 1167.0) 2007-03-10T14:42:47Z 6015 01:40:15 11.6282778851735 Gooby 1.0.0
|
1042
|
-
points.push(new GLatLng(35.199262,-80.832274)); // (1020 of 1167.0) 2007-03-10T14:42:52Z 6020 01:40:20 11.6382066804133 Gooby 1.0.0
|
1043
|
-
// points.push(new GLatLng(35.199384,-80.832217)); // (1021 of 1167.0) 2007-03-10T14:42:57Z 6025 01:40:25 11.6472288332661 Gooby 1.0.0
|
1044
|
-
// points.push(new GLatLng(35.199514,-80.832155)); // (1022 of 1167.0) 2007-03-10T14:43:02Z 6030 01:40:30 11.6568683270804 Gooby 1.0.0
|
1045
|
-
// points.push(new GLatLng(35.199646,-80.832101)); // (1023 of 1167.0) 2007-03-10T14:43:07Z 6035 01:40:35 11.6664843297323 Gooby 1.0.0
|
1046
|
-
// points.push(new GLatLng(35.199792,-80.832025)); // (1024 of 1167.0) 2007-03-10T14:43:13Z 6041 01:40:41 11.6774461172669 Gooby 1.0.0
|
1047
|
-
points.push(new GLatLng(35.199907,-80.831949)); // (1025 of 1167.0) 2007-03-10T14:43:18Z 6046 01:40:46 11.686475980045 Gooby 1.0.0
|
1048
|
-
// points.push(new GLatLng(35.200031,-80.831877)); // (1026 of 1167.0) 2007-03-10T14:43:23Z 6051 01:40:51 11.6959586230658 Gooby 1.0.0
|
1049
|
-
// points.push(new GLatLng(35.200178,-80.831803)); // (1027 of 1167.0) 2007-03-10T14:43:29Z 6057 01:40:57 11.7069403898627 Gooby 1.0.0
|
1050
|
-
// points.push(new GLatLng(35.200311,-80.831756)); // (1028 of 1167.0) 2007-03-10T14:43:34Z 6062 01:41:02 11.7165046907627 Gooby 1.0.0
|
1051
|
-
// points.push(new GLatLng(35.200485,-80.83169)); // (1029 of 1167.0) 2007-03-10T14:43:40Z 6068 01:41:08 11.7290905513 Gooby 1.0.0
|
1052
|
-
points.push(new GLatLng(35.200663,-80.831668)); // (1030 of 1167.0) 2007-03-10T14:43:46Z 6074 01:41:14 11.7414511542567 Gooby 1.0.0
|
1053
|
-
// points.push(new GLatLng(35.200822,-80.831728)); // (1031 of 1167.0) 2007-03-10T14:43:52Z 6080 01:41:20 11.7529468541618 Gooby 1.0.0
|
1054
|
-
// points.push(new GLatLng(35.200988,-80.831873)); // (1032 of 1167.0) 2007-03-10T14:43:59Z 6087 01:41:27 11.7670375173027 Gooby 1.0.0
|
1055
|
-
// points.push(new GLatLng(35.201141,-80.832003)); // (1033 of 1167.0) 2007-03-10T14:44:06Z 6094 01:41:34 11.7799064688509 Gooby 1.0.0
|
1056
|
-
// points.push(new GLatLng(35.20128,-80.832129)); // (1034 of 1167.0) 2007-03-10T14:44:12Z 6100 01:41:40 11.7918577515255 Gooby 1.0.0
|
1057
|
-
points.push(new GLatLng(35.201446,-80.832255)); // (1035 of 1167.0) 2007-03-10T14:44:19Z 6107 01:41:47 11.8053537132071 Gooby 1.0.0
|
1058
|
-
// points.push(new GLatLng(35.201639,-80.832388)); // (1036 of 1167.0) 2007-03-10T14:44:26Z 6114 01:41:54 11.8206568902317 Gooby 1.0.0
|
1059
|
-
// points.push(new GLatLng(35.201813,-80.832523)); // (1037 of 1167.0) 2007-03-10T14:44:33Z 6121 01:42:01 11.8348910335048 Gooby 1.0.0
|
1060
|
-
// points.push(new GLatLng(35.201984,-80.83264)); // (1038 of 1167.0) 2007-03-10T14:44:40Z 6128 01:42:08 11.848426512286 Gooby 1.0.0
|
1061
|
-
// points.push(new GLatLng(35.202117,-80.832705)); // (1039 of 1167.0) 2007-03-10T14:44:45Z 6133 01:42:13 11.8583210801857 Gooby 1.0.0
|
1062
|
-
points.push(new GLatLng(35.202319,-80.832821)); // (1040 of 1167.0) 2007-03-10T14:44:53Z 6141 01:42:21 11.8737374104825 Gooby 1.0.0
|
1063
|
-
// points.push(new GLatLng(35.202455,-80.83293)); // (1041 of 1167.0) 2007-03-10T14:44:59Z 6147 01:42:27 11.8849691722161 Gooby 1.0.0
|
1064
|
-
// points.push(new GLatLng(35.202617,-80.833069)); // (1042 of 1167.0) 2007-03-10T14:45:06Z 6154 01:42:34 11.8986386891693 Gooby 1.0.0
|
1065
|
-
// points.push(new GLatLng(35.202725,-80.83317)); // (1043 of 1167.0) 2007-03-10T14:45:11Z 6159 01:42:39 11.9080297067395 Gooby 1.0.0
|
1066
|
-
// points.push(new GLatLng(35.202855,-80.833284)); // (1044 of 1167.0) 2007-03-10T14:45:17Z 6165 01:42:45 11.9190792272795 Gooby 1.0.0
|
1067
|
-
points.push(new GLatLng(35.202993,-80.833435)); // (1045 of 1167.0) 2007-03-10T14:45:24Z 6172 01:42:52 11.9318689845276 Gooby 1.0.0
|
1068
|
-
// points.push(new GLatLng(35.203114,-80.833595)); // (1046 of 1167.0) 2007-03-10T14:45:30Z 6178 01:42:58 11.9441766933255 Gooby 1.0.0
|
1069
|
-
// points.push(new GLatLng(35.203257,-80.833758)); // (1047 of 1167.0) 2007-03-10T14:45:37Z 6185 01:43:05 11.957677939227 Gooby 1.0.0
|
1070
|
-
// points.push(new GLatLng(35.203372,-80.833905)); // (1048 of 1167.0) 2007-03-10T14:45:43Z 6191 01:43:11 11.9691669782925 Gooby 1.0.0
|
1071
|
-
// points.push(new GLatLng(35.203493,-80.83405)); // (1049 of 1167.0) 2007-03-10T14:45:50Z 6198 01:43:18 11.9808671348842 Gooby 1.0.0
|
1072
|
-
points.push(new GLatLng(35.203575,-80.834144)); // (1050 of 1167.0) 2007-03-10T14:45:54Z 6202 01:43:22 11.9886297276909 Gooby 1.0.0
|
1073
|
-
points.push(new GLatLng(35.203703,-80.834299)); // (1051 of 1167.0) 2007-03-10T14:46:00Z 6208 01:43:28 12.0010707185888 12.0 00:08:49 Gooby 1.0.0
|
1074
|
-
// points.push(new GLatLng(35.20382,-80.83446)); // (1052 of 1167.0) 2007-03-10T14:46:06Z 6214 01:43:34 12.0132342497658 Gooby 1.0.0
|
1075
|
-
// points.push(new GLatLng(35.203917,-80.834608)); // (1053 of 1167.0) 2007-03-10T14:46:11Z 6219 01:43:39 12.0239449388216 Gooby 1.0.0
|
1076
|
-
// points.push(new GLatLng(35.204021,-80.83473)); // (1054 of 1167.0) 2007-03-10T14:46:16Z 6224 01:43:44 12.0338978853626 Gooby 1.0.0
|
1077
|
-
// points.push(new GLatLng(35.204144,-80.834874)); // (1055 of 1167.0) 2007-03-10T14:46:22Z 6230 01:43:50 12.0456579610062 Gooby 1.0.0
|
1078
|
-
points.push(new GLatLng(35.20427,-80.835019)); // (1056 of 1167.0) 2007-03-10T14:46:28Z 6236 01:43:56 12.0576074967153 Gooby 1.0.0
|
1079
|
-
// points.push(new GLatLng(35.204419,-80.835196)); // (1057 of 1167.0) 2007-03-10T14:46:35Z 6243 01:44:03 12.0719538874317 Gooby 1.0.0
|
1080
|
-
// points.push(new GLatLng(35.20456,-80.83538)); // (1058 of 1167.0) 2007-03-10T14:46:42Z 6250 01:44:10 12.0861946292418 Gooby 1.0.0
|
1081
|
-
// points.push(new GLatLng(35.204684,-80.83555)); // (1059 of 1167.0) 2007-03-10T14:46:49Z 6257 01:44:17 12.0990589835285 Gooby 1.0.0
|
1082
|
-
// points.push(new GLatLng(35.204809,-80.835703)); // (1060 of 1167.0) 2007-03-10T14:46:55Z 6263 01:44:23 12.1112730422706 Gooby 1.0.0
|
1083
|
-
points.push(new GLatLng(35.204913,-80.835836)); // (1061 of 1167.0) 2007-03-10T14:47:00Z 6268 01:44:28 12.1216655126205 Gooby 1.0.0
|
1084
|
-
// points.push(new GLatLng(35.205051,-80.836014)); // (1062 of 1167.0) 2007-03-10T14:47:07Z 6275 01:44:35 12.1355175911854 Gooby 1.0.0
|
1085
|
-
// points.push(new GLatLng(35.205189,-80.836199)); // (1063 of 1167.0) 2007-03-10T14:47:14Z 6282 01:44:42 12.1496589086302 Gooby 1.0.0
|
1086
|
-
// points.push(new GLatLng(35.205307,-80.836353)); // (1064 of 1167.0) 2007-03-10T14:47:20Z 6288 01:44:48 12.1615772471182 Gooby 1.0.0
|
1087
|
-
// points.push(new GLatLng(35.20545,-80.836523)); // (1065 of 1167.0) 2007-03-10T14:47:27Z 6295 01:44:55 12.1753509843154 Gooby 1.0.0
|
1088
|
-
points.push(new GLatLng(35.205567,-80.836672)); // (1066 of 1167.0) 2007-03-10T14:47:33Z 6301 01:45:01 12.1870170402273 Gooby 1.0.0
|
1089
|
-
// points.push(new GLatLng(35.205697,-80.836842)); // (1067 of 1167.0) 2007-03-10T14:47:40Z 6308 01:45:08 12.2001613997982 Gooby 1.0.0
|
1090
|
-
// points.push(new GLatLng(35.20589,-80.837081)); // (1068 of 1167.0) 2007-03-10T14:47:50Z 6318 01:45:18 12.2191310885219 Gooby 1.0.0
|
1091
|
-
// points.push(new GLatLng(35.206036,-80.83727)); // (1069 of 1167.0) 2007-03-10T14:47:58Z 6326 01:45:26 12.2338140494248 Gooby 1.0.0
|
1092
|
-
// points.push(new GLatLng(35.206155,-80.837407)); // (1070 of 1167.0) 2007-03-10T14:48:04Z 6332 01:45:32 12.2451017439564 Gooby 1.0.0
|
1093
|
-
points.push(new GLatLng(35.206267,-80.837559)); // (1071 of 1167.0) 2007-03-10T14:48:10Z 6338 01:45:38 12.2566563152723 Gooby 1.0.0
|
1094
|
-
// points.push(new GLatLng(35.206385,-80.837695)); // (1072 of 1167.0) 2007-03-10T14:48:16Z 6344 01:45:44 12.2678548803721 Gooby 1.0.0
|
1095
|
-
// points.push(new GLatLng(35.206498,-80.837791)); // (1073 of 1167.0) 2007-03-10T14:48:21Z 6349 01:45:49 12.2773585986061 Gooby 1.0.0
|
1096
|
-
// points.push(new GLatLng(35.206621,-80.837913)); // (1074 of 1167.0) 2007-03-10T14:48:27Z 6355 01:45:55 12.2882970308792 Gooby 1.0.0
|
1097
|
-
// points.push(new GLatLng(35.206741,-80.838034)); // (1075 of 1167.0) 2007-03-10T14:48:33Z 6361 01:46:01 12.2990393472514 Gooby 1.0.0
|
1098
|
-
points.push(new GLatLng(35.206888,-80.838172)); // (1076 of 1167.0) 2007-03-10T14:48:40Z 6368 01:46:08 12.3118391665038 Gooby 1.0.0
|
1099
|
-
// points.push(new GLatLng(35.207003,-80.838306)); // (1077 of 1167.0) 2007-03-10T14:48:46Z 6374 01:46:14 12.3228095210349 Gooby 1.0.0
|
1100
|
-
// points.push(new GLatLng(35.207127,-80.838427)); // (1078 of 1167.0) 2007-03-10T14:48:52Z 6380 01:46:20 12.3337665462328 Gooby 1.0.0
|
1101
|
-
// points.push(new GLatLng(35.207258,-80.838534)); // (1079 of 1167.0) 2007-03-10T14:48:58Z 6386 01:46:26 12.3446477301238 Gooby 1.0.0
|
1102
|
-
// points.push(new GLatLng(35.20738,-80.838637)); // (1080 of 1167.0) 2007-03-10T14:49:04Z 6392 01:46:32 12.3548874088287 Gooby 1.0.0
|
1103
|
-
points.push(new GLatLng(35.207497,-80.838759)); // (1081 of 1167.0) 2007-03-10T14:49:10Z 6398 01:46:38 12.3655070747069 Gooby 1.0.0
|
1104
|
-
// points.push(new GLatLng(35.207609,-80.838895)); // (1082 of 1167.0) 2007-03-10T14:49:16Z 6404 01:46:44 12.3764075876046 Gooby 1.0.0
|
1105
|
-
// points.push(new GLatLng(35.207735,-80.838993)); // (1083 of 1167.0) 2007-03-10T14:49:22Z 6410 01:46:50 12.3867220898011 Gooby 1.0.0
|
1106
|
-
// points.push(new GLatLng(35.207886,-80.83912)); // (1084 of 1167.0) 2007-03-10T14:49:29Z 6417 01:46:57 12.3993805880489 Gooby 1.0.0
|
1107
|
-
// points.push(new GLatLng(35.208002,-80.839235)); // (1085 of 1167.0) 2007-03-10T14:49:35Z 6423 01:47:03 12.4096944155437 Gooby 1.0.0
|
1108
|
-
points.push(new GLatLng(35.208129,-80.839333)); // (1086 of 1167.0) 2007-03-10T14:49:41Z 6429 01:47:09 12.4200674487969 Gooby 1.0.0
|
1109
|
-
// points.push(new GLatLng(35.208269,-80.839465)); // (1087 of 1167.0) 2007-03-10T14:49:48Z 6436 01:47:16 12.4322775186236 Gooby 1.0.0
|
1110
|
-
// points.push(new GLatLng(35.20838,-80.839573)); // (1088 of 1167.0) 2007-03-10T14:49:53Z 6441 01:47:21 12.4420747260666 Gooby 1.0.0
|
1111
|
-
// points.push(new GLatLng(35.208481,-80.839672)); // (1089 of 1167.0) 2007-03-10T14:49:58Z 6446 01:47:26 12.4510147449356 Gooby 1.0.0
|
1112
|
-
// points.push(new GLatLng(35.208578,-80.839768)); // (1090 of 1167.0) 2007-03-10T14:50:03Z 6451 01:47:31 12.4596333411624 Gooby 1.0.0
|
1113
|
-
points.push(new GLatLng(35.20872,-80.839934)); // (1091 of 1167.0) 2007-03-10T14:50:10Z 6458 01:47:38 12.4732004020429 Gooby 1.0.0
|
1114
|
-
// points.push(new GLatLng(35.208885,-80.840074)); // (1092 of 1167.0) 2007-03-10T14:50:17Z 6465 01:47:45 12.4870718086903 Gooby 1.0.0
|
1115
|
-
// points.push(new GLatLng(35.209061,-80.840214)); // (1093 of 1167.0) 2007-03-10T14:50:25Z 6473 01:47:53 12.5015742701911 Gooby 1.0.0
|
1116
|
-
// points.push(new GLatLng(35.2092,-80.840334)); // (1094 of 1167.0) 2007-03-10T14:50:32Z 6480 01:48:00 12.5133265025771 Gooby 1.0.0
|
1117
|
-
// points.push(new GLatLng(35.209334,-80.840478)); // (1095 of 1167.0) 2007-03-10T14:50:39Z 6487 01:48:07 12.5256467854742 Gooby 1.0.0
|
1118
|
-
points.push(new GLatLng(35.209489,-80.840612)); // (1096 of 1167.0) 2007-03-10T14:50:47Z 6495 01:48:15 12.5387578813845 Gooby 1.0.0
|
1119
|
-
// points.push(new GLatLng(35.209664,-80.840746)); // (1097 of 1167.0) 2007-03-10T14:50:55Z 6503 01:48:23 12.5530197423943 Gooby 1.0.0
|
1120
|
-
// points.push(new GLatLng(35.209792,-80.840861)); // (1098 of 1167.0) 2007-03-10T14:51:01Z 6509 01:48:29 12.5639900969254 Gooby 1.0.0
|
1121
|
-
// points.push(new GLatLng(35.209929,-80.840995)); // (1099 of 1167.0) 2007-03-10T14:51:08Z 6516 01:48:36 12.5761064799558 Gooby 1.0.0
|
1122
|
-
// points.push(new GLatLng(35.210042,-80.841082)); // (1100 of 1167.0) 2007-03-10T14:51:13Z 6521 01:48:41 12.5853300143072 Gooby 1.0.0
|
1123
|
-
points.push(new GLatLng(35.210164,-80.841227)); // (1101 of 1167.0) 2007-03-10T14:51:19Z 6527 01:48:47 12.5970791375391 Gooby 1.0.0
|
1124
|
-
// points.push(new GLatLng(35.210329,-80.841384)); // (1102 of 1167.0) 2007-03-10T14:51:26Z 6534 01:48:54 12.6115186020595 Gooby 1.0.0
|
1125
|
-
// points.push(new GLatLng(35.210445,-80.841479)); // (1103 of 1167.0) 2007-03-10T14:51:31Z 6539 01:48:59 12.6211617048195 Gooby 1.0.0
|
1126
|
-
// points.push(new GLatLng(35.210597,-80.841613)); // (1104 of 1167.0) 2007-03-10T14:51:38Z 6546 01:49:06 12.6341039904655 Gooby 1.0.0
|
1127
|
-
// points.push(new GLatLng(35.210766,-80.841761)); // (1105 of 1167.0) 2007-03-10T14:51:45Z 6553 01:49:13 12.6484612910786 Gooby 1.0.0
|
1128
|
-
points.push(new GLatLng(35.210931,-80.841927)); // (1106 of 1167.0) 2007-03-10T14:51:53Z 6561 01:49:21 12.6632180029092 Gooby 1.0.0
|
1129
|
-
// points.push(new GLatLng(35.211073,-80.842056)); // (1107 of 1167.0) 2007-03-10T14:51:59Z 6567 01:49:27 12.6754356220824 Gooby 1.0.0
|
1130
|
-
// points.push(new GLatLng(35.211205,-80.842176)); // (1108 of 1167.0) 2007-03-10T14:52:05Z 6573 01:49:33 12.6867958319481 Gooby 1.0.0
|
1131
|
-
// points.push(new GLatLng(35.21136,-80.842303)); // (1109 of 1167.0) 2007-03-10T14:52:12Z 6580 01:49:40 12.6996828861465 Gooby 1.0.0
|
1132
|
-
// points.push(new GLatLng(35.211512,-80.842434)); // (1110 of 1167.0) 2007-03-10T14:52:19Z 6587 01:49:47 12.7125269387535 Gooby 1.0.0
|
1133
|
-
points.push(new GLatLng(35.211673,-80.842579)); // (1111 of 1167.0) 2007-03-10T14:52:26Z 6594 01:49:54 12.72633738294 Gooby 1.0.0
|
1134
|
-
// points.push(new GLatLng(35.211804,-80.842703)); // (1112 of 1167.0) 2007-03-10T14:52:32Z 6600 01:50:00 12.7377790793641 Gooby 1.0.0
|
1135
|
-
// points.push(new GLatLng(35.211951,-80.842847)); // (1113 of 1167.0) 2007-03-10T14:52:38Z 6606 01:50:06 12.7507874669441 Gooby 1.0.0
|
1136
|
-
// points.push(new GLatLng(35.212061,-80.842953)); // (1114 of 1167.0) 2007-03-10T14:52:43Z 6611 01:50:11 12.7604599324044 Gooby 1.0.0
|
1137
|
-
// points.push(new GLatLng(35.212189,-80.843058)); // (1115 of 1167.0) 2007-03-10T14:52:48Z 6616 01:50:16 12.7711057777032 Gooby 1.0.0
|
1138
|
-
points.push(new GLatLng(35.212329,-80.843191)); // (1116 of 1167.0) 2007-03-10T14:52:54Z 6622 01:50:22 12.7833501381524 Gooby 1.0.0
|
1139
|
-
// points.push(new GLatLng(35.212464,-80.843315)); // (1117 of 1167.0) 2007-03-10T14:53:00Z 6628 01:50:28 12.795011719339 Gooby 1.0.0
|
1140
|
-
// points.push(new GLatLng(35.212609,-80.84345)); // (1118 of 1167.0) 2007-03-10T14:53:06Z 6634 01:50:34 12.8075986856694 Gooby 1.0.0
|
1141
|
-
// points.push(new GLatLng(35.212743,-80.843568)); // (1119 of 1167.0) 2007-03-10T14:53:12Z 6640 01:50:40 12.819003830952 Gooby 1.0.0
|
1142
|
-
// points.push(new GLatLng(35.212912,-80.843719)); // (1120 of 1167.0) 2007-03-10T14:53:19Z 6647 01:50:47 12.8334601536017 Gooby 1.0.0
|
1143
|
-
points.push(new GLatLng(35.21304,-80.843837)); // (1121 of 1167.0) 2007-03-10T14:53:25Z 6653 01:50:53 12.8445315380494 Gooby 1.0.0
|
1144
|
-
// points.push(new GLatLng(35.213197,-80.843979)); // (1122 of 1167.0) 2007-03-10T14:53:32Z 6660 01:51:00 12.8580188600864 Gooby 1.0.0
|
1145
|
-
// points.push(new GLatLng(35.213366,-80.844091)); // (1123 of 1167.0) 2007-03-10T14:53:38Z 6666 01:51:06 12.8712968822727 Gooby 1.0.0
|
1146
|
-
// points.push(new GLatLng(35.213501,-80.844188)); // (1124 of 1167.0) 2007-03-10T14:53:43Z 6671 01:51:11 12.8821124752075 Gooby 1.0.0
|
1147
|
-
// points.push(new GLatLng(35.21362,-80.844283)); // (1125 of 1167.0) 2007-03-10T14:53:48Z 6676 01:51:16 12.8919284876292 Gooby 1.0.0
|
1148
|
-
points.push(new GLatLng(35.213775,-80.844366)); // (1126 of 1167.0) 2007-03-10T14:53:54Z 6682 01:51:22 12.9036174868314 Gooby 1.0.0
|
1149
|
-
// points.push(new GLatLng(35.213802,-80.844364)); // (1127 of 1167.0) 2007-03-10T14:53:55Z 6683 01:51:23 12.9054846909583 Gooby 1.0.0
|
1150
|
-
// points.push(new GLatLng(35.213888,-80.844292)); // (1128 of 1167.0) 2007-03-10T14:53:59Z 6687 01:51:27 12.9126835490503 Gooby 1.0.0
|
1151
|
-
// points.push(new GLatLng(35.213985,-80.844117)); // (1129 of 1167.0) 2007-03-10T14:54:05Z 6693 01:51:33 12.9246207031005 Gooby 1.0.0
|
1152
|
-
// points.push(new GLatLng(35.214078,-80.843934)); // (1130 of 1167.0) 2007-03-10T14:54:11Z 6699 01:51:39 12.9367858075024 Gooby 1.0.0
|
1153
|
-
points.push(new GLatLng(35.214242,-80.84373)); // (1131 of 1167.0) 2007-03-10T14:54:18Z 6706 01:51:46 12.9529409848761 Gooby 1.0.0
|
1154
|
-
// points.push(new GLatLng(35.214343,-80.843593)); // (1132 of 1167.0) 2007-03-10T14:54:23Z 6711 01:51:51 12.9633571995377 Gooby 1.0.0
|
1155
|
-
// points.push(new GLatLng(35.214442,-80.843449)); // (1133 of 1167.0) 2007-03-10T14:54:28Z 6716 01:51:56 12.9739803051431 Gooby 1.0.0
|
1156
|
-
// points.push(new GLatLng(35.214547,-80.843306)); // (1134 of 1167.0) 2007-03-10T14:54:33Z 6721 01:52:01 12.9848328317499 Gooby 1.0.0
|
1157
|
-
// points.push(new GLatLng(35.214678,-80.843112)); // (1135 of 1167.0) 2007-03-10T14:54:40Z 6728 01:52:08 12.9990395705893 Gooby 1.0.0
|
1158
|
-
points.push(new GLatLng(35.214817,-80.842922)); // (1136 of 1167.0) 2007-03-10T14:54:47Z 6735 01:52:15 13.0134355949857 13.0 00:08:47 Gooby 1.0.0
|
1159
|
-
// points.push(new GLatLng(35.214907,-80.842792)); // (1137 of 1167.0) 2007-03-10T14:54:52Z 6740 01:52:20 13.0230539493356 Gooby 1.0.0
|
1160
|
-
// points.push(new GLatLng(35.215038,-80.842594)); // (1138 of 1167.0) 2007-03-10T14:54:59Z 6747 01:52:27 13.0374354645321 Gooby 1.0.0
|
1161
|
-
// points.push(new GLatLng(35.215135,-80.842465)); // (1139 of 1167.0) 2007-03-10T14:55:04Z 6752 01:52:32 13.0473316147609 Gooby 1.0.0
|
1162
|
-
// points.push(new GLatLng(35.215227,-80.842332)); // (1140 of 1167.0) 2007-03-10T14:55:09Z 6757 01:52:37 13.0571685187429 Gooby 1.0.0
|
1163
|
-
points.push(new GLatLng(35.215338,-80.842162)); // (1141 of 1167.0) 2007-03-10T14:55:15Z 6763 01:52:43 13.0694523154548 Gooby 1.0.0
|
1164
|
-
// points.push(new GLatLng(35.215471,-80.841966)); // (1142 of 1167.0) 2007-03-10T14:55:22Z 6770 01:52:50 13.0838340725913 Gooby 1.0.0
|
1165
|
-
// points.push(new GLatLng(35.215557,-80.841874)); // (1143 of 1167.0) 2007-03-10T14:55:27Z 6775 01:52:55 13.091725584018 Gooby 1.0.0
|
1166
|
-
// points.push(new GLatLng(35.215578,-80.841835)); // (1144 of 1167.0) 2007-03-10T14:55:29Z 6777 01:52:57 13.0943622534228 Gooby 1.0.0
|
1167
|
-
// points.push(new GLatLng(35.215562,-80.841724)); // (1145 of 1167.0) 2007-03-10T14:55:33Z 6781 01:53:01 13.1007244019234 Gooby 1.0.0
|
1168
|
-
points.push(new GLatLng(35.215604,-80.841677)); // (1146 of 1167.0) 2007-03-10T14:55:35Z 6783 01:53:03 13.1046558017569 Gooby 1.0.0
|
1169
|
-
// points.push(new GLatLng(35.215754,-80.841537)); // (1147 of 1167.0) 2007-03-10T14:55:39Z 6787 01:53:07 13.1176886408381 Gooby 1.0.0
|
1170
|
-
// points.push(new GLatLng(35.21582,-80.841409)); // (1148 of 1167.0) 2007-03-10T14:55:43Z 6791 01:53:11 13.1262322225684 Gooby 1.0.0
|
1171
|
-
// points.push(new GLatLng(35.215902,-80.841298)); // (1149 of 1167.0) 2007-03-10T14:55:47Z 6795 01:53:15 13.1346791432162 Gooby 1.0.0
|
1172
|
-
// points.push(new GLatLng(35.215993,-80.841144)); // (1150 of 1167.0) 2007-03-10T14:55:52Z 6800 01:53:20 13.1454070361235 Gooby 1.0.0
|
1173
|
-
points.push(new GLatLng(35.216108,-80.840996)); // (1151 of 1167.0) 2007-03-10T14:55:57Z 6805 01:53:25 13.1569359825024 Gooby 1.0.0
|
1174
|
-
// points.push(new GLatLng(35.216231,-80.840822)); // (1152 of 1167.0) 2007-03-10T14:56:03Z 6811 01:53:31 13.1699236237867 Gooby 1.0.0
|
1175
|
-
// points.push(new GLatLng(35.216368,-80.840633)); // (1153 of 1167.0) 2007-03-10T14:56:10Z 6818 01:53:38 13.1841856067819 Gooby 1.0.0
|
1176
|
-
// points.push(new GLatLng(35.216519,-80.840453)); // (1154 of 1167.0) 2007-03-10T14:56:17Z 6825 01:53:45 13.1987481647544 Gooby 1.0.0
|
1177
|
-
// points.push(new GLatLng(35.216672,-80.840259)); // (1155 of 1167.0) 2007-03-10T14:56:24Z 6832 01:53:52 13.213968239563 Gooby 1.0.0
|
1178
|
-
points.push(new GLatLng(35.216802,-80.840075)); // (1156 of 1167.0) 2007-03-10T14:56:31Z 6839 01:53:59 13.2276990912664 Gooby 1.0.0
|
1179
|
-
// points.push(new GLatLng(35.216914,-80.839919)); // (1157 of 1167.0) 2007-03-10T14:56:37Z 6845 01:54:05 13.2394213823656 Gooby 1.0.0
|
1180
|
-
// points.push(new GLatLng(35.217081,-80.83971)); // (1158 of 1167.0) 2007-03-10T14:56:45Z 6853 01:54:13 13.255922734624 Gooby 1.0.0
|
1181
|
-
// points.push(new GLatLng(35.217252,-80.839477)); // (1159 of 1167.0) 2007-03-10T14:56:54Z 6862 01:54:22 13.2736015896042 Gooby 1.0.0
|
1182
|
-
// points.push(new GLatLng(35.21738,-80.839305)); // (1160 of 1167.0) 2007-03-10T14:57:00Z 6868 01:54:28 13.2867340316552 Gooby 1.0.0
|
1183
|
-
points.push(new GLatLng(35.217571,-80.839075)); // (1161 of 1167.0) 2007-03-10T14:57:08Z 6876 01:54:36 13.3052454961149 Gooby 1.0.0
|
1184
|
-
// points.push(new GLatLng(35.217798,-80.838804)); // (1162 of 1167.0) 2007-03-10T14:57:17Z 6885 01:54:45 13.3271532738403 Gooby 1.0.0
|
1185
|
-
// points.push(new GLatLng(35.217961,-80.838574)); // (1163 of 1167.0) 2007-03-10T14:57:24Z 6892 01:54:52 13.3443393199415 Gooby 1.0.0
|
1186
|
-
// points.push(new GLatLng(35.218069,-80.838402)); // (1164 of 1167.0) 2007-03-10T14:57:29Z 6897 01:54:57 13.3565836803907 Gooby 1.0.0
|
1187
|
-
// points.push(new GLatLng(35.218204,-80.838211)); // (1165 of 1167.0) 2007-03-10T14:57:35Z 6903 01:55:03 13.3708393187615 Gooby 1.0.0
|
1188
|
-
points.push(new GLatLng(35.218308,-80.838048)); // (1166 of 1167.0) 2007-03-10T14:57:40Z 6908 01:55:08 13.3825131268007 Gooby 1.0.0
|
1189
|
-
points.push(new GLatLng(35.218373,-80.837947)); // (1167 of 1167.0) 2007-03-10T14:57:44Z 6912 01:55:12 13.3897702333148 Gooby 1.0.0
|
1190
|
-
|
1191
|
-
var routePolyline = new GPolyline(points);
|
1192
|
-
map.addOverlay(routePolyline);
|
1193
|
-
|
1194
|
-
// Create a base icon for all of our markers that specifies the
|
1195
|
-
// shadow, icon dimensions, etc.
|
1196
|
-
var baseIcon = new GIcon();
|
1197
|
-
baseIcon.shadow = "http://www.joakim-systems.com/gicons/shadow50.png";
|
1198
|
-
baseIcon.iconSize = new GSize(20, 34);
|
1199
|
-
baseIcon.shadowSize = new GSize(37, 34);
|
1200
|
-
baseIcon.iconAnchor = new GPoint(9, 34);
|
1201
|
-
baseIcon.infoWindowAnchor = new GPoint(9, 2);
|
1202
|
-
baseIcon.infoShadowAnchor = new GPoint(18, 25);
|
1203
|
-
|
1204
|
-
var iconStart = new GIcon(baseIcon);
|
1205
|
-
iconStart.image = "http://www.joakim-systems.com/gicons/dd-start.png";
|
1206
|
-
var pStart = new GPoint(-80.8456, 35.22097);
|
1207
|
-
var mStart = new GMarker(pStart, iconStart);
|
1208
|
-
GEvent.addListener(mStart, "click", function() {
|
1209
|
-
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>2007-03-10T13:02:32Z </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.22097 , -80.8456 </td></tr><tr><td>Altitude: </td><td>232.295776m </td></tr></table>");
|
1210
|
-
});
|
1211
|
-
map.addOverlay(mStart);
|
1212
|
-
|
1213
|
-
var icon1 = new GIcon(baseIcon);
|
1214
|
-
icon1.image = "http://www.joakim-systems.com/gicons/marker1.png";
|
1215
|
-
var p1 = new GPoint(-80.851433, 35.224748);
|
1216
|
-
var m1 = new GMarker(p1, icon1);
|
1217
|
-
GEvent.addListener(m1, "click", function() {
|
1218
|
-
m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.00730366247046</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:10:56Z </td></tr><tr><td>Elapsed Time: </td><td>00:08:24 </td></tr><tr><td>Average Pace: </td><td>8:20.3 </td></tr><tr><td>Lat/Lng: </td><td>35.224748 , -80.851433 </td></tr><tr><td>Altitude: </td><td>228.450439m </td></tr></table>");
|
1219
|
-
});
|
1220
|
-
map.addOverlay(m1);
|
1221
|
-
|
1222
|
-
var icon2 = new GIcon(baseIcon);
|
1223
|
-
icon2.image = "http://www.joakim-systems.com/gicons/marker2.png";
|
1224
|
-
var p2 = new GPoint(-80.851289, 35.231963);
|
1225
|
-
var m2 = new GMarker(p2, icon2);
|
1226
|
-
GEvent.addListener(m2, "click", function() {
|
1227
|
-
m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.0070821643338</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:18:35Z </td></tr><tr><td>Elapsed Time: </td><td>00:16:03 </td></tr><tr><td>Average Pace: </td><td>7:59.8 </td></tr><tr><td>Lat/Lng: </td><td>35.231963 , -80.851289 </td></tr><tr><td>Altitude: </td><td>216.43396m </td></tr></table>");
|
1228
|
-
});
|
1229
|
-
map.addOverlay(m2);
|
1230
|
-
|
1231
|
-
var icon3 = new GIcon(baseIcon);
|
1232
|
-
icon3.image = "http://www.joakim-systems.com/gicons/marker3.png";
|
1233
|
-
var p3 = new GPoint(-80.840393, 35.221418);
|
1234
|
-
var m3 = new GMarker(p3, icon3);
|
1235
|
-
GEvent.addListener(m3, "click", function() {
|
1236
|
-
m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00382508587169</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:27:19Z </td></tr><tr><td>Elapsed Time: </td><td>00:24:47 </td></tr><tr><td>Average Pace: </td><td>8:15.0 </td></tr><tr><td>Lat/Lng: </td><td>35.221418 , -80.840393 </td></tr><tr><td>Altitude: </td><td>222.682495m </td></tr></table>");
|
1237
|
-
});
|
1238
|
-
map.addOverlay(m3);
|
1239
|
-
|
1240
|
-
var icon4 = new GIcon(baseIcon);
|
1241
|
-
icon4.image = "http://www.joakim-systems.com/gicons/marker4.png";
|
1242
|
-
var p4 = new GPoint(-80.828026, 35.211071);
|
1243
|
-
var m4 = new GMarker(p4, icon4);
|
1244
|
-
GEvent.addListener(m4, "click", function() {
|
1245
|
-
m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.01097485498824</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:36:13Z </td></tr><tr><td>Elapsed Time: </td><td>00:33:41 </td></tr><tr><td>Average Pace: </td><td>8:23.9 </td></tr><tr><td>Lat/Lng: </td><td>35.211071 , -80.828026 </td></tr><tr><td>Altitude: </td><td>225.566528m </td></tr></table>");
|
1246
|
-
});
|
1247
|
-
map.addOverlay(m4);
|
1248
|
-
|
1249
|
-
var icon5 = new GIcon(baseIcon);
|
1250
|
-
icon5.image = "http://www.joakim-systems.com/gicons/marker5.png";
|
1251
|
-
var p5 = new GPoint(-80.826266, 35.198202);
|
1252
|
-
var m5 = new GMarker(p5, icon5);
|
1253
|
-
GEvent.addListener(m5, "click", function() {
|
1254
|
-
m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.00703234760874</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:45:00Z </td></tr><tr><td>Elapsed Time: </td><td>00:42:28 </td></tr><tr><td>Average Pace: </td><td>8:28.9 </td></tr><tr><td>Lat/Lng: </td><td>35.198202 , -80.826266 </td></tr><tr><td>Altitude: </td><td>220.279175m </td></tr></table>");
|
1255
|
-
});
|
1256
|
-
map.addOverlay(m5);
|
1257
|
-
|
1258
|
-
var icon6 = new GIcon(baseIcon);
|
1259
|
-
icon6.image = "http://www.joakim-systems.com/gicons/marker6.png";
|
1260
|
-
var p6 = new GPoint(-80.822014, 35.18745);
|
1261
|
-
var m6 = new GMarker(p6, icon6);
|
1262
|
-
GEvent.addListener(m6, "click", function() {
|
1263
|
-
m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.01346957767746</td></tr><tr><td>Time of Day: </td><td>2007-03-10T13:53:44Z </td></tr><tr><td>Elapsed Time: </td><td>00:51:12 </td></tr><tr><td>Average Pace: </td><td>8:30.9 </td></tr><tr><td>Lat/Lng: </td><td>35.18745 , -80.822014 </td></tr><tr><td>Altitude: </td><td>211.627441m </td></tr></table>");
|
1264
|
-
});
|
1265
|
-
map.addOverlay(m6);
|
1266
|
-
|
1267
|
-
var icon7 = new GIcon(baseIcon);
|
1268
|
-
icon7.image = "http://www.joakim-systems.com/gicons/marker7.png";
|
1269
|
-
var p7 = new GPoint(-80.820568, 35.174682);
|
1270
|
-
var m7 = new GMarker(p7, icon7);
|
1271
|
-
GEvent.addListener(m7, "click", function() {
|
1272
|
-
m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.00842430149279</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:02:37Z </td></tr><tr><td>Elapsed Time: </td><td>01:00:05 </td></tr><tr><td>Average Pace: </td><td>8:34.4 </td></tr><tr><td>Lat/Lng: </td><td>35.174682 , -80.820568 </td></tr><tr><td>Altitude: </td><td>210.666016m </td></tr></table>");
|
1273
|
-
});
|
1274
|
-
map.addOverlay(m7);
|
1275
|
-
|
1276
|
-
var icon8 = new GIcon(baseIcon);
|
1277
|
-
icon8.image = "http://www.joakim-systems.com/gicons/marker8.png";
|
1278
|
-
var p8 = new GPoint(-80.830323, 35.168577);
|
1279
|
-
var m8 = new GMarker(p8, icon8);
|
1280
|
-
GEvent.addListener(m8, "click", function() {
|
1281
|
-
m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.00136965257832</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:11:07Z </td></tr><tr><td>Elapsed Time: </td><td>01:08:35 </td></tr><tr><td>Average Pace: </td><td>8:34.3 </td></tr><tr><td>Lat/Lng: </td><td>35.168577 , -80.830323 </td></tr><tr><td>Altitude: </td><td>192.881714m </td></tr></table>");
|
1282
|
-
});
|
1283
|
-
map.addOverlay(m8);
|
1284
|
-
|
1285
|
-
var icon9 = new GIcon(baseIcon);
|
1286
|
-
icon9.image = "http://www.joakim-systems.com/gicons/marker9.png";
|
1287
|
-
var p9 = new GPoint(-80.835537, 35.178899);
|
1288
|
-
var m9 = new GMarker(p9, icon9);
|
1289
|
-
GEvent.addListener(m9, "click", function() {
|
1290
|
-
m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.0042847545564</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:20:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:17:28 </td></tr><tr><td>Average Pace: </td><td>8:36.2 </td></tr><tr><td>Lat/Lng: </td><td>35.178899 , -80.835537 </td></tr><tr><td>Altitude: </td><td>210.185425m </td></tr></table>");
|
1291
|
-
});
|
1292
|
-
map.addOverlay(m9);
|
1293
|
-
|
1294
|
-
var icon10 = new GIcon(baseIcon);
|
1295
|
-
icon10.image = "http://www.joakim-systems.com/gicons/marker10.png";
|
1296
|
-
var p10 = new GPoint(-80.836097, 35.182462);
|
1297
|
-
var m10 = new GMarker(p10, icon10);
|
1298
|
-
GEvent.addListener(m10, "click", function() {
|
1299
|
-
m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0040814239414</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:28:37Z </td></tr><tr><td>Elapsed Time: </td><td>01:26:05 </td></tr><tr><td>Average Pace: </td><td>8:36.3 </td></tr><tr><td>Lat/Lng: </td><td>35.182462 , -80.836097 </td></tr><tr><td>Altitude: </td><td>216.43396m </td></tr></table>");
|
1300
|
-
});
|
1301
|
-
map.addOverlay(m10);
|
1302
|
-
|
1303
|
-
var icon11 = new GIcon(baseIcon);
|
1304
|
-
icon11.image = "http://www.joakim-systems.com/gicons/marker11.png";
|
1305
|
-
var p11 = new GPoint(-80.837008, 35.19239);
|
1306
|
-
var m11 = new GMarker(p11, icon11);
|
1307
|
-
GEvent.addListener(m11, "click", function() {
|
1308
|
-
m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0044706458184</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:37:11Z </td></tr><tr><td>Elapsed Time: </td><td>01:34:39 </td></tr><tr><td>Average Pace: </td><td>8:36.1 </td></tr><tr><td>Lat/Lng: </td><td>35.19239 , -80.837008 </td></tr><tr><td>Altitude: </td><td>207.782104m </td></tr></table>");
|
1309
|
-
});
|
1310
|
-
map.addOverlay(m11);
|
1311
|
-
|
1312
|
-
var icon12 = new GIcon(baseIcon);
|
1313
|
-
icon12.image = "http://www.joakim-systems.com/gicons/marker12.png";
|
1314
|
-
var p12 = new GPoint(-80.834299, 35.203703);
|
1315
|
-
var m12 = new GMarker(p12, icon12);
|
1316
|
-
GEvent.addListener(m12, "click", function() {
|
1317
|
-
m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0010707185888</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:46:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:43:28 </td></tr><tr><td>Average Pace: </td><td>8:37.3 </td></tr><tr><td>Lat/Lng: </td><td>35.203703 , -80.834299 </td></tr><tr><td>Altitude: </td><td>204.898071m </td></tr></table>");
|
1318
|
-
});
|
1319
|
-
map.addOverlay(m12);
|
1320
|
-
|
1321
|
-
var icon13 = new GIcon(baseIcon);
|
1322
|
-
icon13.image = "http://www.joakim-systems.com/gicons/marker13.png";
|
1323
|
-
var p13 = new GPoint(-80.842922, 35.214817);
|
1324
|
-
var m13 = new GMarker(p13, icon13);
|
1325
|
-
GEvent.addListener(m13, "click", function() {
|
1326
|
-
m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0134355949857</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:54:47Z </td></tr><tr><td>Elapsed Time: </td><td>01:52:15 </td></tr><tr><td>Average Pace: </td><td>8:37.5 </td></tr><tr><td>Lat/Lng: </td><td>35.214817 , -80.842922 </td></tr><tr><td>Altitude: </td><td>204.898071m </td></tr></table>");
|
1327
|
-
});
|
1328
|
-
map.addOverlay(m13);
|
1329
|
-
|
1330
|
-
var iconFinish = new GIcon(baseIcon);
|
1331
|
-
iconFinish.image = "http://www.joakim-systems.com/gicons/dd-end.png";
|
1332
|
-
var pFinish = new GPoint(-80.837947, 35.218373);
|
1333
|
-
var mFinish = new GMarker(pFinish, iconFinish);
|
1334
|
-
GEvent.addListener(mFinish, "click", function() {
|
1335
|
-
mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>13.3897702333148</td></tr><tr><td>Time of Day: </td><td>2007-03-10T14:57:44Z </td></tr><tr><td>Elapsed Time: </td><td>01:55:12 </td></tr><tr><td>Average Pace: </td><td>8:36.2 </td></tr><tr><td>Lat/Lng: </td><td>35.218373 , -80.837947 </td></tr><tr><td>Altitude: </td><td>212.588623m </td></tr></table>");
|
1336
|
-
});
|
1337
|
-
map.addOverlay(mFinish);
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
GEvent.addListener(map, "click", function() {
|
1343
|
-
var center = map.getCenter();
|
1344
|
-
|
1345
|
-
document.getElementById("messages").innerHTML = 'click: ' + center.toString();
|
1346
|
-
});
|
1347
|
-
GEvent.addListener(map, "moveend", function() {
|
1348
|
-
var center = map.getCenter();
|
1349
|
-
|
1350
|
-
document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
|
1351
|
-
});
|
1352
|
-
|
1353
|
-
}
|
1354
|
-
}
|
1355
|
-
//]]>
|
1356
|
-
|
1357
|
-
</script>
|
1358
|
-
</head>
|
1359
|
-
<body onload="load()" onunload="GUnload()">
|
1360
|
-
<center>
|
1361
|
-
<h3> 2007/03/10 Charlotte Corporate Cup Half Marathon </h3>
|
1362
|
-
<h5> Generated by Gooby Wed Mar 21 05:25:31 EDT 2007 <br> Gooby = Google APIs + Ruby </h5>
|
1363
|
-
<div id="map" style="width: 900px; height: 600px"></div>
|
1364
|
-
<div id="messages"></div>
|
1365
|
-
</center>
|
1366
|
-
</body>
|
1367
|
-
</html>
|