gooby 1.1.0 → 1.2.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 +200 -35
- data/bin/code_scan.rb +1 -3
- data/bin/gooby_been_there.rb +12 -14
- data/bin/gooby_config.rb +11 -3
- data/bin/gooby_csv_validation.rb +50 -0
- data/bin/gooby_first_trackpoints_as_poi.rb +31 -0
- data/bin/gooby_gen_gmap.rb +7 -3
- data/bin/gooby_parser.rb +7 -5
- data/bin/gooby_splitter.rb +7 -4
- data/bin/gooby_version.rb +7 -3
- data/bin/run_all.sh +12 -2
- data/bin/run_been_there.sh +4 -1
- data/bin/run_config.sh +12 -0
- data/bin/run_csv_validation.sh +15 -0
- data/bin/run_db_gen.sh +1 -1
- data/bin/run_db_load.sh +1 -1
- data/bin/run_first_trackpoints_as_poi.sh +16 -0
- data/bin/run_gen_gmaps.sh +7 -6
- data/bin/run_parse_full.sh +45 -0
- data/bin/run_parse_samples.sh +21 -0
- data/bin/run_split.sh +5 -4
- data/bin/run_version.sh +12 -0
- data/config/gooby_config.yaml +130 -131
- data/data/20050305_corporate_cup_hm.csv +251 -251
- data/data/20050430_nashville_marathon_km.csv +1208 -0
- data/data/20060115_phoenix_marathon.csv +1280 -1280
- data/data/20070101_davidson_11m.csv +251 -0
- data/data/{davidson_11m_20070101.xml → 20070101_davidson_11m.xml} +0 -0
- data/data/{davidson_5K_20070505.xml → 20070505_davidson_5k.xml} +0 -0
- data/data/20070505_davidson_5k_km.csv +286 -0
- data/data/hrm1.csv +5 -0
- data/lib/gooby.rb +27 -3144
- data/lib/gooby_code_scanner.rb +288 -0
- data/lib/gooby_command.rb +210 -0
- data/lib/gooby_configuration.rb +123 -0
- data/lib/gooby_counter_hash.rb +95 -0
- data/lib/gooby_course.rb +117 -0
- data/lib/gooby_csv_point.rb +71 -0
- data/lib/gooby_csv_reader.rb +71 -0
- data/lib/gooby_csv_run.rb +28 -0
- data/lib/gooby_delim_line.rb +42 -0
- data/lib/gooby_dttm.rb +87 -0
- data/lib/gooby_duration.rb +86 -0
- data/lib/gooby_forerunner_xml_parser.rb +191 -0
- data/lib/gooby_forerunner_xml_splitter.rb +115 -0
- data/lib/gooby_google_map_generator.rb +385 -0
- data/lib/gooby_history.rb +41 -0
- data/lib/gooby_kernel.rb +163 -0
- data/lib/gooby_lap.rb +30 -0
- data/lib/gooby_line.rb +80 -0
- data/lib/gooby_object.rb +22 -0
- data/lib/gooby_point.rb +172 -0
- data/lib/gooby_run.rb +213 -0
- data/lib/gooby_simple_xml_parser.rb +50 -0
- data/lib/gooby_test_helper.rb +23 -0
- data/lib/gooby_track.rb +47 -0
- data/lib/gooby_track_point.rb +229 -0
- data/lib/gooby_training_center_xml_parser.rb +224 -0
- data/lib/gooby_training_center_xml_splitter.rb +116 -0
- data/lib/split_code.sh +29 -0
- data/samples/20050305_corporate_cup_hm.html +269 -269
- data/samples/20050430_nashville_marathon.html +1410 -1266
- data/samples/20060115_phoenix_marathon.html +1311 -1311
- data/samples/{davidson_11m_20070101.html → 20070101_davidson_11m.html} +267 -267
- data/samples/20070505_davidson_5k.html +413 -0
- data/samples/been_there.txt +52 -704
- data/samples/hrm1.html +87 -0
- data/sql/gooby.ddl +20 -16
- data/sql/gooby_load.dml +36 -9
- metadata +48 -14
- data/bin/example_usage.txt +0 -55
- data/bin/run_parse.sh +0 -43
- data/bin/run_parse_named.sh +0 -19
- data/data/20050430_nashville_marathon.csv +0 -1208
- data/data/davidson_11m_20070101.csv +0 -251
- data/data/davidson_5K_20070505.csv +0 -286
- data/data/test1.txt +0 -4
- data/samples/davidson_5K_20070505.html +0 -395
@@ -3,8 +3,8 @@
|
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
4
|
<head>
|
5
5
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
6
|
-
<meta name="description" content="Google Map generated with Gooby 1.
|
7
|
-
<meta name="keywords" content="Google Map Gooby 1.
|
6
|
+
<meta name="description" content="Google Map generated with Gooby 1.2.0">
|
7
|
+
<meta name="keywords" content="Google Map Gooby 1.2.0 GPS">
|
8
8
|
<title> Google Map by Gooby </title>
|
9
9
|
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xR1l5lLpU9GCFYoS8YrTf8v3gVJ2hRLV1dTSiqDWwWSnMRkM7SVr0EKSA' type='text/javascript'></script>
|
10
10
|
<script type="text/javascript">
|
@@ -15,1218 +15,1218 @@
|
|
15
15
|
map.addControl(new GLargeMapControl());
|
16
16
|
map.addControl(new GMapTypeControl());
|
17
17
|
|
18
|
-
var centerPoint = new GLatLng(36.15751, -86.77647); // Gooby 1.
|
18
|
+
var centerPoint = new GLatLng(36.15751, -86.77647); // Gooby 1.2.0
|
19
19
|
map.setCenter(centerPoint, 12);
|
20
20
|
|
21
21
|
|
22
22
|
var points = new Array();
|
23
|
-
points.push(new GLatLng(36.14661,-86.80903)); // (1 of 1207.0) 2005-04-30T12:05:04Z 0 00:00:00 0.0 Gooby 1.
|
24
|
-
// points.push(new GLatLng(36.14663,-86.80897)); // (2 of 1207.0) 2005-04-30T12:05:08Z 4 00:00:04 0.
|
25
|
-
// points.push(new GLatLng(36.14665,-86.80897)); // (3 of 1207.0) 2005-04-30T12:05:09Z 5 00:00:05 0.
|
26
|
-
// points.push(new GLatLng(36.14676,-86.80882)); // (4 of 1207.0) 2005-04-30T12:05:14Z 10 00:00:10 0.
|
27
|
-
// points.push(new GLatLng(36.14678,-86.80875)); // (5 of 1207.0) 2005-04-30T12:05:16Z 12 00:00:12 0.
|
28
|
-
// points.push(new GLatLng(36.14686,-86.8086)); // (6 of 1207.0) 2005-04-30T12:05:21Z 17 00:00:17 0.
|
29
|
-
points.push(new GLatLng(36.14699,-86.80834)); // (7 of 1207.0) 2005-04-30T12:05:30Z 26 00:00:26 0.
|
30
|
-
// points.push(new GLatLng(36.14712,-86.80804)); // (8 of 1207.0) 2005-04-30T12:05:41Z 37 00:00:37 0.
|
31
|
-
// points.push(new GLatLng(36.14719,-86.80781)); // (9 of 1207.0) 2005-04-30T12:05:49Z 45 00:00:45 0.
|
32
|
-
// points.push(new GLatLng(36.14736,-86.8074)); // (10 of 1207.0) 2005-04-30T12:06:04Z 60 00:01:00 0.
|
33
|
-
// points.push(new GLatLng(36.14755,-86.80693)); // (11 of 1207.0) 2005-04-30T12:06:19Z 75 00:01:15 0.
|
34
|
-
// points.push(new GLatLng(36.14779,-86.80652)); // (12 of 1207.0) 2005-04-30T12:06:32Z 88 00:01:28 0.
|
35
|
-
points.push(new GLatLng(36.14802,-86.80603)); // (13 of 1207.0) 2005-04-30T12:06:47Z 103 00:01:43 0.
|
36
|
-
// points.push(new GLatLng(36.1482,-86.80562)); // (14 of 1207.0) 2005-04-30T12:07:00Z 116 00:01:56 0.
|
37
|
-
// points.push(new GLatLng(36.14841,-86.80517)); // (15 of 1207.0) 2005-04-30T12:07:14Z 130 00:02:10 0.
|
38
|
-
// points.push(new GLatLng(36.14869,-86.8047)); // (16 of 1207.0) 2005-04-30T12:07:29Z 145 00:02:25 0.
|
39
|
-
// points.push(new GLatLng(36.14882,-86.80435)); // (17 of 1207.0) 2005-04-30T12:07:40Z 156 00:02:36 0.
|
40
|
-
// points.push(new GLatLng(36.14899,-86.8039)); // (18 of 1207.0) 2005-04-30T12:07:54Z 170 00:02:50 0.
|
41
|
-
points.push(new GLatLng(36.14925,-86.80341)); // (19 of 1207.0) 2005-04-30T12:08:10Z 186 00:03:06 0.
|
42
|
-
// points.push(new GLatLng(36.1495,-86.80296)); // (20 of 1207.0) 2005-04-30T12:08:25Z 201 00:03:21 0.
|
43
|
-
// points.push(new GLatLng(36.15,-86.80182)); // (21 of 1207.0) 2005-04-30T12:09:00Z 236 00:03:56 0.
|
44
|
-
// points.push(new GLatLng(36.15041,-86.8009)); // (22 of 1207.0) 2005-04-30T12:09:28Z 264 00:04:24 0.
|
45
|
-
// points.push(new GLatLng(36.15073,-86.80036)); // (23 of 1207.0) 2005-04-30T12:09:45Z 281 00:04:41 0.
|
46
|
-
// points.push(new GLatLng(36.1509,-86.80002)); // (24 of 1207.0) 2005-04-30T12:09:56Z 292 00:04:52 0.
|
47
|
-
points.push(new GLatLng(36.15113,-86.79955)); // (25 of 1207.0) 2005-04-30T12:10:11Z 307 00:05:07 0.
|
48
|
-
|
49
|
-
// points.push(new GLatLng(36.15154,-86.79882)); // (27 of 1207.0) 2005-04-30T12:10:35Z 331 00:05:31
|
50
|
-
// points.push(new GLatLng(36.15176,-86.79841)); // (28 of 1207.0) 2005-04-30T12:10:48Z 344 00:05:44
|
51
|
-
// points.push(new GLatLng(36.15193,-86.79809)); // (29 of 1207.0) 2005-04-30T12:10:58Z 354 00:05:54
|
52
|
-
// points.push(new GLatLng(36.15212,-86.79768)); // (30 of 1207.0) 2005-04-30T12:11:11Z 367 00:06:07
|
53
|
-
points.push(new GLatLng(36.15223,-86.79742)); // (31 of 1207.0) 2005-04-30T12:11:19Z 375 00:06:15
|
54
|
-
|
55
|
-
// points.push(new GLatLng(36.15266,-86.79648)); // (33 of 1207.0) 2005-04-30T12:11:51Z 407 00:06:47
|
56
|
-
// points.push(new GLatLng(36.15279,-86.79618)); // (34 of 1207.0) 2005-04-30T12:12:02Z 418 00:06:58
|
57
|
-
// points.push(new GLatLng(36.15302,-86.79575)); // (35 of 1207.0) 2005-04-30T12:12:17Z 433 00:07:13
|
58
|
-
// points.push(new GLatLng(36.15319,-86.79538)); // (36 of 1207.0) 2005-04-30T12:12:30Z 446 00:07:26
|
59
|
-
points.push(new GLatLng(36.15341,-86.79502)); // (37 of 1207.0) 2005-04-30T12:12:43Z 459 00:07:39
|
60
|
-
|
61
|
-
// points.push(new GLatLng(36.15375,-86.79433)); // (39 of 1207.0) 2005-04-30T12:13:06Z 482 00:08:02
|
62
|
-
// points.push(new GLatLng(36.15384,-86.79407)); // (40 of 1207.0) 2005-04-30T12:13:14Z 490 00:08:10
|
63
|
-
// points.push(new GLatLng(36.15395,-86.79371)); // (41 of 1207.0) 2005-04-30T12:13:25Z 501 00:08:21
|
64
|
-
points.push(new GLatLng(36.15399,-86.79358)); // (42 of 1207.0) 2005-04-30T12:13:29Z 505 00:08:25 1.
|
65
|
-
// points.push(new GLatLng(36.15403,-86.79341)); // (43 of 1207.0) 2005-04-30T12:13:34Z 510 00:08:30 1.
|
66
|
-
|
67
|
-
// points.push(new GLatLng(36.15429,-86.79268)); // (45 of 1207.0) 2005-04-30T12:13:57Z 533 00:08:53 1.
|
68
|
-
// points.push(new GLatLng(36.15442,-86.79238)); // (46 of 1207.0) 2005-04-30T12:14:07Z 543 00:09:03 1.
|
69
|
-
// points.push(new GLatLng(36.15459,-86.79199)); // (47 of 1207.0) 2005-04-30T12:14:19Z 555 00:09:15 1.
|
70
|
-
points.push(new GLatLng(36.15476,-86.79163)); // (48 of 1207.0) 2005-04-30T12:14:31Z 567 00:09:27 1.
|
71
|
-
// points.push(new GLatLng(36.15491,-86.79128)); // (49 of 1207.0) 2005-04-30T12:14:42Z 578 00:09:38 1.
|
72
|
-
|
73
|
-
// points.push(new GLatLng(36.1553,-86.79043)); // (51 of 1207.0) 2005-04-30T12:15:09Z 605 00:10:05 1.
|
74
|
-
// points.push(new GLatLng(36.15545,-86.79004)); // (52 of 1207.0) 2005-04-30T12:15:21Z 617 00:10:17 1.
|
75
|
-
|
76
|
-
points.push(new GLatLng(36.15573,-86.78937)); // (54 of 1207.0) 2005-04-30T12:15:41Z 637 00:10:37
|
77
|
-
// points.push(new GLatLng(36.15588,-86.78903)); // (55 of 1207.0) 2005-04-30T12:15:52Z 648 00:10:48
|
78
|
-
// points.push(new GLatLng(36.15603,-86.78862)); // (56 of 1207.0) 2005-04-30T12:16:04Z 660 00:11:00
|
79
|
-
// points.push(new GLatLng(36.15616,-86.7883)); // (57 of 1207.0) 2005-04-30T12:16:14Z 670 00:11:10
|
80
|
-
// points.push(new GLatLng(36.15628,-86.788)); // (58 of 1207.0) 2005-04-30T12:16:24Z 680 00:11:20
|
81
|
-
|
82
|
-
points.push(new GLatLng(36.1565,-86.78755)); // (60 of 1207.0) 2005-04-30T12:16:40Z 696 00:11:36
|
83
|
-
// points.push(new GLatLng(36.15633,-86.7871)); // (61 of 1207.0) 2005-04-30T12:16:56Z 712 00:11:52
|
84
|
-
// points.push(new GLatLng(36.15577,-86.78695)); // (62 of 1207.0) 2005-04-30T12:17:13Z 729 00:12:09
|
85
|
-
// points.push(new GLatLng(36.15547,-86.78674)); // (63 of 1207.0) 2005-04-30T12:17:26Z 742 00:12:22
|
86
|
-
// points.push(new GLatLng(36.15517,-86.78658)); // (64 of 1207.0) 2005-04-30T12:17:38Z 754 00:12:34
|
87
|
-
|
88
|
-
points.push(new GLatLng(36.15483,-86.78633)); // (66 of 1207.0) 2005-04-30T12:17:52Z 768 00:12:48
|
89
|
-
// points.push(new GLatLng(36.15465,-86.78639)); // (67 of 1207.0) 2005-04-30T12:17:57Z 773 00:12:53
|
90
|
-
// points.push(new GLatLng(36.15461,-86.78643)); // (68 of 1207.0) 2005-04-30T12:17:59Z 775 00:12:55
|
91
|
-
// points.push(new GLatLng(36.15433,-86.78689)); // (69 of 1207.0) 2005-04-30T12:18:14Z 790 00:13:10
|
92
|
-
// points.push(new GLatLng(36.15414,-86.78731)); // (70 of 1207.0) 2005-04-30T12:18:28Z 804 00:13:24
|
93
|
-
|
94
|
-
points.push(new GLatLng(36.15375,-86.78815)); // (72 of 1207.0) 2005-04-30T12:18:55Z 831 00:13:51
|
95
|
-
// points.push(new GLatLng(36.15354,-86.78856)); // (73 of 1207.0) 2005-04-30T12:19:09Z 845 00:14:05
|
96
|
-
// points.push(new GLatLng(36.15332,-86.78899)); // (74 of 1207.0) 2005-04-30T12:19:23Z 859 00:14:19
|
97
|
-
// points.push(new GLatLng(36.15328,-86.78922)); // (75 of 1207.0) 2005-04-30T12:19:33Z 869 00:14:29
|
98
|
-
// points.push(new GLatLng(36.15322,-86.7894)); // (76 of 1207.0) 2005-04-30T12:19:40Z 876 00:14:36
|
99
|
-
|
100
|
-
points.push(new GLatLng(36.15296,-86.79002)); // (78 of 1207.0) 2005-04-30T12:20:05Z 901 00:15:01
|
101
|
-
// points.push(new GLatLng(36.15281,-86.79038)); // (79 of 1207.0) 2005-04-30T12:20:17Z 913 00:15:13
|
102
|
-
// points.push(new GLatLng(36.15264,-86.79075)); // (80 of 1207.0) 2005-04-30T12:20:30Z 926 00:15:26
|
103
|
-
// points.push(new GLatLng(36.15242,-86.79116)); // (81 of 1207.0) 2005-04-30T12:20:45Z 941 00:15:41
|
104
|
-
|
105
|
-
// points.push(new GLatLng(36.15225,-86.79184)); // (83 of 1207.0) 2005-04-30T12:21:09Z 965 00:16:05
|
106
|
-
points.push(new GLatLng(36.15219,-86.79216)); // (84 of 1207.0) 2005-04-30T12:21:19Z 975 00:16:15
|
107
|
-
// points.push(new GLatLng(36.1521,-86.7927)); // (85 of 1207.0) 2005-04-30T12:21:35Z 991 00:16:31
|
108
|
-
// points.push(new GLatLng(36.15193,-86.79313)); // (86 of 1207.0) 2005-04-30T12:21:49Z 1005 00:16:45
|
109
|
-
// points.push(new GLatLng(36.15165,-86.7933)); // (87 of 1207.0) 2005-04-30T12:22:01Z 1017 00:16:57
|
110
|
-
points.push(new GLatLng(36.15116,-86.79341)); // (88 of 1207.0) 2005-04-30T12:22:18Z 1034 00:17:14
|
111
|
-
// points.push(new GLatLng(36.15058,-86.79315)); // (89 of 1207.0) 2005-04-30T12:22:30Z 1046 00:17:26
|
112
|
-
// points.push(new GLatLng(36.15021,-86.79322)); // (90 of 1207.0) 2005-04-30T12:22:43Z 1059 00:17:39
|
113
|
-
// points.push(new GLatLng(36.1498,-86.79326)); // (91 of 1207.0) 2005-04-30T12:22:57Z 1073 00:17:53
|
114
|
-
// points.push(new GLatLng(36.1494,-86.79334)); // (92 of 1207.0) 2005-04-30T12:23:11Z 1087 00:18:07
|
115
|
-
// points.push(new GLatLng(36.1489,-86.79343)); // (93 of 1207.0) 2005-04-30T12:23:28Z 1104 00:18:24
|
116
|
-
points.push(new GLatLng(36.14852,-86.79349)); // (94 of 1207.0) 2005-04-30T12:23:41Z 1117 00:18:37
|
117
|
-
// points.push(new GLatLng(36.14811,-86.79356)); // (95 of 1207.0) 2005-04-30T12:23:55Z 1131 00:18:51
|
118
|
-
// points.push(new GLatLng(36.14796,-86.79362)); // (96 of 1207.0) 2005-04-30T12:24:01Z 1137 00:18:57
|
119
|
-
// points.push(new GLatLng(36.14774,-86.79345)); // (97 of 1207.0) 2005-04-30T12:24:08Z 1144 00:19:04
|
120
|
-
// points.push(new GLatLng(36.14759,-86.79352)); // (98 of 1207.0) 2005-04-30T12:24:13Z 1149 00:19:09
|
121
|
-
// points.push(new GLatLng(36.14723,-86.79367)); // (99 of 1207.0) 2005-04-30T12:24:26Z 1162 00:19:22
|
122
|
-
points.push(new GLatLng(36.14684,-86.79377)); // (100 of 1207.0) 2005-04-30T12:24:40Z 1176 00:19:36
|
123
|
-
// points.push(new GLatLng(36.14646,-86.79384)); // (101 of 1207.0) 2005-04-30T12:24:54Z 1190 00:19:50
|
124
|
-
// points.push(new GLatLng(36.14586,-86.79392)); // (102 of 1207.0) 2005-04-30T12:25:15Z 1211 00:20:11
|
125
|
-
// points.push(new GLatLng(36.14541,-86.79407)); // (103 of 1207.0) 2005-04-30T12:25:32Z 1228 00:20:28
|
126
|
-
// points.push(new GLatLng(36.14513,-86.79412)); // (104 of 1207.0) 2005-04-30T12:25:43Z 1239 00:20:39
|
127
|
-
// points.push(new GLatLng(36.14489,-86.79418)); // (105 of 1207.0) 2005-04-30T12:25:52Z 1248 00:20:48
|
128
|
-
points.push(new GLatLng(36.14433,-86.79431)); // (106 of 1207.0) 2005-04-30T12:26:13Z 1269 00:21:09
|
129
|
-
// points.push(new GLatLng(36.14393,-86.7944)); // (107 of 1207.0) 2005-04-30T12:26:29Z 1285 00:21:25
|
130
|
-
// points.push(new GLatLng(36.14365,-86.79444)); // (108 of 1207.0) 2005-04-30T12:26:39Z 1295 00:21:35
|
131
|
-
// points.push(new GLatLng(36.1432,-86.79444)); // (109 of 1207.0) 2005-04-30T12:26:55Z 1311 00:21:51
|
132
|
-
// points.push(new GLatLng(36.14272,-86.79452)); // (110 of 1207.0) 2005-04-30T12:27:12Z 1328 00:22:08
|
133
|
-
// points.push(new GLatLng(36.14225,-86.79465)); // (111 of 1207.0) 2005-04-30T12:27:29Z 1345 00:22:25
|
134
|
-
points.push(new GLatLng(36.14174,-86.79474)); // (112 of 1207.0) 2005-04-30T12:27:48Z 1364 00:22:44
|
135
|
-
// points.push(new GLatLng(36.14135,-86.79487)); // (113 of 1207.0) 2005-04-30T12:28:03Z 1379 00:22:59
|
136
|
-
// points.push(new GLatLng(36.14094,-86.795)); // (114 of 1207.0) 2005-04-30T12:28:19Z 1395 00:23:15
|
137
|
-
// points.push(new GLatLng(36.14053,-86.79508)); // (115 of 1207.0) 2005-04-30T12:28:37Z 1413 00:23:33
|
138
|
-
// points.push(new GLatLng(36.14006,-86.79513)); // (116 of 1207.0) 2005-04-30T12:29:01Z 1437 00:23:57
|
139
|
-
// points.push(new GLatLng(36.13961,-86.79519)); // (117 of 1207.0) 2005-04-30T12:29:19Z 1455 00:24:15
|
140
|
-
points.push(new GLatLng(36.1392,-86.79528)); // (118 of 1207.0) 2005-04-30T12:29:34Z 1470 00:24:30
|
141
|
-
// points.push(new GLatLng(36.13858,-86.79536)); // (119 of 1207.0) 2005-04-30T12:29:56Z 1492 00:24:52
|
142
|
-
// points.push(new GLatLng(36.13777,-86.79553)); // (120 of 1207.0) 2005-04-30T12:30:25Z 1521 00:25:21
|
143
|
-
points.push(new GLatLng(36.13714,-86.79568)); // (121 of 1207.0) 2005-04-30T12:30:48Z 1544 00:25:44
|
144
|
-
// points.push(new GLatLng(36.13693,-86.79575)); // (122 of 1207.0) 2005-04-30T12:30:56Z 1552 00:25:52
|
145
|
-
// points.push(new GLatLng(36.13678,-86.79579)); // (123 of 1207.0) 2005-04-30T12:31:02Z 1558 00:25:58
|
146
|
-
|
147
|
-
// points.push(new GLatLng(36.13609,-86.79639)); // (125 of 1207.0) 2005-04-30T12:31:33Z 1589 00:26:29
|
148
|
-
|
149
|
-
points.push(new GLatLng(36.13554,-86.79727)); // (127 of 1207.0) 2005-04-30T12:32:04Z 1620 00:27:00
|
150
|
-
// points.push(new GLatLng(36.13549,-86.79731)); // (128 of 1207.0) 2005-04-30T12:32:06Z 1622 00:27:02
|
151
|
-
// points.push(new GLatLng(36.13519,-86.79714)); // (129 of 1207.0) 2005-04-30T12:32:17Z 1633 00:27:13
|
152
|
-
// points.push(new GLatLng(36.13476,-86.79706)); // (130 of 1207.0) 2005-04-30T12:32:32Z 1648 00:27:28
|
153
|
-
// points.push(new GLatLng(36.13423,-86.79708)); // (131 of 1207.0) 2005-04-30T12:32:50Z 1666 00:27:46
|
154
|
-
|
155
|
-
points.push(new GLatLng(36.13305,-86.79723)); // (133 of 1207.0) 2005-04-30T12:33:30Z 1706 00:28:26
|
156
|
-
// points.push(new GLatLng(36.13277,-86.79714)); // (134 of 1207.0) 2005-04-30T12:33:42Z 1718 00:28:38
|
157
|
-
// points.push(new GLatLng(36.13275,-86.79712)); // (135 of 1207.0) 2005-04-30T12:33:43Z 1719 00:28:39
|
158
|
-
// points.push(new GLatLng(36.13277,-86.79686)); // (136 of 1207.0) 2005-04-30T12:33:50Z 1726 00:28:46
|
159
|
-
// points.push(new GLatLng(36.13277,-86.79652)); // (137 of 1207.0) 2005-04-30T12:33:59Z 1735 00:28:55
|
160
|
-
|
161
|
-
points.push(new GLatLng(36.13275,-86.79577)); // (139 of 1207.0) 2005-04-30T12:34:21Z 1757 00:29:17
|
162
|
-
// points.push(new GLatLng(36.13272,-86.79573)); // (140 of 1207.0) 2005-04-30T12:34:23Z 1759 00:29:19
|
163
|
-
// points.push(new GLatLng(36.13255,-86.7956)); // (141 of 1207.0) 2005-04-30T12:34:30Z 1766 00:29:26
|
164
|
-
// points.push(new GLatLng(36.13225,-86.79551)); // (142 of 1207.0) 2005-04-30T12:34:41Z 1777 00:29:37
|
165
|
-
// points.push(new GLatLng(36.13169,-86.79551)); // (143 of 1207.0) 2005-04-30T12:35:00Z 1796 00:29:56
|
166
|
-
|
167
|
-
points.push(new GLatLng(36.13051,-86.79562)); // (145 of 1207.0) 2005-04-30T12:35:44Z 1840 00:30:40
|
168
|
-
// points.push(new GLatLng(36.12983,-86.79566)); // (146 of 1207.0) 2005-04-30T12:36:08Z 1864 00:31:04
|
169
|
-
// points.push(new GLatLng(36.12929,-86.79564)); // (147 of 1207.0) 2005-04-30T12:36:27Z 1883 00:31:23
|
170
|
-
// points.push(new GLatLng(36.12871,-86.79538)); // (148 of 1207.0) 2005-04-30T12:36:49Z 1905 00:31:45
|
171
|
-
|
172
|
-
// points.push(new GLatLng(36.1283,-86.79497)); // (150 of 1207.0) 2005-04-30T12:37:10Z 1926 00:32:06
|
173
|
-
points.push(new GLatLng(36.12794,-86.79463)); // (151 of 1207.0) 2005-04-30T12:37:26Z 1942 00:32:22
|
174
|
-
// points.push(new GLatLng(36.12757,-86.7944)); // (152 of 1207.0) 2005-04-30T12:37:42Z 1958 00:32:38
|
175
|
-
// points.push(new GLatLng(36.12715,-86.79416)); // (153 of 1207.0) 2005-04-30T12:37:59Z 1975 00:32:55
|
176
|
-
// points.push(new GLatLng(36.12654,-86.79397)); // (154 of 1207.0) 2005-04-30T12:38:22Z 1998 00:33:18
|
177
|
-
|
178
|
-
// points.push(new GLatLng(36.12528,-86.79405)); // (156 of 1207.0) 2005-04-30T12:39:06Z 2042 00:34:02
|
179
|
-
points.push(new GLatLng(36.12476,-86.7942)); // (157 of 1207.0) 2005-04-30T12:39:24Z 2060 00:34:20
|
180
|
-
// points.push(new GLatLng(36.12448,-86.79427)); // (158 of 1207.0) 2005-04-30T12:39:34Z 2070 00:34:30
|
181
|
-
// points.push(new GLatLng(36.12421,-86.79435)); // (159 of 1207.0) 2005-04-30T12:39:44Z 2080 00:34:40
|
182
|
-
// points.push(new GLatLng(36.12365,-86.7945)); // (160 of 1207.0) 2005-04-30T12:40:04Z 2100 00:35:00
|
183
|
-
|
184
|
-
// points.push(new GLatLng(36.12236,-86.79478)); // (162 of 1207.0) 2005-04-30T12:40:51Z 2147 00:35:47
|
185
|
-
points.push(new GLatLng(36.12144,-86.79497)); // (163 of 1207.0) 2005-04-30T12:41:23Z 2179 00:36:19
|
186
|
-
// points.push(new GLatLng(36.12088,-86.79513)); // (164 of 1207.0) 2005-04-30T12:41:43Z 2199 00:36:39
|
187
|
-
// points.push(new GLatLng(36.12028,-86.79532)); // (165 of 1207.0) 2005-04-30T12:42:05Z 2221 00:37:01
|
188
|
-
|
189
|
-
// points.push(new GLatLng(36.11927,-86.79583)); // (167 of 1207.0) 2005-04-30T12:42:43Z 2259 00:37:39
|
190
|
-
// points.push(new GLatLng(36.11878,-86.79618)); // (168 of 1207.0) 2005-04-30T12:43:02Z 2278 00:37:58
|
191
|
-
points.push(new GLatLng(36.11815,-86.79669)); // (169 of 1207.0) 2005-04-30T12:43:28Z 2304 00:38:24
|
192
|
-
// points.push(new GLatLng(36.11783,-86.79701)); // (170 of 1207.0) 2005-04-30T12:43:43Z 2319 00:38:39
|
193
|
-
// points.push(new GLatLng(36.11749,-86.79734)); // (171 of 1207.0) 2005-04-30T12:43:58Z 2334 00:38:54
|
194
|
-
|
195
|
-
// points.push(new GLatLng(36.11685,-86.79789)); // (173 of 1207.0) 2005-04-30T12:44:26Z 2362 00:39:22
|
196
|
-
// points.push(new GLatLng(36.11646,-86.79821)); // (174 of 1207.0) 2005-04-30T12:44:42Z 2378 00:39:38
|
197
|
-
points.push(new GLatLng(36.11607,-86.79854)); // (175 of 1207.0) 2005-04-30T12:44:58Z 2394 00:39:54
|
198
|
-
// points.push(new GLatLng(36.11567,-86.79886)); // (176 of 1207.0) 2005-04-30T12:45:15Z 2411 00:40:11
|
199
|
-
// points.push(new GLatLng(36.11526,-86.79918)); // (177 of 1207.0) 2005-04-30T12:45:32Z 2428 00:40:28
|
200
|
-
|
201
|
-
// points.push(new GLatLng(36.11453,-86.79965)); // (179 of 1207.0) 2005-04-30T12:46:03Z 2459 00:40:59
|
202
|
-
// points.push(new GLatLng(36.11444,-86.79963)); // (180 of 1207.0) 2005-04-30T12:46:07Z 2463 00:41:03
|
203
|
-
points.push(new GLatLng(36.11442,-86.79944)); // (181 of 1207.0) 2005-04-30T12:46:12Z 2468 00:41:08
|
204
|
-
// points.push(new GLatLng(36.11438,-86.79907)); // (182 of 1207.0) 2005-04-30T12:46:21Z 2477 00:41:17
|
205
|
-
// points.push(new GLatLng(36.11429,-86.7986)); // (183 of 1207.0) 2005-04-30T12:46:33Z 2489 00:41:29
|
206
|
-
|
207
|
-
// points.push(new GLatLng(36.11427,-86.79839)); // (185 of 1207.0) 2005-04-30T12:46:39Z 2495 00:41:35
|
208
|
-
// points.push(new GLatLng(36.11416,-86.798)); // (186 of 1207.0) 2005-04-30T12:46:50Z 2506 00:41:46
|
209
|
-
points.push(new GLatLng(36.11412,-86.79768)); // (187 of 1207.0) 2005-04-30T12:46:59Z 2515 00:41:55
|
210
|
-
// points.push(new GLatLng(36.11408,-86.79714)); // (188 of 1207.0) 2005-04-30T12:47:14Z 2530 00:42:10
|
211
|
-
// points.push(new GLatLng(36.11393,-86.79669)); // (189 of 1207.0) 2005-04-30T12:47:27Z 2543 00:42:23
|
212
|
-
|
213
|
-
points.push(new GLatLng(36.11384,-86.79568)); // (191 of 1207.0) 2005-04-30T12:47:56Z 2572 00:42:52
|
214
|
-
// points.push(new GLatLng(36.11386,-86.79558)); // (192 of 1207.0) 2005-04-30T12:47:59Z 2575 00:42:55
|
215
|
-
// points.push(new GLatLng(36.11391,-86.79517)); // (193 of 1207.0) 2005-04-30T12:48:11Z 2587 00:43:07
|
216
|
-
// points.push(new GLatLng(36.11403,-86.79472)); // (194 of 1207.0) 2005-04-30T12:48:25Z 2601 00:43:21
|
217
|
-
// points.push(new GLatLng(36.11418,-86.79429)); // (195 of 1207.0) 2005-04-30T12:48:38Z 2614 00:43:34
|
218
|
-
|
219
|
-
points.push(new GLatLng(36.11412,-86.79324)); // (197 of 1207.0) 2005-04-30T12:49:07Z 2643 00:44:03
|
220
|
-
// points.push(new GLatLng(36.11408,-86.79272)); // (198 of 1207.0) 2005-04-30T12:49:21Z 2657 00:44:17
|
221
|
-
// points.push(new GLatLng(36.11406,-86.79223)); // (199 of 1207.0) 2005-04-30T12:49:35Z 2671 00:44:31
|
222
|
-
// points.push(new GLatLng(36.11399,-86.79186)); // (200 of 1207.0) 2005-04-30T12:49:46Z 2682 00:44:42
|
223
|
-
// points.push(new GLatLng(36.11395,-86.79148)); // (201 of 1207.0) 2005-04-30T12:49:57Z 2693 00:44:53
|
224
|
-
|
225
|
-
points.push(new GLatLng(36.11386,-86.7904)); // (203 of 1207.0) 2005-04-30T12:50:28Z 2724 00:45:24
|
226
|
-
// points.push(new GLatLng(36.11382,-86.78989)); // (204 of 1207.0) 2005-04-30T12:50:43Z 2739 00:45:39
|
227
|
-
// points.push(new GLatLng(36.11378,-86.78937)); // (205 of 1207.0) 2005-04-30T12:50:59Z 2755 00:45:55
|
228
|
-
// points.push(new GLatLng(36.11369,-86.78864)); // (206 of 1207.0) 2005-04-30T12:51:21Z 2777 00:46:17
|
229
|
-
// points.push(new GLatLng(36.11367,-86.78809)); // (207 of 1207.0) 2005-04-30T12:51:36Z 2792 00:46:32
|
230
|
-
|
231
|
-
points.push(new GLatLng(36.11352,-86.78689)); // (209 of 1207.0) 2005-04-30T12:52:11Z 2827 00:47:07
|
232
|
-
// points.push(new GLatLng(36.11352,-86.78678)); // (210 of 1207.0) 2005-04-30T12:52:14Z 2830 00:47:10
|
233
|
-
// points.push(new GLatLng(36.11369,-86.78671)); // (211 of 1207.0) 2005-04-30T12:52:19Z 2835 00:47:15
|
234
|
-
// points.push(new GLatLng(36.11376,-86.78671)); // (212 of 1207.0) 2005-04-30T12:52:21Z 2837 00:47:17
|
235
|
-
// points.push(new GLatLng(36.11421,-86.78671)); // (213 of 1207.0) 2005-04-30T12:52:34Z 2850 00:47:30
|
236
|
-
|
237
|
-
points.push(new GLatLng(36.11483,-86.78682)); // (215 of 1207.0) 2005-04-30T12:52:54Z 2870 00:47:50
|
238
|
-
// points.push(new GLatLng(36.11485,-86.78706)); // (216 of 1207.0) 2005-04-30T12:53:01Z 2877 00:47:57
|
239
|
-
// points.push(new GLatLng(36.11489,-86.78755)); // (217 of 1207.0) 2005-04-30T12:53:15Z 2891 00:48:11
|
240
|
-
// points.push(new GLatLng(36.11494,-86.78807)); // (218 of 1207.0) 2005-04-30T12:53:30Z 2906 00:48:26
|
241
|
-
// points.push(new GLatLng(36.11498,-86.78862)); // (219 of 1207.0) 2005-04-30T12:53:46Z 2922 00:48:42
|
242
|
-
|
243
|
-
points.push(new GLatLng(36.11509,-86.78993)); // (221 of 1207.0) 2005-04-30T12:54:22Z 2958 00:49:18
|
244
|
-
// points.push(new GLatLng(36.11511,-86.79045)); // (222 of 1207.0) 2005-04-30T12:54:37Z 2973 00:49:33
|
245
|
-
// points.push(new GLatLng(36.11513,-86.79077)); // (223 of 1207.0) 2005-04-30T12:54:47Z 2983 00:49:43
|
246
|
-
// points.push(new GLatLng(36.11519,-86.79116)); // (224 of 1207.0) 2005-04-30T12:54:59Z 2995 00:49:55
|
247
|
-
// points.push(new GLatLng(36.11521,-86.79128)); // (225 of 1207.0) 2005-04-30T12:55:07Z 3003 00:50:03
|
248
|
-
|
249
|
-
points.push(new GLatLng(36.11524,-86.79186)); // (227 of 1207.0) 2005-04-30T12:55:26Z 3022 00:50:22
|
250
|
-
// points.push(new GLatLng(36.11524,-86.79234)); // (228 of 1207.0) 2005-04-30T12:55:39Z 3035 00:50:35
|
251
|
-
// points.push(new GLatLng(36.11519,-86.7927)); // (229 of 1207.0) 2005-04-30T12:55:49Z 3045 00:50:45
|
252
|
-
// points.push(new GLatLng(36.11519,-86.79319)); // (230 of 1207.0) 2005-04-30T12:56:03Z 3059 00:50:59
|
253
|
-
points.push(new GLatLng(36.11519,-86.79386)); // (231 of 1207.0) 2005-04-30T12:56:23Z 3079 00:51:19
|
254
|
-
|
255
|
-
// points.push(new GLatLng(36.11521,-86.79437)); // (233 of 1207.0) 2005-04-30T12:56:37Z 3093 00:51:33
|
256
|
-
// points.push(new GLatLng(36.11524,-86.79493)); // (234 of 1207.0) 2005-04-30T12:56:53Z 3109 00:51:49
|
257
|
-
// points.push(new GLatLng(36.11521,-86.7956)); // (235 of 1207.0) 2005-04-30T12:57:12Z 3128 00:52:08
|
258
|
-
// points.push(new GLatLng(36.11526,-86.79598)); // (236 of 1207.0) 2005-04-30T12:57:24Z 3140 00:52:20
|
259
|
-
points.push(new GLatLng(36.11532,-86.7965)); // (237 of 1207.0) 2005-04-30T12:57:39Z 3155 00:52:35
|
260
|
-
|
261
|
-
|
262
|
-
// points.push(new GLatLng(36.11569,-86.79796)); // (240 of 1207.0) 2005-04-30T12:58:23Z 3199 00:53:19
|
263
|
-
// points.push(new GLatLng(36.11586,-86.79839)); // (241 of 1207.0) 2005-04-30T12:58:38Z 3214 00:53:34
|
264
|
-
// points.push(new GLatLng(36.11588,-86.79849)); // (242 of 1207.0) 2005-04-30T12:58:42Z 3218 00:53:38
|
265
|
-
points.push(new GLatLng(36.11594,-86.79854)); // (243 of 1207.0) 2005-04-30T12:58:45Z 3221 00:53:41
|
266
|
-
// points.push(new GLatLng(36.11603,-86.79856)); // (244 of 1207.0) 2005-04-30T12:58:48Z 3224 00:53:44
|
267
|
-
|
268
|
-
// points.push(new GLatLng(36.11652,-86.79815)); // (246 of 1207.0) 2005-04-30T12:59:09Z 3245 00:54:05
|
269
|
-
// points.push(new GLatLng(36.11678,-86.79794)); // (247 of 1207.0) 2005-04-30T12:59:20Z 3256 00:54:16
|
270
|
-
// points.push(new GLatLng(36.11695,-86.79779)); // (248 of 1207.0) 2005-04-30T12:59:28Z 3264 00:54:24
|
271
|
-
points.push(new GLatLng(36.11719,-86.79757)); // (249 of 1207.0) 2005-04-30T12:59:39Z 3275 00:54:35
|
272
|
-
// points.push(new GLatLng(36.11749,-86.79731)); // (250 of 1207.0) 2005-04-30T12:59:52Z 3288 00:54:48
|
273
|
-
|
274
|
-
// points.push(new GLatLng(36.11807,-86.79684)); // (252 of 1207.0) 2005-04-30T13:00:18Z 3314 00:55:14
|
275
|
-
// points.push(new GLatLng(36.11837,-86.79656)); // (253 of 1207.0) 2005-04-30T13:00:31Z 3327 00:55:27
|
276
|
-
// points.push(new GLatLng(36.1188,-86.79622)); // (254 of 1207.0) 2005-04-30T13:00:49Z 3345 00:55:45
|
277
|
-
points.push(new GLatLng(36.11912,-86.79592)); // (255 of 1207.0) 2005-04-30T13:01:04Z 3360 00:56:00
|
278
|
-
// points.push(new GLatLng(36.11948,-86.79568)); // (256 of 1207.0) 2005-04-30T13:01:18Z 3374 00:56:14
|
279
|
-
|
280
|
-
// points.push(new GLatLng(36.12043,-86.79519)); // (258 of 1207.0) 2005-04-30T13:01:53Z 3409 00:56:49
|
281
|
-
// points.push(new GLatLng(36.12094,-86.79502)); // (259 of 1207.0) 2005-04-30T13:02:12Z 3428 00:57:08
|
282
|
-
// points.push(new GLatLng(36.12131,-86.79489)); // (260 of 1207.0) 2005-04-30T13:02:26Z 3442 00:57:22
|
283
|
-
points.push(new GLatLng(36.12182,-86.79478)); // (261 of 1207.0) 2005-04-30T13:02:45Z 3461 00:57:41
|
284
|
-
// points.push(new GLatLng(36.12238,-86.7947)); // (262 of 1207.0) 2005-04-30T13:03:05Z 3481 00:58:01
|
285
|
-
|
286
|
-
|
287
|
-
// points.push(new GLatLng(36.12388,-86.79444)); // (265 of 1207.0) 2005-04-30T13:03:59Z 3535 00:58:55
|
288
|
-
// points.push(new GLatLng(36.12429,-86.79431)); // (266 of 1207.0) 2005-04-30T13:04:16Z 3552 00:59:12
|
289
|
-
points.push(new GLatLng(36.12466,-86.7942)); // (267 of 1207.0) 2005-04-30T13:04:30Z 3566 00:59:26
|
290
|
-
// points.push(new GLatLng(36.12502,-86.79414)); // (268 of 1207.0) 2005-04-30T13:04:44Z 3580 00:59:40
|
291
|
-
// points.push(new GLatLng(36.12532,-86.79407)); // (269 of 1207.0) 2005-04-30T13:04:56Z 3592 00:59:52
|
292
|
-
points.push(new GLatLng(36.12579,-86.79399)); // (270 of 1207.0) 2005-04-30T13:05:15Z 3611 01:00:11
|
293
|
-
// points.push(new GLatLng(36.12584,-86.79397)); // (271 of 1207.0) 2005-04-30T13:05:17Z 3613 01:00:13
|
294
|
-
// points.push(new GLatLng(36.12631,-86.79394)); // (272 of 1207.0) 2005-04-30T13:05:35Z 3631 01:00:31
|
295
|
-
// points.push(new GLatLng(36.12672,-86.79399)); // (273 of 1207.0) 2005-04-30T13:05:50Z 3646 01:00:46
|
296
|
-
// points.push(new GLatLng(36.12723,-86.79412)); // (274 of 1207.0) 2005-04-30T13:06:08Z 3664 01:01:04
|
297
|
-
// points.push(new GLatLng(36.12764,-86.79427)); // (275 of 1207.0) 2005-04-30T13:06:25Z 3681 01:01:21
|
298
|
-
points.push(new GLatLng(36.12809,-86.79452)); // (276 of 1207.0) 2005-04-30T13:06:43Z 3699 01:01:39
|
299
|
-
// points.push(new GLatLng(36.12845,-86.79485)); // (277 of 1207.0) 2005-04-30T13:06:59Z 3715 01:01:55
|
300
|
-
// points.push(new GLatLng(36.12884,-86.79513)); // (278 of 1207.0) 2005-04-30T13:07:15Z 3731 01:02:11
|
301
|
-
// points.push(new GLatLng(36.12918,-86.7954)); // (279 of 1207.0) 2005-04-30T13:07:29Z 3745 01:02:25
|
302
|
-
// points.push(new GLatLng(36.12966,-86.79564)); // (280 of 1207.0) 2005-04-30T13:07:47Z 3763 01:02:43
|
303
|
-
// points.push(new GLatLng(36.12989,-86.79564)); // (281 of 1207.0) 2005-04-30T13:07:56Z 3772 01:02:52
|
304
|
-
points.push(new GLatLng(36.13039,-86.79562)); // (282 of 1207.0) 2005-04-30T13:08:13Z 3789 01:03:09
|
305
|
-
// points.push(new GLatLng(36.13084,-86.79555)); // (283 of 1207.0) 2005-04-30T13:08:29Z 3805 01:03:25
|
306
|
-
// points.push(new GLatLng(36.13148,-86.79551)); // (284 of 1207.0) 2005-04-30T13:08:52Z 3828 01:03:48
|
307
|
-
|
308
|
-
// points.push(new GLatLng(36.13245,-86.79555)); // (286 of 1207.0) 2005-04-30T13:09:28Z 3864 01:04:24
|
309
|
-
// points.push(new GLatLng(36.13281,-86.79562)); // (287 of 1207.0) 2005-04-30T13:09:41Z 3877 01:04:37
|
310
|
-
points.push(new GLatLng(36.13287,-86.79566)); // (288 of 1207.0) 2005-04-30T13:09:43Z 3879 01:04:39
|
311
|
-
// points.push(new GLatLng(36.13292,-86.79579)); // (289 of 1207.0) 2005-04-30T13:09:47Z 3883 01:04:43
|
312
|
-
// points.push(new GLatLng(36.13294,-86.79594)); // (290 of 1207.0) 2005-04-30T13:09:51Z 3887 01:04:47
|
313
|
-
|
314
|
-
// points.push(new GLatLng(36.13307,-86.7971)); // (292 of 1207.0) 2005-04-30T13:10:23Z 3919 01:05:19
|
315
|
-
// points.push(new GLatLng(36.13309,-86.79716)); // (293 of 1207.0) 2005-04-30T13:10:25Z 3921 01:05:21
|
316
|
-
points.push(new GLatLng(36.13322,-86.79729)); // (294 of 1207.0) 2005-04-30T13:10:30Z 3926 01:05:26
|
317
|
-
// points.push(new GLatLng(36.13326,-86.79729)); // (295 of 1207.0) 2005-04-30T13:10:31Z 3927 01:05:27
|
318
|
-
// points.push(new GLatLng(36.13375,-86.79727)); // (296 of 1207.0) 2005-04-30T13:10:48Z 3944 01:05:44
|
319
|
-
|
320
|
-
// points.push(new GLatLng(36.13498,-86.79708)); // (298 of 1207.0) 2005-04-30T13:11:32Z 3988 01:06:28
|
321
|
-
// points.push(new GLatLng(36.13547,-86.79703)); // (299 of 1207.0) 2005-04-30T13:11:50Z 4006 01:06:46
|
322
|
-
points.push(new GLatLng(36.13564,-86.79695)); // (300 of 1207.0) 2005-04-30T13:11:57Z 4013 01:06:53
|
323
|
-
// points.push(new GLatLng(36.13577,-86.79673)); // (301 of 1207.0) 2005-04-30T13:12:05Z 4021 01:07:01
|
324
|
-
// points.push(new GLatLng(36.13592,-86.79639)); // (302 of 1207.0) 2005-04-30T13:12:17Z 4033 01:07:13
|
325
|
-
|
326
|
-
// points.push(new GLatLng(36.13635,-86.79562)); // (304 of 1207.0) 2005-04-30T13:12:45Z 4061 01:07:41
|
327
|
-
// points.push(new GLatLng(36.13652,-86.79536)); // (305 of 1207.0) 2005-04-30T13:12:55Z 4071 01:07:51
|
328
|
-
points.push(new GLatLng(36.13682,-86.79497)); // (306 of 1207.0) 2005-04-30T13:13:10Z 4086 01:08:06
|
329
|
-
// points.push(new GLatLng(36.13712,-86.79463)); // (307 of 1207.0) 2005-04-30T13:13:24Z 4100 01:08:20
|
330
|
-
points.push(new GLatLng(36.13751,-86.79433)); // (308 of 1207.0) 2005-04-30T13:13:40Z 4116 01:08:36
|
331
|
-
|
332
|
-
// points.push(new GLatLng(36.138,-86.79412)); // (310 of 1207.0) 2005-04-30T13:13:58Z 4134 01:08:54
|
333
|
-
// points.push(new GLatLng(36.1383,-86.79412)); // (311 of 1207.0) 2005-04-30T13:14:08Z 4144 01:09:04
|
334
|
-
|
335
|
-
// points.push(new GLatLng(36.13935,-86.79397)); // (313 of 1207.0) 2005-04-30T13:14:47Z 4183 01:09:43
|
336
|
-
points.push(new GLatLng(36.13989,-86.7939)); // (314 of 1207.0) 2005-04-30T13:15:05Z 4201 01:10:01
|
337
|
-
// points.push(new GLatLng(36.14013,-86.79388)); // (315 of 1207.0) 2005-04-30T13:15:13Z 4209 01:10:09
|
338
|
-
// points.push(new GLatLng(36.14017,-86.79386)); // (316 of 1207.0) 2005-04-30T13:15:16Z 4212 01:10:12
|
339
|
-
// points.push(new GLatLng(36.14043,-86.79382)); // (317 of 1207.0) 2005-04-30T13:15:25Z 4221 01:10:21
|
340
|
-
|
341
|
-
// points.push(new GLatLng(36.14174,-86.79354)); // (319 of 1207.0) 2005-04-30T13:16:09Z 4265 01:11:05
|
342
|
-
points.push(new GLatLng(36.14238,-86.79341)); // (320 of 1207.0) 2005-04-30T13:16:32Z 4288 01:11:28
|
343
|
-
// points.push(new GLatLng(36.14315,-86.79328)); // (321 of 1207.0) 2005-04-30T13:16:58Z 4314 01:11:54
|
344
|
-
// points.push(new GLatLng(36.14373,-86.79322)); // (322 of 1207.0) 2005-04-30T13:17:17Z 4333 01:12:13
|
345
|
-
// points.push(new GLatLng(36.14431,-86.79311)); // (323 of 1207.0) 2005-04-30T13:17:37Z 4353 01:12:33
|
346
|
-
|
347
|
-
// points.push(new GLatLng(36.14541,-86.79287)); // (325 of 1207.0) 2005-04-30T13:18:17Z 4393 01:13:13
|
348
|
-
points.push(new GLatLng(36.14573,-86.79279)); // (326 of 1207.0) 2005-04-30T13:18:29Z 4405 01:13:25
|
349
|
-
// points.push(new GLatLng(36.14616,-86.7927)); // (327 of 1207.0) 2005-04-30T13:18:44Z 4420 01:13:40
|
350
|
-
// points.push(new GLatLng(36.14652,-86.79261)); // (328 of 1207.0) 2005-04-30T13:18:57Z 4433 01:13:53
|
351
|
-
// points.push(new GLatLng(36.14697,-86.79253)); // (329 of 1207.0) 2005-04-30T13:19:12Z 4448 01:14:08
|
352
|
-
|
353
|
-
|
354
|
-
points.push(new GLatLng(36.14839,-86.79225)); // (332 of 1207.0) 2005-04-30T13:20:03Z 4499 01:14:59
|
355
|
-
// points.push(new GLatLng(36.1489,-86.79221)); // (333 of 1207.0) 2005-04-30T13:20:21Z 4517 01:15:17
|
356
|
-
// points.push(new GLatLng(36.14916,-86.79214)); // (334 of 1207.0) 2005-04-30T13:20:31Z 4527 01:15:27
|
357
|
-
// points.push(new GLatLng(36.14935,-86.79212)); // (335 of 1207.0) 2005-04-30T13:20:42Z 4538 01:15:38
|
358
|
-
// points.push(new GLatLng(36.14957,-86.79206)); // (336 of 1207.0) 2005-04-30T13:20:53Z 4549 01:15:49
|
359
|
-
|
360
|
-
points.push(new GLatLng(36.15066,-86.79186)); // (338 of 1207.0) 2005-04-30T13:21:32Z 4588 01:16:28
|
361
|
-
// points.push(new GLatLng(36.15126,-86.7918)); // (339 of 1207.0) 2005-04-30T13:21:53Z 4609 01:16:49
|
362
|
-
// points.push(new GLatLng(36.15167,-86.79169)); // (340 of 1207.0) 2005-04-30T13:22:07Z 4623 01:17:03
|
363
|
-
points.push(new GLatLng(36.15189,-86.79165)); // (341 of 1207.0) 2005-04-30T13:22:15Z 4631 01:17:11
|
364
|
-
// points.push(new GLatLng(36.15193,-86.79131)); // (342 of 1207.0) 2005-04-30T13:22:25Z 4641 01:17:21
|
365
|
-
|
366
|
-
// points.push(new GLatLng(36.15191,-86.79116)); // (344 of 1207.0) 2005-04-30T13:22:29Z 4645 01:17:25
|
367
|
-
// points.push(new GLatLng(36.15182,-86.79101)); // (345 of 1207.0) 2005-04-30T13:22:33Z 4649 01:17:29
|
368
|
-
// points.push(new GLatLng(36.15178,-86.79073)); // (346 of 1207.0) 2005-04-30T13:22:41Z 4657 01:17:37
|
369
|
-
points.push(new GLatLng(36.15176,-86.79017)); // (347 of 1207.0) 2005-04-30T13:22:57Z 4673 01:17:53
|
370
|
-
// points.push(new GLatLng(36.15169,-86.78967)); // (348 of 1207.0) 2005-04-30T13:23:11Z 4687 01:18:07
|
371
|
-
|
372
|
-
// points.push(new GLatLng(36.15163,-86.78897)); // (350 of 1207.0) 2005-04-30T13:23:30Z 4706 01:18:26
|
373
|
-
// points.push(new GLatLng(36.15159,-86.78854)); // (351 of 1207.0) 2005-04-30T13:23:42Z 4718 01:18:38
|
374
|
-
// points.push(new GLatLng(36.15156,-86.78832)); // (352 of 1207.0) 2005-04-30T13:23:48Z 4724 01:18:44
|
375
|
-
points.push(new GLatLng(36.1515,-86.78785)); // (353 of 1207.0) 2005-04-30T13:24:02Z 4738 01:18:58
|
376
|
-
// points.push(new GLatLng(36.15144,-86.78738)); // (354 of 1207.0) 2005-04-30T13:24:16Z 4752 01:19:12
|
377
|
-
|
378
|
-
// points.push(new GLatLng(36.15135,-86.78671)); // (356 of 1207.0) 2005-04-30T13:24:35Z 4771 01:19:31
|
379
|
-
// points.push(new GLatLng(36.15131,-86.78646)); // (357 of 1207.0) 2005-04-30T13:24:42Z 4778 01:19:38
|
380
|
-
|
381
|
-
points.push(new GLatLng(36.15124,-86.78568)); // (359 of 1207.0) 2005-04-30T13:25:04Z 4800 01:20:00
|
382
|
-
// points.push(new GLatLng(36.1512,-86.7853)); // (360 of 1207.0) 2005-04-30T13:25:15Z 4811 01:20:11
|
383
|
-
// points.push(new GLatLng(36.15113,-86.78485)); // (361 of 1207.0) 2005-04-30T13:25:28Z 4824 01:20:24
|
384
|
-
// points.push(new GLatLng(36.15116,-86.7844)); // (362 of 1207.0) 2005-04-30T13:25:41Z 4837 01:20:37
|
385
|
-
// points.push(new GLatLng(36.15131,-86.78425)); // (363 of 1207.0) 2005-04-30T13:25:49Z 4845 01:20:45
|
386
|
-
|
387
|
-
points.push(new GLatLng(36.15174,-86.78412)); // (365 of 1207.0) 2005-04-30T13:26:02Z 4858 01:20:58
|
388
|
-
// points.push(new GLatLng(36.15197,-86.78418)); // (366 of 1207.0) 2005-04-30T13:26:05Z 4861 01:21:01
|
389
|
-
// points.push(new GLatLng(36.15214,-86.7841)); // (367 of 1207.0) 2005-04-30T13:26:12Z 4868 01:21:08
|
390
|
-
// points.push(new GLatLng(36.15229,-86.78399)); // (368 of 1207.0) 2005-04-30T13:26:18Z 4874 01:21:14
|
391
|
-
// points.push(new GLatLng(36.15262,-86.78382)); // (369 of 1207.0) 2005-04-30T13:26:30Z 4886 01:21:26
|
392
|
-
|
393
|
-
points.push(new GLatLng(36.15326,-86.78382)); // (371 of 1207.0) 2005-04-30T13:26:53Z 4909 01:21:49
|
394
|
-
// points.push(new GLatLng(36.15347,-86.78395)); // (372 of 1207.0) 2005-04-30T13:27:01Z 4917 01:21:57
|
395
|
-
// points.push(new GLatLng(36.15369,-86.78412)); // (373 of 1207.0) 2005-04-30T13:27:10Z 4926 01:22:06
|
396
|
-
// points.push(new GLatLng(36.15407,-86.78444)); // (374 of 1207.0) 2005-04-30T13:27:27Z 4943 01:22:23
|
397
|
-
// points.push(new GLatLng(36.15448,-86.7847)); // (375 of 1207.0) 2005-04-30T13:27:43Z 4959 01:22:39
|
398
|
-
|
399
|
-
points.push(new GLatLng(36.1548,-86.78483)); // (377 of 1207.0) 2005-04-30T13:27:55Z 4971 01:22:51
|
400
|
-
// points.push(new GLatLng(36.15493,-86.78487)); // (378 of 1207.0) 2005-04-30T13:28:00Z 4976 01:22:56
|
401
|
-
// points.push(new GLatLng(36.15534,-86.78504)); // (379 of 1207.0) 2005-04-30T13:28:15Z 4991 01:23:11
|
402
|
-
// points.push(new GLatLng(36.15566,-86.7853)); // (380 of 1207.0) 2005-04-30T13:28:28Z 5004 01:23:24
|
403
|
-
// points.push(new GLatLng(36.15616,-86.78555)); // (381 of 1207.0) 2005-04-30T13:28:48Z 5024 01:23:44
|
404
|
-
|
405
|
-
points.push(new GLatLng(36.15725,-86.78628)); // (383 of 1207.0) 2005-04-30T13:29:32Z 5068 01:24:28
|
406
|
-
|
407
|
-
// points.push(new GLatLng(36.15837,-86.78727)); // (385 of 1207.0) 2005-04-30T13:30:19Z 5115 01:25:15
|
408
|
-
points.push(new GLatLng(36.15858,-86.78753)); // (386 of 1207.0) 2005-04-30T13:30:29Z 5125 01:25:25
|
409
|
-
// points.push(new GLatLng(36.15886,-86.78777)); // (387 of 1207.0) 2005-04-30T13:30:40Z 5136 01:25:36
|
410
|
-
// points.push(new GLatLng(36.15912,-86.788)); // (388 of 1207.0) 2005-04-30T13:30:51Z 5147 01:25:47
|
411
|
-
// points.push(new GLatLng(36.15933,-86.78822)); // (389 of 1207.0) 2005-04-30T13:31:01Z 5157 01:25:57
|
412
|
-
|
413
|
-
// points.push(new GLatLng(36.15974,-86.78862)); // (391 of 1207.0) 2005-04-30T13:31:19Z 5175 01:26:15
|
414
|
-
points.push(new GLatLng(36.16002,-86.78886)); // (392 of 1207.0) 2005-04-30T13:31:30Z 5186 01:26:26
|
415
|
-
// points.push(new GLatLng(36.16021,-86.78901)); // (393 of 1207.0) 2005-04-30T13:31:38Z 5194 01:26:34
|
416
|
-
// points.push(new GLatLng(36.16047,-86.78922)); // (394 of 1207.0) 2005-04-30T13:31:49Z 5205 01:26:45
|
417
|
-
// points.push(new GLatLng(36.16064,-86.78937)); // (395 of 1207.0) 2005-04-30T13:31:56Z 5212 01:26:52
|
418
|
-
|
419
|
-
// points.push(new GLatLng(36.16109,-86.7897)); // (397 of 1207.0) 2005-04-30T13:32:15Z 5231 01:27:11
|
420
|
-
points.push(new GLatLng(36.16131,-86.78991)); // (398 of 1207.0) 2005-04-30T13:32:25Z 5241 01:27:21
|
421
|
-
// points.push(new GLatLng(36.16156,-86.79015)); // (399 of 1207.0) 2005-04-30T13:32:36Z 5252 01:27:32
|
422
|
-
// points.push(new GLatLng(36.16176,-86.7903)); // (400 of 1207.0) 2005-04-30T13:32:44Z 5260 01:27:40
|
423
|
-
// points.push(new GLatLng(36.16195,-86.79043)); // (401 of 1207.0) 2005-04-30T13:32:52Z 5268 01:27:48
|
424
|
-
|
425
|
-
// points.push(new GLatLng(36.16223,-86.79045)); // (403 of 1207.0) 2005-04-30T13:33:02Z 5278 01:27:58
|
426
|
-
points.push(new GLatLng(36.16234,-86.79028)); // (404 of 1207.0) 2005-04-30T13:33:09Z 5285 01:28:05
|
427
|
-
// points.push(new GLatLng(36.16236,-86.79023)); // (405 of 1207.0) 2005-04-30T13:33:10Z 5286 01:28:06
|
428
|
-
// points.push(new GLatLng(36.16253,-86.78989)); // (406 of 1207.0) 2005-04-30T13:33:22Z 5298 01:28:18
|
429
|
-
// points.push(new GLatLng(36.16272,-86.78955)); // (407 of 1207.0) 2005-04-30T13:33:34Z 5310 01:28:30
|
430
|
-
|
431
|
-
// points.push(new GLatLng(36.16309,-86.78882)); // (409 of 1207.0) 2005-04-30T13:34:01Z 5337 01:28:57
|
432
|
-
points.push(new GLatLng(36.16334,-86.7883)); // (410 of 1207.0) 2005-04-30T13:34:19Z 5355 01:29:15
|
433
|
-
// points.push(new GLatLng(36.16349,-86.78804)); // (411 of 1207.0) 2005-04-30T13:34:29Z 5365 01:29:25
|
434
|
-
// points.push(new GLatLng(36.1636,-86.78792)); // (412 of 1207.0) 2005-04-30T13:34:36Z 5372 01:29:32
|
435
|
-
// points.push(new GLatLng(36.16386,-86.78802)); // (413 of 1207.0) 2005-04-30T13:34:46Z 5382 01:29:42
|
436
|
-
|
437
|
-
// points.push(new GLatLng(36.16433,-86.78845)); // (415 of 1207.0) 2005-04-30T13:35:07Z 5403 01:30:03
|
438
|
-
points.push(new GLatLng(36.16452,-86.78856)); // (416 of 1207.0) 2005-04-30T13:35:14Z 5410 01:30:10
|
439
|
-
|
440
|
-
// points.push(new GLatLng(36.16525,-86.7889)); // (418 of 1207.0) 2005-04-30T13:35:43Z 5439 01:30:39
|
441
|
-
// points.push(new GLatLng(36.16583,-86.78899)); // (419 of 1207.0) 2005-04-30T13:36:02Z 5458 01:30:58
|
442
|
-
// points.push(new GLatLng(36.16631,-86.78897)); // (420 of 1207.0) 2005-04-30T13:36:19Z 5475 01:31:15
|
443
|
-
// points.push(new GLatLng(36.16673,-86.78884)); // (421 of 1207.0) 2005-04-30T13:36:34Z 5490 01:31:30
|
444
|
-
points.push(new GLatLng(36.16716,-86.78854)); // (422 of 1207.0) 2005-04-30T13:36:51Z 5507 01:31:47
|
445
|
-
|
446
|
-
// points.push(new GLatLng(36.16768,-86.78794)); // (424 of 1207.0) 2005-04-30T13:37:14Z 5530 01:32:10
|
447
|
-
// points.push(new GLatLng(36.16776,-86.78792)); // (425 of 1207.0) 2005-04-30T13:37:17Z 5533 01:32:13
|
448
|
-
// points.push(new GLatLng(36.16819,-86.78811)); // (426 of 1207.0) 2005-04-30T13:37:33Z 5549 01:32:29
|
449
|
-
// points.push(new GLatLng(36.16852,-86.78828)); // (427 of 1207.0) 2005-04-30T13:37:46Z 5562 01:32:42
|
450
|
-
points.push(new GLatLng(36.16879,-86.78849)); // (428 of 1207.0) 2005-04-30T13:37:57Z 5573 01:32:53
|
451
|
-
|
452
|
-
// points.push(new GLatLng(36.16948,-86.78897)); // (430 of 1207.0) 2005-04-30T13:38:22Z 5598 01:33:18
|
453
|
-
// points.push(new GLatLng(36.16978,-86.78916)); // (431 of 1207.0) 2005-04-30T13:38:35Z 5611 01:33:31
|
454
|
-
// points.push(new GLatLng(36.16997,-86.78937)); // (432 of 1207.0) 2005-04-30T13:38:49Z 5625 01:33:45
|
455
|
-
// points.push(new GLatLng(36.17017,-86.7895)); // (433 of 1207.0) 2005-04-30T13:39:00Z 5636 01:33:56
|
456
|
-
points.push(new GLatLng(36.17034,-86.78961)); // (434 of 1207.0) 2005-04-30T13:39:07Z 5643 01:34:03
|
457
|
-
points.push(new GLatLng(36.17045,-86.78976)); // (435 of 1207.0) 2005-04-30T13:39:14Z 5650 01:34:10
|
458
|
-
// points.push(new GLatLng(36.17062,-86.78985)); // (436 of 1207.0) 2005-04-30T13:39:21Z 5657 01:34:17
|
459
|
-
// points.push(new GLatLng(36.17083,-86.79)); // (437 of 1207.0) 2005-04-30T13:39:30Z 5666 01:34:26
|
460
|
-
// points.push(new GLatLng(36.17103,-86.7901)); // (438 of 1207.0) 2005-04-30T13:39:37Z 5673 01:34:33
|
461
|
-
// points.push(new GLatLng(36.17128,-86.79028)); // (439 of 1207.0) 2005-04-30T13:39:48Z 5684 01:34:44
|
462
|
-
// points.push(new GLatLng(36.17156,-86.79045)); // (440 of 1207.0) 2005-04-30T13:39:59Z 5695 01:34:55
|
463
|
-
points.push(new GLatLng(36.17169,-86.79058)); // (441 of 1207.0) 2005-04-30T13:40:05Z 5701 01:35:01
|
464
|
-
// points.push(new GLatLng(36.17188,-86.79073)); // (442 of 1207.0) 2005-04-30T13:40:13Z 5709 01:35:09
|
465
|
-
// points.push(new GLatLng(36.17218,-86.79092)); // (443 of 1207.0) 2005-04-30T13:40:26Z 5722 01:35:22
|
466
|
-
// points.push(new GLatLng(36.17255,-86.79111)); // (444 of 1207.0) 2005-04-30T13:40:41Z 5737 01:35:37
|
467
|
-
|
468
|
-
// points.push(new GLatLng(36.17304,-86.79139)); // (446 of 1207.0) 2005-04-30T13:41:01Z 5757 01:35:57
|
469
|
-
points.push(new GLatLng(36.17337,-86.79158)); // (447 of 1207.0) 2005-04-30T13:41:15Z 5771 01:36:11
|
470
|
-
// points.push(new GLatLng(36.17362,-86.79176)); // (448 of 1207.0) 2005-04-30T13:41:26Z 5782 01:36:22
|
471
|
-
// points.push(new GLatLng(36.17403,-86.79193)); // (449 of 1207.0) 2005-04-30T13:41:42Z 5798 01:36:38
|
472
|
-
// points.push(new GLatLng(36.17424,-86.7921)); // (450 of 1207.0) 2005-04-30T13:41:51Z 5807 01:36:47
|
473
|
-
|
474
|
-
// points.push(new GLatLng(36.17467,-86.79238)); // (452 of 1207.0) 2005-04-30T13:42:10Z 5826 01:37:06
|
475
|
-
points.push(new GLatLng(36.17491,-86.79255)); // (453 of 1207.0) 2005-04-30T13:42:20Z 5836 01:37:16
|
476
|
-
// points.push(new GLatLng(36.17519,-86.7927)); // (454 of 1207.0) 2005-04-30T13:42:31Z 5847 01:37:27
|
477
|
-
// points.push(new GLatLng(36.17547,-86.79289)); // (455 of 1207.0) 2005-04-30T13:42:42Z 5858 01:37:38
|
478
|
-
// points.push(new GLatLng(36.17568,-86.79304)); // (456 of 1207.0) 2005-04-30T13:42:51Z 5867 01:37:47
|
479
|
-
|
480
|
-
// points.push(new GLatLng(36.17622,-86.79349)); // (458 of 1207.0) 2005-04-30T13:43:13Z 5889 01:38:09
|
481
|
-
points.push(new GLatLng(36.17643,-86.79367)); // (459 of 1207.0) 2005-04-30T13:43:22Z 5898 01:38:18
|
482
|
-
// points.push(new GLatLng(36.17667,-86.79379)); // (460 of 1207.0) 2005-04-30T13:43:31Z 5907 01:38:27
|
483
|
-
// points.push(new GLatLng(36.17695,-86.79399)); // (461 of 1207.0) 2005-04-30T13:43:43Z 5919 01:38:39
|
484
|
-
// points.push(new GLatLng(36.17721,-86.79429)); // (462 of 1207.0) 2005-04-30T13:43:55Z 5931 01:38:51
|
485
|
-
|
486
|
-
// points.push(new GLatLng(36.1777,-86.79437)); // (464 of 1207.0) 2005-04-30T13:44:12Z 5948 01:39:08
|
487
|
-
points.push(new GLatLng(36.17785,-86.79457)); // (465 of 1207.0) 2005-04-30T13:44:20Z 5956 01:39:16
|
488
|
-
// points.push(new GLatLng(36.178,-86.7947)); // (466 of 1207.0) 2005-04-30T13:44:27Z 5963 01:39:23
|
489
|
-
// points.push(new GLatLng(36.17828,-86.79487)); // (467 of 1207.0) 2005-04-30T13:44:39Z 5975 01:39:35
|
490
|
-
// points.push(new GLatLng(36.17851,-86.79497)); // (468 of 1207.0) 2005-04-30T13:44:48Z 5984 01:39:44
|
491
|
-
|
492
|
-
// points.push(new GLatLng(36.17935,-86.79558)); // (470 of 1207.0) 2005-04-30T13:45:24Z 6020 01:40:20
|
493
|
-
points.push(new GLatLng(36.18002,-86.79607)); // (471 of 1207.0) 2005-04-30T13:45:51Z 6047 01:40:47
|
494
|
-
// points.push(new GLatLng(36.18047,-86.79635)); // (472 of 1207.0) 2005-04-30T13:46:10Z 6066 01:41:06
|
495
|
-
|
496
|
-
// points.push(new GLatLng(36.18107,-86.79671)); // (474 of 1207.0) 2005-04-30T13:46:34Z 6090 01:41:30
|
497
|
-
// points.push(new GLatLng(36.18133,-86.79688)); // (475 of 1207.0) 2005-04-30T13:46:45Z 6101 01:41:41
|
498
|
-
// points.push(new GLatLng(36.18167,-86.79712)); // (476 of 1207.0) 2005-04-30T13:46:59Z 6115 01:41:55
|
499
|
-
points.push(new GLatLng(36.18197,-86.79736)); // (477 of 1207.0) 2005-04-30T13:47:11Z 6127 01:42:07
|
500
|
-
// points.push(new GLatLng(36.18221,-86.79751)); // (478 of 1207.0) 2005-04-30T13:47:21Z 6137 01:42:17
|
501
|
-
|
502
|
-
// points.push(new GLatLng(36.18274,-86.79783)); // (480 of 1207.0) 2005-04-30T13:47:42Z 6158 01:42:38
|
503
|
-
// points.push(new GLatLng(36.18296,-86.79787)); // (481 of 1207.0) 2005-04-30T13:47:50Z 6166 01:42:46
|
504
|
-
points.push(new GLatLng(36.18324,-86.79791)); // (482 of 1207.0) 2005-04-30T13:48:00Z 6176 01:42:56
|
505
|
-
// points.push(new GLatLng(36.18345,-86.79802)); // (483 of 1207.0) 2005-04-30T13:48:09Z 6185 01:43:05
|
506
|
-
// points.push(new GLatLng(36.18366,-86.79802)); // (484 of 1207.0) 2005-04-30T13:48:17Z 6193 01:43:13
|
507
|
-
|
508
|
-
// points.push(new GLatLng(36.18414,-86.79809)); // (486 of 1207.0) 2005-04-30T13:48:34Z 6210 01:43:30
|
509
|
-
// points.push(new GLatLng(36.18439,-86.79813)); // (487 of 1207.0) 2005-04-30T13:48:43Z 6219 01:43:39
|
510
|
-
points.push(new GLatLng(36.18465,-86.79817)); // (488 of 1207.0) 2005-04-30T13:48:52Z 6228 01:43:48
|
511
|
-
// points.push(new GLatLng(36.18487,-86.79826)); // (489 of 1207.0) 2005-04-30T13:49:00Z 6236 01:43:56
|
512
|
-
// points.push(new GLatLng(36.1851,-86.7983)); // (490 of 1207.0) 2005-04-30T13:49:09Z 6245 01:44:05
|
513
|
-
|
514
|
-
// points.push(new GLatLng(36.18555,-86.79841)); // (492 of 1207.0) 2005-04-30T13:49:25Z 6261 01:44:21
|
515
|
-
// points.push(new GLatLng(36.18577,-86.79843)); // (493 of 1207.0) 2005-04-30T13:49:33Z 6269 01:44:29
|
516
|
-
points.push(new GLatLng(36.18596,-86.79845)); // (494 of 1207.0) 2005-04-30T13:49:40Z 6276 01:44:36
|
517
|
-
// points.push(new GLatLng(36.18635,-86.79854)); // (495 of 1207.0) 2005-04-30T13:49:54Z 6290 01:44:50
|
518
|
-
// points.push(new GLatLng(36.18686,-86.79856)); // (496 of 1207.0) 2005-04-30T13:50:12Z 6308 01:45:08
|
519
|
-
|
520
|
-
// points.push(new GLatLng(36.18748,-86.79862)); // (498 of 1207.0) 2005-04-30T13:50:35Z 6331 01:45:31
|
521
|
-
// points.push(new GLatLng(36.18776,-86.79869)); // (499 of 1207.0) 2005-04-30T13:50:45Z 6341 01:45:41
|
522
|
-
points.push(new GLatLng(36.18785,-86.79873)); // (500 of 1207.0) 2005-04-30T13:50:48Z 6344 01:45:44
|
523
|
-
// points.push(new GLatLng(36.18781,-86.79894)); // (501 of 1207.0) 2005-04-30T13:50:54Z 6350 01:45:50
|
524
|
-
// points.push(new GLatLng(36.1877,-86.79935)); // (502 of 1207.0) 2005-04-30T13:51:06Z 6362 01:46:02
|
525
|
-
|
526
|
-
// points.push(new GLatLng(36.18748,-86.80017)); // (504 of 1207.0) 2005-04-30T13:51:31Z 6387 01:46:27
|
527
|
-
|
528
|
-
points.push(new GLatLng(36.18736,-86.80079)); // (506 of 1207.0) 2005-04-30T13:51:53Z 6409 01:46:49
|
529
|
-
// points.push(new GLatLng(36.18729,-86.80111)); // (507 of 1207.0) 2005-04-30T13:52:04Z 6420 01:47:00
|
530
|
-
// points.push(new GLatLng(36.18721,-86.80156)); // (508 of 1207.0) 2005-04-30T13:52:18Z 6434 01:47:14
|
531
|
-
// points.push(new GLatLng(36.18712,-86.80193)); // (509 of 1207.0) 2005-04-30T13:52:28Z 6444 01:47:24
|
532
|
-
// points.push(new GLatLng(36.18703,-86.80233)); // (510 of 1207.0) 2005-04-30T13:52:39Z 6455 01:47:35
|
533
|
-
|
534
|
-
points.push(new GLatLng(36.18682,-86.8033)); // (512 of 1207.0) 2005-04-30T13:53:06Z 6482 01:48:02
|
535
|
-
// points.push(new GLatLng(36.18671,-86.80375)); // (513 of 1207.0) 2005-04-30T13:53:19Z 6495 01:48:15
|
536
|
-
// points.push(new GLatLng(36.18671,-86.80405)); // (514 of 1207.0) 2005-04-30T13:53:28Z 6504 01:48:24
|
537
|
-
// points.push(new GLatLng(36.18675,-86.80409)); // (515 of 1207.0) 2005-04-30T13:53:30Z 6506 01:48:26
|
538
|
-
// points.push(new GLatLng(36.18699,-86.80412)); // (516 of 1207.0) 2005-04-30T13:53:37Z 6513 01:48:33
|
539
|
-
|
540
|
-
points.push(new GLatLng(36.18776,-86.80416)); // (518 of 1207.0) 2005-04-30T13:54:03Z 6539 01:48:59
|
541
|
-
// points.push(new GLatLng(36.18824,-86.80418)); // (519 of 1207.0) 2005-04-30T13:54:19Z 6555 01:49:15
|
542
|
-
// points.push(new GLatLng(36.18851,-86.80424)); // (520 of 1207.0) 2005-04-30T13:54:29Z 6565 01:49:25
|
543
|
-
// points.push(new GLatLng(36.18879,-86.80439)); // (521 of 1207.0) 2005-04-30T13:54:40Z 6576 01:49:36
|
544
|
-
// points.push(new GLatLng(36.18907,-86.8047)); // (522 of 1207.0) 2005-04-30T13:54:53Z 6589 01:49:49
|
545
|
-
|
546
|
-
points.push(new GLatLng(36.18933,-86.80545)); // (524 of 1207.0) 2005-04-30T13:55:17Z 6613 01:50:13
|
547
|
-
// points.push(new GLatLng(36.18946,-86.80585)); // (525 of 1207.0) 2005-04-30T13:55:29Z 6625 01:50:25
|
548
|
-
// points.push(new GLatLng(36.18972,-86.80611)); // (526 of 1207.0) 2005-04-30T13:55:41Z 6637 01:50:37
|
549
|
-
// points.push(new GLatLng(36.18982,-86.80615)); // (527 of 1207.0) 2005-04-30T13:55:45Z 6641 01:50:41
|
550
|
-
// points.push(new GLatLng(36.18997,-86.8062)); // (528 of 1207.0) 2005-04-30T13:55:50Z 6646 01:50:46
|
551
|
-
|
552
|
-
points.push(new GLatLng(36.19062,-86.80628)); // (530 of 1207.0) 2005-04-30T13:56:11Z 6667 01:51:07
|
553
|
-
points.push(new GLatLng(36.19096,-86.8063)); // (531 of 1207.0) 2005-04-30T13:56:23Z 6679 01:51:19
|
554
|
-
// points.push(new GLatLng(36.19135,-86.80639)); // (532 of 1207.0) 2005-04-30T13:56:36Z 6692 01:51:32
|
555
|
-
// points.push(new GLatLng(36.19156,-86.80643)); // (533 of 1207.0) 2005-04-30T13:56:44Z 6700 01:51:40
|
556
|
-
|
557
|
-
// points.push(new GLatLng(36.19248,-86.80658)); // (535 of 1207.0) 2005-04-30T13:57:17Z 6733 01:52:13
|
558
|
-
// points.push(new GLatLng(36.19259,-86.80663)); // (536 of 1207.0) 2005-04-30T13:57:21Z 6737 01:52:17
|
559
|
-
points.push(new GLatLng(36.19283,-86.80673)); // (537 of 1207.0) 2005-04-30T13:57:30Z 6746 01:52:26
|
560
|
-
// points.push(new GLatLng(36.19315,-86.80682)); // (538 of 1207.0) 2005-04-30T13:57:41Z 6757 01:52:37
|
561
|
-
// points.push(new GLatLng(36.19341,-86.80693)); // (539 of 1207.0) 2005-04-30T13:57:51Z 6767 01:52:47
|
562
|
-
|
563
|
-
// points.push(new GLatLng(36.19375,-86.80718)); // (541 of 1207.0) 2005-04-30T13:58:05Z 6781 01:53:01
|
564
|
-
// points.push(new GLatLng(36.19377,-86.80742)); // (542 of 1207.0) 2005-04-30T13:58:12Z 6788 01:53:08
|
565
|
-
points.push(new GLatLng(36.19379,-86.80787)); // (543 of 1207.0) 2005-04-30T13:58:24Z 6800 01:53:20
|
566
|
-
// points.push(new GLatLng(36.19377,-86.80836)); // (544 of 1207.0) 2005-04-30T13:58:38Z 6814 01:53:34
|
567
|
-
// points.push(new GLatLng(36.19375,-86.80884)); // (545 of 1207.0) 2005-04-30T13:58:52Z 6828 01:53:48
|
568
|
-
|
569
|
-
// points.push(new GLatLng(36.19371,-86.80984)); // (547 of 1207.0) 2005-04-30T13:59:21Z 6857 01:54:17
|
570
|
-
// points.push(new GLatLng(36.19369,-86.81027)); // (548 of 1207.0) 2005-04-30T13:59:35Z 6871 01:54:31
|
571
|
-
points.push(new GLatLng(36.19366,-86.81077)); // (549 of 1207.0) 2005-04-30T13:59:50Z 6886 01:54:46
|
572
|
-
// points.push(new GLatLng(36.19369,-86.81133)); // (550 of 1207.0) 2005-04-30T14:00:06Z 6902 01:55:02
|
573
|
-
// points.push(new GLatLng(36.19366,-86.81178)); // (551 of 1207.0) 2005-04-30T14:00:20Z 6916 01:55:16
|
574
|
-
|
575
|
-
// points.push(new GLatLng(36.19354,-86.81257)); // (553 of 1207.0) 2005-04-30T14:00:45Z 6941 01:55:41
|
576
|
-
// points.push(new GLatLng(36.19345,-86.81281)); // (554 of 1207.0) 2005-04-30T14:00:53Z 6949 01:55:49
|
577
|
-
points.push(new GLatLng(36.19334,-86.81317)); // (555 of 1207.0) 2005-04-30T14:01:04Z 6960 01:56:00
|
578
|
-
// points.push(new GLatLng(36.19323,-86.81349)); // (556 of 1207.0) 2005-04-30T14:01:14Z 6970 01:56:10
|
579
|
-
// points.push(new GLatLng(36.19311,-86.81388)); // (557 of 1207.0) 2005-04-30T14:01:27Z 6983 01:56:23
|
580
|
-
|
581
|
-
// points.push(new GLatLng(36.19291,-86.81457)); // (559 of 1207.0) 2005-04-30T14:01:48Z 7004 01:56:44
|
582
|
-
// points.push(new GLatLng(36.19281,-86.81484)); // (560 of 1207.0) 2005-04-30T14:01:57Z 7013 01:56:53
|
583
|
-
points.push(new GLatLng(36.19272,-86.8151)); // (561 of 1207.0) 2005-04-30T14:02:05Z 7021 01:57:01
|
584
|
-
|
585
|
-
// points.push(new GLatLng(36.19261,-86.81568)); // (563 of 1207.0) 2005-04-30T14:02:22Z 7038 01:57:18
|
586
|
-
// points.push(new GLatLng(36.19266,-86.81577)); // (564 of 1207.0) 2005-04-30T14:02:25Z 7041 01:57:21
|
587
|
-
// points.push(new GLatLng(36.19285,-86.81594)); // (565 of 1207.0) 2005-04-30T14:02:33Z 7049 01:57:29
|
588
|
-
// points.push(new GLatLng(36.19306,-86.81607)); // (566 of 1207.0) 2005-04-30T14:02:41Z 7057 01:57:37
|
589
|
-
points.push(new GLatLng(36.19323,-86.81626)); // (567 of 1207.0) 2005-04-30T14:02:49Z 7065 01:57:45
|
590
|
-
|
591
|
-
// points.push(new GLatLng(36.19366,-86.81682)); // (569 of 1207.0) 2005-04-30T14:03:12Z 7088 01:58:08
|
592
|
-
// points.push(new GLatLng(36.19388,-86.81708)); // (570 of 1207.0) 2005-04-30T14:03:23Z 7099 01:58:19
|
593
|
-
// points.push(new GLatLng(36.19403,-86.81723)); // (571 of 1207.0) 2005-04-30T14:03:30Z 7106 01:58:26
|
594
|
-
// points.push(new GLatLng(36.19426,-86.81742)); // (572 of 1207.0) 2005-04-30T14:03:40Z 7116 01:58:36
|
595
|
-
points.push(new GLatLng(36.1945,-86.81755)); // (573 of 1207.0) 2005-04-30T14:03:49Z 7125 01:58:45
|
596
|
-
|
597
|
-
// points.push(new GLatLng(36.19497,-86.81774)); // (575 of 1207.0) 2005-04-30T14:04:07Z 7143 01:59:03
|
598
|
-
// points.push(new GLatLng(36.1951,-86.81787)); // (576 of 1207.0) 2005-04-30T14:04:13Z 7149 01:59:09
|
599
|
-
// points.push(new GLatLng(36.1951,-86.818)); // (577 of 1207.0) 2005-04-30T14:04:17Z 7153 01:59:13
|
600
|
-
// points.push(new GLatLng(36.19502,-86.81834)); // (578 of 1207.0) 2005-04-30T14:04:27Z 7163 01:59:23
|
601
|
-
points.push(new GLatLng(36.19489,-86.8186)); // (579 of 1207.0) 2005-04-30T14:04:35Z 7171 01:59:31
|
602
|
-
|
603
|
-
// points.push(new GLatLng(36.19454,-86.81909)); // (581 of 1207.0) 2005-04-30T14:04:54Z 7190 01:59:50
|
604
|
-
points.push(new GLatLng(36.19433,-86.81937)); // (582 of 1207.0) 2005-04-30T14:05:05Z 7201 02:00:01
|
605
|
-
// points.push(new GLatLng(36.19409,-86.81967)); // (583 of 1207.0) 2005-04-30T14:05:17Z 7213 02:00:13
|
606
|
-
// points.push(new GLatLng(36.19388,-86.81997)); // (584 of 1207.0) 2005-04-30T14:05:28Z 7224 02:00:24
|
607
|
-
// points.push(new GLatLng(36.19377,-86.82021)); // (585 of 1207.0) 2005-04-30T14:05:36Z 7232 02:00:32
|
608
|
-
|
609
|
-
// points.push(new GLatLng(36.19351,-86.82081)); // (587 of 1207.0) 2005-04-30T14:05:56Z 7252 02:00:52
|
610
|
-
points.push(new GLatLng(36.19347,-86.82096)); // (588 of 1207.0) 2005-04-30T14:06:01Z 7257 02:00:57
|
611
|
-
// points.push(new GLatLng(36.19345,-86.82102)); // (589 of 1207.0) 2005-04-30T14:06:04Z 7260 02:01:00
|
612
|
-
// points.push(new GLatLng(36.19341,-86.82115)); // (590 of 1207.0) 2005-04-30T14:06:12Z 7268 02:01:08
|
613
|
-
// points.push(new GLatLng(36.19339,-86.82137)); // (591 of 1207.0) 2005-04-30T14:06:20Z 7276 02:01:16
|
614
|
-
|
615
|
-
// points.push(new GLatLng(36.19321,-86.82238)); // (593 of 1207.0) 2005-04-30T14:06:50Z 7306 02:01:46
|
616
|
-
points.push(new GLatLng(36.19313,-86.82291)); // (594 of 1207.0) 2005-04-30T14:07:06Z 7322 02:02:02
|
617
|
-
// points.push(new GLatLng(36.19304,-86.82332)); // (595 of 1207.0) 2005-04-30T14:07:18Z 7334 02:02:14
|
618
|
-
// points.push(new GLatLng(36.19289,-86.82362)); // (596 of 1207.0) 2005-04-30T14:07:28Z 7344 02:02:24
|
619
|
-
|
620
|
-
// points.push(new GLatLng(36.19251,-86.82456)); // (598 of 1207.0) 2005-04-30T14:07:59Z 7375 02:02:55
|
621
|
-
// points.push(new GLatLng(36.19251,-86.82495)); // (599 of 1207.0) 2005-04-30T14:08:11Z 7387 02:03:07
|
622
|
-
points.push(new GLatLng(36.19253,-86.82502)); // (600 of 1207.0) 2005-04-30T14:08:13Z 7389 02:03:09
|
623
|
-
// points.push(new GLatLng(36.19266,-86.82497)); // (601 of 1207.0) 2005-04-30T14:08:18Z 7394 02:03:14
|
624
|
-
// points.push(new GLatLng(36.19272,-86.82495)); // (602 of 1207.0) 2005-04-30T14:08:20Z 7396 02:03:16
|
625
|
-
|
626
|
-
// points.push(new GLatLng(36.19339,-86.82452)); // (604 of 1207.0) 2005-04-30T14:08:46Z 7422 02:03:42
|
627
|
-
// points.push(new GLatLng(36.19371,-86.82422)); // (605 of 1207.0) 2005-04-30T14:09:02Z 7438 02:03:58
|
628
|
-
points.push(new GLatLng(36.19399,-86.82392)); // (606 of 1207.0) 2005-04-30T14:09:16Z 7452 02:04:12
|
629
|
-
// points.push(new GLatLng(36.19431,-86.82358)); // (607 of 1207.0) 2005-04-30T14:09:31Z 7467 02:04:27
|
630
|
-
// points.push(new GLatLng(36.19459,-86.82328)); // (608 of 1207.0) 2005-04-30T14:09:45Z 7481 02:04:41
|
631
|
-
|
632
|
-
// points.push(new GLatLng(36.19514,-86.82263)); // (610 of 1207.0) 2005-04-30T14:10:13Z 7509 02:05:09
|
633
|
-
// points.push(new GLatLng(36.1954,-86.82231)); // (611 of 1207.0) 2005-04-30T14:10:27Z 7523 02:05:23
|
634
|
-
points.push(new GLatLng(36.19564,-86.82203)); // (612 of 1207.0) 2005-04-30T14:10:39Z 7535 02:05:35
|
635
|
-
// points.push(new GLatLng(36.19583,-86.8218)); // (613 of 1207.0) 2005-04-30T14:10:50Z 7546 02:05:46
|
636
|
-
// points.push(new GLatLng(36.19609,-86.8215)); // (614 of 1207.0) 2005-04-30T14:11:02Z 7558 02:05:58
|
637
|
-
|
638
|
-
// points.push(new GLatLng(36.19656,-86.82092)); // (616 of 1207.0) 2005-04-30T14:11:26Z 7582 02:06:22
|
639
|
-
// points.push(new GLatLng(36.19678,-86.82062)); // (617 of 1207.0) 2005-04-30T14:11:38Z 7594 02:06:34
|
640
|
-
points.push(new GLatLng(36.19703,-86.82027)); // (618 of 1207.0) 2005-04-30T14:11:52Z 7608 02:06:48
|
641
|
-
// points.push(new GLatLng(36.19723,-86.81997)); // (619 of 1207.0) 2005-04-30T14:12:04Z 7620 02:07:00
|
642
|
-
// points.push(new GLatLng(36.19746,-86.81965)); // (620 of 1207.0) 2005-04-30T14:12:16Z 7632 02:07:12
|
643
|
-
|
644
|
-
// points.push(new GLatLng(36.19785,-86.81901)); // (622 of 1207.0) 2005-04-30T14:12:41Z 7657 02:07:37
|
645
|
-
// points.push(new GLatLng(36.19806,-86.81869)); // (623 of 1207.0) 2005-04-30T14:12:53Z 7669 02:07:49
|
646
|
-
points.push(new GLatLng(36.19823,-86.81841)); // (624 of 1207.0) 2005-04-30T14:13:03Z 7679 02:07:59
|
647
|
-
|
648
|
-
// points.push(new GLatLng(36.19847,-86.81785)); // (626 of 1207.0) 2005-04-30T14:13:22Z 7698 02:08:18
|
649
|
-
// points.push(new GLatLng(36.19858,-86.81757)); // (627 of 1207.0) 2005-04-30T14:13:31Z 7707 02:08:27
|
650
|
-
// points.push(new GLatLng(36.19875,-86.81716)); // (628 of 1207.0) 2005-04-30T14:13:45Z 7721 02:08:41
|
651
|
-
// points.push(new GLatLng(36.19892,-86.81693)); // (629 of 1207.0) 2005-04-30T14:13:54Z 7730 02:08:50
|
652
|
-
points.push(new GLatLng(36.19914,-86.81663)); // (630 of 1207.0) 2005-04-30T14:14:05Z 7741 02:09:01
|
653
|
-
|
654
|
-
// points.push(new GLatLng(36.19939,-86.81617)); // (632 of 1207.0) 2005-04-30T14:14:21Z 7757 02:09:17
|
655
|
-
// points.push(new GLatLng(36.19952,-86.81594)); // (633 of 1207.0) 2005-04-30T14:14:29Z 7765 02:09:25
|
656
|
-
// points.push(new GLatLng(36.19965,-86.81566)); // (634 of 1207.0) 2005-04-30T14:14:38Z 7774 02:09:34
|
657
|
-
// points.push(new GLatLng(36.19976,-86.81527)); // (635 of 1207.0) 2005-04-30T14:14:51Z 7787 02:09:47
|
658
|
-
points.push(new GLatLng(36.19982,-86.8151)); // (636 of 1207.0) 2005-04-30T14:14:56Z 7792 02:09:52
|
659
|
-
|
660
|
-
// points.push(new GLatLng(36.20012,-86.8145)); // (638 of 1207.0) 2005-04-30T14:15:16Z 7812 02:10:12
|
661
|
-
// points.push(new GLatLng(36.20027,-86.81412)); // (639 of 1207.0) 2005-04-30T14:15:29Z 7825 02:10:25
|
662
|
-
// points.push(new GLatLng(36.2004,-86.81381)); // (640 of 1207.0) 2005-04-30T14:15:39Z 7835 02:10:35
|
663
|
-
// points.push(new GLatLng(36.20055,-86.81349)); // (641 of 1207.0) 2005-04-30T14:15:49Z 7845 02:10:45
|
664
|
-
points.push(new GLatLng(36.20062,-86.81311)); // (642 of 1207.0) 2005-04-30T14:16:01Z 7857 02:10:57
|
665
|
-
|
666
|
-
// points.push(new GLatLng(36.20072,-86.81244)); // (644 of 1207.0) 2005-04-30T14:16:21Z 7877 02:11:17
|
667
|
-
// points.push(new GLatLng(36.20079,-86.81216)); // (645 of 1207.0) 2005-04-30T14:16:30Z 7886 02:11:26
|
668
|
-
// points.push(new GLatLng(36.20081,-86.81195)); // (646 of 1207.0) 2005-04-30T14:16:37Z 7893 02:11:33
|
669
|
-
// points.push(new GLatLng(36.20085,-86.81169)); // (647 of 1207.0) 2005-04-30T14:16:45Z 7901 02:11:41
|
670
|
-
points.push(new GLatLng(36.20087,-86.81143)); // (648 of 1207.0) 2005-04-30T14:16:53Z 7909 02:11:49
|
671
|
-
|
672
|
-
// points.push(new GLatLng(36.20105,-86.81062)); // (650 of 1207.0) 2005-04-30T14:17:19Z 7935 02:12:15
|
673
|
-
// points.push(new GLatLng(36.20111,-86.81023)); // (651 of 1207.0) 2005-04-30T14:17:31Z 7947 02:12:27
|
674
|
-
// points.push(new GLatLng(36.2012,-86.80989)); // (652 of 1207.0) 2005-04-30T14:17:42Z 7958 02:12:38
|
675
|
-
// points.push(new GLatLng(36.20128,-86.80946)); // (653 of 1207.0) 2005-04-30T14:17:55Z 7971 02:12:51
|
676
|
-
points.push(new GLatLng(36.20128,-86.80914)); // (654 of 1207.0) 2005-04-30T14:18:04Z 7980 02:13:00
|
677
|
-
|
678
|
-
// points.push(new GLatLng(36.20135,-86.80843)); // (656 of 1207.0) 2005-04-30T14:18:26Z 8002 02:13:22
|
679
|
-
// points.push(new GLatLng(36.20137,-86.80804)); // (657 of 1207.0) 2005-04-30T14:18:37Z 8013 02:13:33
|
680
|
-
|
681
|
-
// points.push(new GLatLng(36.20143,-86.80746)); // (659 of 1207.0) 2005-04-30T14:18:54Z 8030 02:13:50
|
682
|
-
points.push(new GLatLng(36.20143,-86.80712)); // (660 of 1207.0) 2005-04-30T14:19:04Z 8040 02:14:00
|
683
|
-
// points.push(new GLatLng(36.2015,-86.80643)); // (661 of 1207.0) 2005-04-30T14:19:24Z 8060 02:14:20
|
684
|
-
// points.push(new GLatLng(36.20147,-86.80603)); // (662 of 1207.0) 2005-04-30T14:19:36Z 8072 02:14:32
|
685
|
-
// points.push(new GLatLng(36.20143,-86.80555)); // (663 of 1207.0) 2005-04-30T14:19:50Z 8086 02:14:46
|
686
|
-
|
687
|
-
// points.push(new GLatLng(36.20143,-86.80472)); // (665 of 1207.0) 2005-04-30T14:20:15Z 8111 02:15:11
|
688
|
-
points.push(new GLatLng(36.20143,-86.80442)); // (666 of 1207.0) 2005-04-30T14:20:24Z 8120 02:15:20
|
689
|
-
// points.push(new GLatLng(36.20141,-86.80416)); // (667 of 1207.0) 2005-04-30T14:20:32Z 8128 02:15:28
|
690
|
-
// points.push(new GLatLng(36.20141,-86.80388)); // (668 of 1207.0) 2005-04-30T14:20:40Z 8136 02:15:36
|
691
|
-
// points.push(new GLatLng(36.20137,-86.80362)); // (669 of 1207.0) 2005-04-30T14:20:48Z 8144 02:15:44
|
692
|
-
|
693
|
-
// points.push(new GLatLng(36.20128,-86.803)); // (671 of 1207.0) 2005-04-30T14:21:07Z 8163 02:16:03
|
694
|
-
points.push(new GLatLng(36.20124,-86.80274)); // (672 of 1207.0) 2005-04-30T14:21:15Z 8171 02:16:11
|
695
|
-
// points.push(new GLatLng(36.2012,-86.80248)); // (673 of 1207.0) 2005-04-30T14:21:23Z 8179 02:16:19
|
696
|
-
// points.push(new GLatLng(36.20111,-86.80218)); // (674 of 1207.0) 2005-04-30T14:21:33Z 8189 02:16:29
|
697
|
-
// points.push(new GLatLng(36.20102,-86.80214)); // (675 of 1207.0) 2005-04-30T14:21:37Z 8193 02:16:33
|
698
|
-
|
699
|
-
// points.push(new GLatLng(36.20083,-86.80221)); // (677 of 1207.0) 2005-04-30T14:21:45Z 8201 02:16:41
|
700
|
-
points.push(new GLatLng(36.20034,-86.80223)); // (678 of 1207.0) 2005-04-30T14:22:01Z 8217 02:16:57
|
701
|
-
// points.push(new GLatLng(36.20002,-86.80236)); // (679 of 1207.0) 2005-04-30T14:22:13Z 8229 02:17:09
|
702
|
-
// points.push(new GLatLng(36.19991,-86.80244)); // (680 of 1207.0) 2005-04-30T14:22:18Z 8234 02:17:14
|
703
|
-
// points.push(new GLatLng(36.19989,-86.80266)); // (681 of 1207.0) 2005-04-30T14:22:24Z 8240 02:17:20
|
704
|
-
|
705
|
-
// points.push(new GLatLng(36.19993,-86.80309)); // (683 of 1207.0) 2005-04-30T14:22:36Z 8252 02:17:32
|
706
|
-
points.push(new GLatLng(36.19997,-86.80328)); // (684 of 1207.0) 2005-04-30T14:22:41Z 8257 02:17:37
|
707
|
-
points.push(new GLatLng(36.20002,-86.80349)); // (685 of 1207.0) 2005-04-30T14:22:48Z 8264 02:17:44
|
708
|
-
// points.push(new GLatLng(36.20006,-86.80397)); // (686 of 1207.0) 2005-04-30T14:23:02Z 8278 02:17:58
|
709
|
-
// points.push(new GLatLng(36.20012,-86.80442)); // (687 of 1207.0) 2005-04-30T14:23:16Z 8292 02:18:12
|
710
|
-
|
711
|
-
// points.push(new GLatLng(36.20008,-86.80521)); // (689 of 1207.0) 2005-04-30T14:23:40Z 8316 02:18:36
|
712
|
-
// points.push(new GLatLng(36.20002,-86.8056)); // (690 of 1207.0) 2005-04-30T14:23:53Z 8329 02:18:49
|
713
|
-
points.push(new GLatLng(36.19995,-86.80585)); // (691 of 1207.0) 2005-04-30T14:24:01Z 8337 02:18:57
|
714
|
-
// points.push(new GLatLng(36.19989,-86.80605)); // (692 of 1207.0) 2005-04-30T14:24:08Z 8344 02:19:04
|
715
|
-
|
716
|
-
// points.push(new GLatLng(36.19978,-86.80641)); // (694 of 1207.0) 2005-04-30T14:24:27Z 8363 02:19:23
|
717
|
-
// points.push(new GLatLng(36.19963,-86.80676)); // (695 of 1207.0) 2005-04-30T14:24:38Z 8374 02:19:34
|
718
|
-
// points.push(new GLatLng(36.19941,-86.80721)); // (696 of 1207.0) 2005-04-30T14:24:52Z 8388 02:19:48
|
719
|
-
points.push(new GLatLng(36.19924,-86.80755)); // (697 of 1207.0) 2005-04-30T14:25:04Z 8400 02:20:00
|
720
|
-
// points.push(new GLatLng(36.19901,-86.80802)); // (698 of 1207.0) 2005-04-30T14:25:20Z 8416 02:20:16
|
721
|
-
|
722
|
-
// points.push(new GLatLng(36.19862,-86.80862)); // (700 of 1207.0) 2005-04-30T14:25:43Z 8439 02:20:39
|
723
|
-
// points.push(new GLatLng(36.19841,-86.80879)); // (701 of 1207.0) 2005-04-30T14:25:52Z 8448 02:20:48
|
724
|
-
// points.push(new GLatLng(36.19808,-86.80899)); // (702 of 1207.0) 2005-04-30T14:26:05Z 8461 02:21:01
|
725
|
-
points.push(new GLatLng(36.19772,-86.80905)); // (703 of 1207.0) 2005-04-30T14:26:18Z 8474 02:21:14
|
726
|
-
// points.push(new GLatLng(36.19733,-86.80905)); // (704 of 1207.0) 2005-04-30T14:26:32Z 8488 02:21:28
|
727
|
-
|
728
|
-
// points.push(new GLatLng(36.19669,-86.80884)); // (706 of 1207.0) 2005-04-30T14:26:56Z 8512 02:21:52
|
729
|
-
// points.push(new GLatLng(36.19626,-86.80869)); // (707 of 1207.0) 2005-04-30T14:27:12Z 8528 02:22:08
|
730
|
-
// points.push(new GLatLng(36.19596,-86.80851)); // (708 of 1207.0) 2005-04-30T14:27:23Z 8539 02:22:19
|
731
|
-
points.push(new GLatLng(36.19577,-86.80847)); // (709 of 1207.0) 2005-04-30T14:27:30Z 8546 02:22:26
|
732
|
-
// points.push(new GLatLng(36.1956,-86.80841)); // (710 of 1207.0) 2005-04-30T14:27:37Z 8553 02:22:33
|
733
|
-
|
734
|
-
// points.push(new GLatLng(36.19506,-86.80794)); // (712 of 1207.0) 2005-04-30T14:28:03Z 8579 02:22:59
|
735
|
-
// points.push(new GLatLng(36.19491,-86.80774)); // (713 of 1207.0) 2005-04-30T14:28:11Z 8587 02:23:07
|
736
|
-
// points.push(new GLatLng(36.19472,-86.80753)); // (714 of 1207.0) 2005-04-30T14:28:21Z 8597 02:23:17
|
737
|
-
points.push(new GLatLng(36.19448,-86.80733)); // (715 of 1207.0) 2005-04-30T14:28:31Z 8607 02:23:27
|
738
|
-
// points.push(new GLatLng(36.19431,-86.80723)); // (716 of 1207.0) 2005-04-30T14:28:39Z 8615 02:23:35
|
739
|
-
|
740
|
-
// points.push(new GLatLng(36.19369,-86.80678)); // (718 of 1207.0) 2005-04-30T14:29:05Z 8641 02:24:01
|
741
|
-
// points.push(new GLatLng(36.19366,-86.8065)); // (719 of 1207.0) 2005-04-30T14:29:13Z 8649 02:24:09
|
742
|
-
// points.push(new GLatLng(36.19366,-86.80615)); // (720 of 1207.0) 2005-04-30T14:29:23Z 8659 02:24:19
|
743
|
-
points.push(new GLatLng(36.19364,-86.80585)); // (721 of 1207.0) 2005-04-30T14:29:32Z 8668 02:24:28
|
744
|
-
// points.push(new GLatLng(36.1936,-86.80557)); // (722 of 1207.0) 2005-04-30T14:29:40Z 8676 02:24:36
|
745
|
-
|
746
|
-
// points.push(new GLatLng(36.19351,-86.80493)); // (724 of 1207.0) 2005-04-30T14:30:00Z 8696 02:24:56
|
747
|
-
// points.push(new GLatLng(36.19349,-86.80476)); // (725 of 1207.0) 2005-04-30T14:30:05Z 8701 02:25:01
|
748
|
-
// points.push(new GLatLng(36.19343,-86.80442)); // (726 of 1207.0) 2005-04-30T14:30:16Z 8712 02:25:12
|
749
|
-
points.push(new GLatLng(36.19339,-86.80409)); // (727 of 1207.0) 2005-04-30T14:30:26Z 8722 02:25:22
|
750
|
-
// points.push(new GLatLng(36.19334,-86.80362)); // (728 of 1207.0) 2005-04-30T14:30:40Z 8736 02:25:36
|
751
|
-
|
752
|
-
// points.push(new GLatLng(36.19323,-86.80289)); // (730 of 1207.0) 2005-04-30T14:31:03Z 8759 02:25:59
|
753
|
-
// points.push(new GLatLng(36.19319,-86.80244)); // (731 of 1207.0) 2005-04-30T14:31:17Z 8773 02:26:13
|
754
|
-
// points.push(new GLatLng(36.19311,-86.80193)); // (732 of 1207.0) 2005-04-30T14:31:33Z 8789 02:26:29
|
755
|
-
points.push(new GLatLng(36.19302,-86.80154)); // (733 of 1207.0) 2005-04-30T14:31:45Z 8801 02:26:41
|
756
|
-
points.push(new GLatLng(36.19293,-86.80122)); // (734 of 1207.0) 2005-04-30T14:31:55Z 8811 02:26:51
|
757
|
-
|
758
|
-
// points.push(new GLatLng(36.19272,-86.80077)); // (736 of 1207.0) 2005-04-30T14:32:11Z 8827 02:27:07
|
759
|
-
// points.push(new GLatLng(36.19257,-86.80045)); // (737 of 1207.0) 2005-04-30T14:32:23Z 8839 02:27:19
|
760
|
-
// points.push(new GLatLng(36.19238,-86.80012)); // (738 of 1207.0) 2005-04-30T14:32:35Z 8851 02:27:31
|
761
|
-
// points.push(new GLatLng(36.19223,-86.79993)); // (739 of 1207.0) 2005-04-30T14:32:43Z 8859 02:27:39
|
762
|
-
points.push(new GLatLng(36.1921,-86.7998)); // (740 of 1207.0) 2005-04-30T14:32:50Z 8866 02:27:46
|
763
|
-
|
764
|
-
// points.push(new GLatLng(36.19186,-86.7995)); // (742 of 1207.0) 2005-04-30T14:33:03Z 8879 02:27:59
|
765
|
-
// points.push(new GLatLng(36.19184,-86.79948)); // (743 of 1207.0) 2005-04-30T14:33:04Z 8880 02:28:00
|
766
|
-
// points.push(new GLatLng(36.1916,-86.79929)); // (744 of 1207.0) 2005-04-30T14:33:15Z 8891 02:28:11
|
767
|
-
// points.push(new GLatLng(36.19139,-86.79912)); // (745 of 1207.0) 2005-04-30T14:33:26Z 8902 02:28:22
|
768
|
-
points.push(new GLatLng(36.19115,-86.79901)); // (746 of 1207.0) 2005-04-30T14:33:36Z 8912 02:28:32
|
769
|
-
|
770
|
-
// points.push(new GLatLng(36.19072,-86.79882)); // (748 of 1207.0) 2005-04-30T14:33:56Z 8932 02:28:52
|
771
|
-
// points.push(new GLatLng(36.19051,-86.79871)); // (749 of 1207.0) 2005-04-30T14:34:06Z 8942 02:29:02
|
772
|
-
// points.push(new GLatLng(36.19038,-86.79867)); // (750 of 1207.0) 2005-04-30T14:34:12Z 8948 02:29:08
|
773
|
-
// points.push(new GLatLng(36.19025,-86.79862)); // (751 of 1207.0) 2005-04-30T14:34:21Z 8957 02:29:17
|
774
|
-
points.push(new GLatLng(36.19006,-86.79858)); // (752 of 1207.0) 2005-04-30T14:34:32Z 8968 02:29:28
|
775
|
-
|
776
|
-
// points.push(new GLatLng(36.18965,-86.79854)); // (754 of 1207.0) 2005-04-30T14:34:50Z 8986 02:29:46
|
777
|
-
// points.push(new GLatLng(36.18944,-86.79856)); // (755 of 1207.0) 2005-04-30T14:34:58Z 8994 02:29:54
|
778
|
-
// points.push(new GLatLng(36.18922,-86.79852)); // (756 of 1207.0) 2005-04-30T14:35:07Z 9003 02:30:03
|
779
|
-
// points.push(new GLatLng(36.18901,-86.79849)); // (757 of 1207.0) 2005-04-30T14:35:15Z 9011 02:30:11
|
780
|
-
points.push(new GLatLng(36.18881,-86.79847)); // (758 of 1207.0) 2005-04-30T14:35:23Z 9019 02:30:19
|
781
|
-
|
782
|
-
// points.push(new GLatLng(36.18845,-86.79843)); // (760 of 1207.0) 2005-04-30T14:35:38Z 9034 02:30:34
|
783
|
-
|
784
|
-
// points.push(new GLatLng(36.18798,-86.79837)); // (762 of 1207.0) 2005-04-30T14:35:56Z 9052 02:30:52
|
785
|
-
// points.push(new GLatLng(36.18761,-86.79837)); // (763 of 1207.0) 2005-04-30T14:36:11Z 9067 02:31:07
|
786
|
-
points.push(new GLatLng(36.18729,-86.79832)); // (764 of 1207.0) 2005-04-30T14:36:22Z 9078 02:31:18
|
787
|
-
// points.push(new GLatLng(36.18671,-86.79828)); // (765 of 1207.0) 2005-04-30T14:36:46Z 9102 02:31:42
|
788
|
-
// points.push(new GLatLng(36.18648,-86.79828)); // (766 of 1207.0) 2005-04-30T14:36:55Z 9111 02:31:51
|
789
|
-
|
790
|
-
// points.push(new GLatLng(36.18607,-86.79824)); // (768 of 1207.0) 2005-04-30T14:37:11Z 9127 02:32:07
|
791
|
-
// points.push(new GLatLng(36.18583,-86.79821)); // (769 of 1207.0) 2005-04-30T14:37:20Z 9136 02:32:16
|
792
|
-
points.push(new GLatLng(36.18566,-86.79819)); // (770 of 1207.0) 2005-04-30T14:37:26Z 9142 02:32:22
|
793
|
-
// points.push(new GLatLng(36.18542,-86.79813)); // (771 of 1207.0) 2005-04-30T14:37:35Z 9151 02:32:31
|
794
|
-
// points.push(new GLatLng(36.18525,-86.79811)); // (772 of 1207.0) 2005-04-30T14:37:42Z 9158 02:32:38
|
795
|
-
|
796
|
-
// points.push(new GLatLng(36.18482,-86.79804)); // (774 of 1207.0) 2005-04-30T14:37:58Z 9174 02:32:54
|
797
|
-
// points.push(new GLatLng(36.18459,-86.79798)); // (775 of 1207.0) 2005-04-30T14:38:07Z 9183 02:33:03
|
798
|
-
points.push(new GLatLng(36.18439,-86.79794)); // (776 of 1207.0) 2005-04-30T14:38:15Z 9191 02:33:11
|
799
|
-
// points.push(new GLatLng(36.18418,-86.79791)); // (777 of 1207.0) 2005-04-30T14:38:23Z 9199 02:33:19
|
800
|
-
// points.push(new GLatLng(36.18394,-86.79785)); // (778 of 1207.0) 2005-04-30T14:38:32Z 9208 02:33:28
|
801
|
-
|
802
|
-
// points.push(new GLatLng(36.18343,-86.79776)); // (780 of 1207.0) 2005-04-30T14:38:52Z 9228 02:33:48
|
803
|
-
// points.push(new GLatLng(36.18324,-86.79776)); // (781 of 1207.0) 2005-04-30T14:39:00Z 9236 02:33:56
|
804
|
-
points.push(new GLatLng(36.18289,-86.7977)); // (782 of 1207.0) 2005-04-30T14:39:13Z 9249 02:34:09
|
805
|
-
// points.push(new GLatLng(36.18266,-86.79759)); // (783 of 1207.0) 2005-04-30T14:39:22Z 9258 02:34:18
|
806
|
-
// points.push(new GLatLng(36.18229,-86.79736)); // (784 of 1207.0) 2005-04-30T14:39:37Z 9273 02:34:33
|
807
|
-
|
808
|
-
// points.push(new GLatLng(36.18191,-86.79714)); // (786 of 1207.0) 2005-04-30T14:39:54Z 9290 02:34:50
|
809
|
-
// points.push(new GLatLng(36.18169,-86.79699)); // (787 of 1207.0) 2005-04-30T14:40:04Z 9300 02:35:00
|
810
|
-
points.push(new GLatLng(36.18135,-86.79678)); // (788 of 1207.0) 2005-04-30T14:40:19Z 9315 02:35:15
|
811
|
-
// points.push(new GLatLng(36.18107,-86.79658)); // (789 of 1207.0) 2005-04-30T14:40:31Z 9327 02:35:27
|
812
|
-
// points.push(new GLatLng(36.18075,-86.79635)); // (790 of 1207.0) 2005-04-30T14:40:45Z 9341 02:35:41
|
813
|
-
|
814
|
-
// points.push(new GLatLng(36.18015,-86.79594)); // (792 of 1207.0) 2005-04-30T14:41:10Z 9366 02:36:06
|
815
|
-
points.push(new GLatLng(36.17987,-86.79575)); // (793 of 1207.0) 2005-04-30T14:41:21Z 9377 02:36:17
|
816
|
-
|
817
|
-
// points.push(new GLatLng(36.17933,-86.79538)); // (795 of 1207.0) 2005-04-30T14:41:44Z 9400 02:36:40
|
818
|
-
// points.push(new GLatLng(36.17909,-86.79521)); // (796 of 1207.0) 2005-04-30T14:41:54Z 9410 02:36:50
|
819
|
-
// points.push(new GLatLng(36.17879,-86.79497)); // (797 of 1207.0) 2005-04-30T14:42:07Z 9423 02:37:03
|
820
|
-
// points.push(new GLatLng(36.17821,-86.79459)); // (798 of 1207.0) 2005-04-30T14:42:33Z 9449 02:37:29
|
821
|
-
points.push(new GLatLng(36.17819,-86.79457)); // (799 of 1207.0) 2005-04-30T14:42:34Z 9450 02:37:30
|
822
|
-
|
823
|
-
// points.push(new GLatLng(36.17733,-86.79403)); // (801 of 1207.0) 2005-04-30T14:43:09Z 9485 02:38:05
|
824
|
-
// points.push(new GLatLng(36.17688,-86.79377)); // (802 of 1207.0) 2005-04-30T14:43:27Z 9503 02:38:23
|
825
|
-
// points.push(new GLatLng(36.17658,-86.79356)); // (803 of 1207.0) 2005-04-30T14:43:41Z 9517 02:38:37
|
826
|
-
// points.push(new GLatLng(36.17613,-86.79324)); // (804 of 1207.0) 2005-04-30T14:44:00Z 9536 02:38:56
|
827
|
-
points.push(new GLatLng(36.17575,-86.79296)); // (805 of 1207.0) 2005-04-30T14:44:17Z 9553 02:39:13
|
828
|
-
|
829
|
-
// points.push(new GLatLng(36.17502,-86.79242)); // (807 of 1207.0) 2005-04-30T14:44:49Z 9585 02:39:45
|
830
|
-
// points.push(new GLatLng(36.17472,-86.79225)); // (808 of 1207.0) 2005-04-30T14:45:02Z 9598 02:39:58
|
831
|
-
// points.push(new GLatLng(36.17444,-86.79206)); // (809 of 1207.0) 2005-04-30T14:45:14Z 9610 02:40:10
|
832
|
-
// points.push(new GLatLng(36.17412,-86.79186)); // (810 of 1207.0) 2005-04-30T14:45:27Z 9623 02:40:23
|
833
|
-
points.push(new GLatLng(36.17382,-86.79165)); // (811 of 1207.0) 2005-04-30T14:45:40Z 9636 02:40:36
|
834
|
-
|
835
|
-
// points.push(new GLatLng(36.17332,-86.79131)); // (813 of 1207.0) 2005-04-30T14:46:00Z 9656 02:40:56
|
836
|
-
// points.push(new GLatLng(36.17334,-86.79113)); // (814 of 1207.0) 2005-04-30T14:46:05Z 9661 02:41:01
|
837
|
-
// points.push(new GLatLng(36.17341,-86.79088)); // (815 of 1207.0) 2005-04-30T14:46:13Z 9669 02:41:09
|
838
|
-
// points.push(new GLatLng(36.17349,-86.79064)); // (816 of 1207.0) 2005-04-30T14:46:20Z 9676 02:41:16
|
839
|
-
points.push(new GLatLng(36.17358,-86.79025)); // (817 of 1207.0) 2005-04-30T14:46:32Z 9688 02:41:28
|
840
|
-
|
841
|
-
|
842
|
-
// points.push(new GLatLng(36.17388,-86.78914)); // (820 of 1207.0) 2005-04-30T14:47:07Z 9723 02:42:03
|
843
|
-
// points.push(new GLatLng(36.17394,-86.78903)); // (821 of 1207.0) 2005-04-30T14:47:11Z 9727 02:42:07
|
844
|
-
// points.push(new GLatLng(36.17394,-86.78888)); // (822 of 1207.0) 2005-04-30T14:47:15Z 9731 02:42:11
|
845
|
-
points.push(new GLatLng(36.17377,-86.78854)); // (823 of 1207.0) 2005-04-30T14:47:27Z 9743 02:42:23
|
846
|
-
// points.push(new GLatLng(36.17341,-86.78832)); // (824 of 1207.0) 2005-04-30T14:47:40Z 9756 02:42:36
|
847
|
-
|
848
|
-
// points.push(new GLatLng(36.17279,-86.78798)); // (826 of 1207.0) 2005-04-30T14:48:05Z 9781 02:43:01
|
849
|
-
// points.push(new GLatLng(36.17261,-86.78785)); // (827 of 1207.0) 2005-04-30T14:48:13Z 9789 02:43:09
|
850
|
-
// points.push(new GLatLng(36.17253,-86.78777)); // (828 of 1207.0) 2005-04-30T14:48:22Z 9798 02:43:18
|
851
|
-
points.push(new GLatLng(36.1724,-86.7877)); // (829 of 1207.0) 2005-04-30T14:48:34Z 9810 02:43:30
|
852
|
-
// points.push(new GLatLng(36.17225,-86.78757)); // (830 of 1207.0) 2005-04-30T14:48:45Z 9821 02:43:41
|
853
|
-
|
854
|
-
// points.push(new GLatLng(36.17199,-86.78742)); // (832 of 1207.0) 2005-04-30T14:49:06Z 9842 02:44:02
|
855
|
-
// points.push(new GLatLng(36.17182,-86.78727)); // (833 of 1207.0) 2005-04-30T14:49:17Z 9853 02:44:13
|
856
|
-
// points.push(new GLatLng(36.17152,-86.78712)); // (834 of 1207.0) 2005-04-30T14:49:30Z 9866 02:44:26
|
857
|
-
points.push(new GLatLng(36.17118,-86.78693)); // (835 of 1207.0) 2005-04-30T14:49:43Z 9879 02:44:39
|
858
|
-
// points.push(new GLatLng(36.17081,-86.78671)); // (836 of 1207.0) 2005-04-30T14:49:58Z 9894 02:44:54
|
859
|
-
|
860
|
-
points.push(new GLatLng(36.1698,-86.78603)); // (838 of 1207.0) 2005-04-30T14:50:40Z 9936 02:45:36
|
861
|
-
// points.push(new GLatLng(36.16965,-86.78581)); // (839 of 1207.0) 2005-04-30T14:50:50Z 9946 02:45:46
|
862
|
-
// points.push(new GLatLng(36.1697,-86.78568)); // (840 of 1207.0) 2005-04-30T14:50:54Z 9950 02:45:50
|
863
|
-
// points.push(new GLatLng(36.16985,-86.78536)); // (841 of 1207.0) 2005-04-30T14:51:04Z 9960 02:46:00
|
864
|
-
// points.push(new GLatLng(36.16995,-86.78508)); // (842 of 1207.0) 2005-04-30T14:51:13Z 9969 02:46:09
|
865
|
-
|
866
|
-
points.push(new GLatLng(36.16982,-86.78446)); // (844 of 1207.0) 2005-04-30T14:51:35Z 9991 02:46:31
|
867
|
-
// points.push(new GLatLng(36.16942,-86.78405)); // (845 of 1207.0) 2005-04-30T14:51:55Z 10011 02:46:51
|
868
|
-
// points.push(new GLatLng(36.1694,-86.78403)); // (846 of 1207.0) 2005-04-30T14:51:56Z 10012 02:46:52
|
869
|
-
// points.push(new GLatLng(36.1689,-86.78375)); // (847 of 1207.0) 2005-04-30T14:52:17Z 10033 02:47:13
|
870
|
-
// points.push(new GLatLng(36.16875,-86.78367)); // (848 of 1207.0) 2005-04-30T14:52:24Z 10040 02:47:20
|
871
|
-
|
872
|
-
points.push(new GLatLng(36.16882,-86.78349)); // (850 of 1207.0) 2005-04-30T14:52:31Z 10047 02:47:27
|
873
|
-
// points.push(new GLatLng(36.16877,-86.78337)); // (851 of 1207.0) 2005-04-30T14:52:35Z 10051 02:47:31
|
874
|
-
// points.push(new GLatLng(36.16871,-86.78326)); // (852 of 1207.0) 2005-04-30T14:52:39Z 10055 02:47:35
|
875
|
-
// points.push(new GLatLng(36.16854,-86.78268)); // (853 of 1207.0) 2005-04-30T14:53:00Z 10076 02:47:56
|
876
|
-
|
877
|
-
// points.push(new GLatLng(36.16819,-86.78201)); // (855 of 1207.0) 2005-04-30T14:53:24Z 10100 02:48:20
|
878
|
-
points.push(new GLatLng(36.16789,-86.78165)); // (856 of 1207.0) 2005-04-30T14:53:40Z 10116 02:48:36
|
879
|
-
// points.push(new GLatLng(36.16766,-86.78137)); // (857 of 1207.0) 2005-04-30T14:53:52Z 10128 02:48:48
|
880
|
-
// points.push(new GLatLng(36.16731,-86.78109)); // (858 of 1207.0) 2005-04-30T14:54:07Z 10143 02:49:03
|
881
|
-
// points.push(new GLatLng(36.16704,-86.78083)); // (859 of 1207.0) 2005-04-30T14:54:21Z 10157 02:49:17
|
882
|
-
|
883
|
-
// points.push(new GLatLng(36.16699,-86.78019)); // (861 of 1207.0) 2005-04-30T14:54:40Z 10176 02:49:36
|
884
|
-
points.push(new GLatLng(36.16701,-86.77987)); // (862 of 1207.0) 2005-04-30T14:54:50Z 10186 02:49:46
|
885
|
-
// points.push(new GLatLng(36.16697,-86.77959)); // (863 of 1207.0) 2005-04-30T14:54:59Z 10195 02:49:55
|
886
|
-
// points.push(new GLatLng(36.16682,-86.77938)); // (864 of 1207.0) 2005-04-30T14:55:08Z 10204 02:50:04
|
887
|
-
// points.push(new GLatLng(36.16654,-86.77914)); // (865 of 1207.0) 2005-04-30T14:55:23Z 10219 02:50:19
|
888
|
-
|
889
|
-
// points.push(new GLatLng(36.16575,-86.7786)); // (867 of 1207.0) 2005-04-30T14:56:00Z 10256 02:50:56
|
890
|
-
points.push(new GLatLng(36.16575,-86.77858)); // (868 of 1207.0) 2005-04-30T14:56:01Z 10257 02:50:57
|
891
|
-
// points.push(new GLatLng(36.16577,-86.77847)); // (869 of 1207.0) 2005-04-30T14:56:05Z 10261 02:51:01
|
892
|
-
// points.push(new GLatLng(36.16594,-86.77817)); // (870 of 1207.0) 2005-04-30T14:56:14Z 10270 02:51:10
|
893
|
-
// points.push(new GLatLng(36.16616,-86.77768)); // (871 of 1207.0) 2005-04-30T14:56:30Z 10286 02:51:26
|
894
|
-
|
895
|
-
// points.push(new GLatLng(36.16658,-86.77723)); // (873 of 1207.0) 2005-04-30T14:56:53Z 10309 02:51:49
|
896
|
-
points.push(new GLatLng(36.16701,-86.77719)); // (874 of 1207.0) 2005-04-30T14:57:08Z 10324 02:52:04
|
897
|
-
// points.push(new GLatLng(36.16714,-86.77697)); // (875 of 1207.0) 2005-04-30T14:57:16Z 10332 02:52:12
|
898
|
-
// points.push(new GLatLng(36.16725,-86.77678)); // (876 of 1207.0) 2005-04-30T14:57:23Z 10339 02:52:19
|
899
|
-
// points.push(new GLatLng(36.16736,-86.77652)); // (877 of 1207.0) 2005-04-30T14:57:32Z 10348 02:52:28
|
900
|
-
|
901
|
-
// points.push(new GLatLng(36.16755,-86.77607)); // (879 of 1207.0) 2005-04-30T14:57:47Z 10363 02:52:43
|
902
|
-
points.push(new GLatLng(36.16764,-86.77586)); // (880 of 1207.0) 2005-04-30T14:57:55Z 10371 02:52:51
|
903
|
-
// points.push(new GLatLng(36.16774,-86.7756)); // (881 of 1207.0) 2005-04-30T14:58:04Z 10380 02:53:00
|
904
|
-
// points.push(new GLatLng(36.16785,-86.77534)); // (882 of 1207.0) 2005-04-30T14:58:13Z 10389 02:53:09
|
905
|
-
// points.push(new GLatLng(36.16796,-86.7751)); // (883 of 1207.0) 2005-04-30T14:58:21Z 10397 02:53:17
|
906
|
-
|
907
|
-
// points.push(new GLatLng(36.16824,-86.77446)); // (885 of 1207.0) 2005-04-30T14:58:43Z 10419 02:53:39
|
908
|
-
points.push(new GLatLng(36.16839,-86.77414)); // (886 of 1207.0) 2005-04-30T14:58:54Z 10430 02:53:50
|
909
|
-
// points.push(new GLatLng(36.16854,-86.77373)); // (887 of 1207.0) 2005-04-30T14:59:08Z 10444 02:54:04
|
910
|
-
// points.push(new GLatLng(36.16869,-86.77335)); // (888 of 1207.0) 2005-04-30T14:59:21Z 10457 02:54:17
|
911
|
-
// points.push(new GLatLng(36.16877,-86.77309)); // (889 of 1207.0) 2005-04-30T14:59:29Z 10465 02:54:25
|
912
|
-
// points.push(new GLatLng(36.1689,-86.77279)); // (890 of 1207.0) 2005-04-30T14:59:39Z 10475 02:54:35
|
913
|
-
points.push(new GLatLng(36.16903,-86.77244)); // (891 of 1207.0) 2005-04-30T14:59:51Z 10487 02:54:47
|
914
|
-
|
915
|
-
// points.push(new GLatLng(36.16929,-86.77178)); // (893 of 1207.0) 2005-04-30T15:00:13Z 10509 02:55:09
|
916
|
-
// points.push(new GLatLng(36.16942,-86.77146)); // (894 of 1207.0) 2005-04-30T15:00:24Z 10520 02:55:20
|
917
|
-
// points.push(new GLatLng(36.16952,-86.77111)); // (895 of 1207.0) 2005-04-30T15:00:36Z 10532 02:55:32
|
918
|
-
// points.push(new GLatLng(36.16965,-86.77079)); // (896 of 1207.0) 2005-04-30T15:00:47Z 10543 02:55:43
|
919
|
-
points.push(new GLatLng(36.1698,-86.77045)); // (897 of 1207.0) 2005-04-30T15:00:59Z 10555 02:55:55
|
920
|
-
|
921
|
-
// points.push(new GLatLng(36.16989,-86.77015)); // (899 of 1207.0) 2005-04-30T15:01:10Z 10566 02:56:06
|
922
|
-
// points.push(new GLatLng(36.16997,-86.76989)); // (900 of 1207.0) 2005-04-30T15:01:19Z 10575 02:56:15
|
923
|
-
// points.push(new GLatLng(36.17008,-86.76963)); // (901 of 1207.0) 2005-04-30T15:01:28Z 10584 02:56:24
|
924
|
-
// points.push(new GLatLng(36.17015,-86.76942)); // (902 of 1207.0) 2005-04-30T15:01:35Z 10591 02:56:31
|
925
|
-
points.push(new GLatLng(36.17021,-86.76918)); // (903 of 1207.0) 2005-04-30T15:01:43Z 10599 02:56:39
|
926
|
-
|
927
|
-
// points.push(new GLatLng(36.17038,-86.76869)); // (905 of 1207.0) 2005-04-30T15:02:00Z 10616 02:56:56
|
928
|
-
// points.push(new GLatLng(36.17051,-86.76832)); // (906 of 1207.0) 2005-04-30T15:02:12Z 10628 02:57:08
|
929
|
-
// points.push(new GLatLng(36.17066,-86.76802)); // (907 of 1207.0) 2005-04-30T15:02:22Z 10638 02:57:18
|
930
|
-
// points.push(new GLatLng(36.17096,-86.76734)); // (908 of 1207.0) 2005-04-30T15:02:47Z 10663 02:57:43
|
931
|
-
points.push(new GLatLng(36.17109,-86.76695)); // (909 of 1207.0) 2005-04-30T15:03:01Z 10677 02:57:57
|
932
|
-
|
933
|
-
// points.push(new GLatLng(36.1712,-86.76648)); // (911 of 1207.0) 2005-04-30T15:03:17Z 10693 02:58:13
|
934
|
-
// points.push(new GLatLng(36.17128,-86.7662)); // (912 of 1207.0) 2005-04-30T15:03:27Z 10703 02:58:23
|
935
|
-
// points.push(new GLatLng(36.17139,-86.7659)); // (913 of 1207.0) 2005-04-30T15:03:38Z 10714 02:58:34
|
936
|
-
// points.push(new GLatLng(36.17148,-86.76566)); // (914 of 1207.0) 2005-04-30T15:03:46Z 10722 02:58:42
|
937
|
-
points.push(new GLatLng(36.17154,-86.76545)); // (915 of 1207.0) 2005-04-30T15:03:54Z 10730 02:58:50
|
938
|
-
|
939
|
-
// points.push(new GLatLng(36.17173,-86.76498)); // (917 of 1207.0) 2005-04-30T15:04:11Z 10747 02:59:07
|
940
|
-
// points.push(new GLatLng(36.17176,-86.76489)); // (918 of 1207.0) 2005-04-30T15:04:14Z 10750 02:59:10
|
941
|
-
// points.push(new GLatLng(36.17163,-86.76463)); // (919 of 1207.0) 2005-04-30T15:04:24Z 10760 02:59:20
|
942
|
-
|
943
|
-
points.push(new GLatLng(36.17094,-86.76423)); // (921 of 1207.0) 2005-04-30T15:04:53Z 10789 02:59:49
|
944
|
-
// points.push(new GLatLng(36.17066,-86.7641)); // (922 of 1207.0) 2005-04-30T15:05:04Z 10800 03:00:00
|
945
|
-
// points.push(new GLatLng(36.17055,-86.76401)); // (923 of 1207.0) 2005-04-30T15:05:11Z 10807 03:00:07
|
946
|
-
// points.push(new GLatLng(36.17047,-86.76397)); // (924 of 1207.0) 2005-04-30T15:05:14Z 10810 03:00:10
|
947
|
-
// points.push(new GLatLng(36.17028,-86.76388)); // (925 of 1207.0) 2005-04-30T15:05:22Z 10818 03:00:18
|
948
|
-
|
949
|
-
points.push(new GLatLng(36.16995,-86.76367)); // (927 of 1207.0) 2005-04-30T15:05:43Z 10839 03:00:39
|
950
|
-
// points.push(new GLatLng(36.16961,-86.76345)); // (928 of 1207.0) 2005-04-30T15:05:58Z 10854 03:00:54
|
951
|
-
// points.push(new GLatLng(36.1692,-86.7632)); // (929 of 1207.0) 2005-04-30T15:06:14Z 10870 03:01:10
|
952
|
-
// points.push(new GLatLng(36.16873,-86.7629)); // (930 of 1207.0) 2005-04-30T15:06:33Z 10889 03:01:29
|
953
|
-
// points.push(new GLatLng(36.16826,-86.7626)); // (931 of 1207.0) 2005-04-30T15:06:52Z 10908 03:01:48
|
954
|
-
|
955
|
-
points.push(new GLatLng(36.16751,-86.76217)); // (933 of 1207.0) 2005-04-30T15:07:24Z 10940 03:02:20
|
956
|
-
// points.push(new GLatLng(36.16708,-86.76195)); // (934 of 1207.0) 2005-04-30T15:07:41Z 10957 03:02:37
|
957
|
-
// points.push(new GLatLng(36.16665,-86.76174)); // (935 of 1207.0) 2005-04-30T15:07:59Z 10975 03:02:55
|
958
|
-
// points.push(new GLatLng(36.16626,-86.76152)); // (936 of 1207.0) 2005-04-30T15:08:15Z 10991 03:03:11
|
959
|
-
// points.push(new GLatLng(36.16579,-86.76122)); // (937 of 1207.0) 2005-04-30T15:08:36Z 11012 03:03:32
|
960
|
-
|
961
|
-
points.push(new GLatLng(36.16513,-86.76084)); // (939 of 1207.0) 2005-04-30T15:09:07Z 11043 03:04:03
|
962
|
-
// points.push(new GLatLng(36.16489,-86.76071)); // (940 of 1207.0) 2005-04-30T15:09:17Z 11053 03:04:13
|
963
|
-
points.push(new GLatLng(36.16463,-86.76058)); // (941 of 1207.0) 2005-04-30T15:09:28Z 11064 03:04:24
|
964
|
-
// points.push(new GLatLng(36.16433,-86.76041)); // (942 of 1207.0) 2005-04-30T15:09:41Z 11077 03:04:37
|
965
|
-
// points.push(new GLatLng(36.16414,-86.7603)); // (943 of 1207.0) 2005-04-30T15:09:49Z 11085 03:04:45
|
966
|
-
|
967
|
-
// points.push(new GLatLng(36.16362,-86.76)); // (945 of 1207.0) 2005-04-30T15:10:10Z 11106 03:05:06
|
968
|
-
// points.push(new GLatLng(36.16328,-86.75981)); // (946 of 1207.0) 2005-04-30T15:10:24Z 11120 03:05:20
|
969
|
-
points.push(new GLatLng(36.16298,-86.75963)); // (947 of 1207.0) 2005-04-30T15:10:37Z 11133 03:05:33
|
970
|
-
// points.push(new GLatLng(36.16279,-86.75953)); // (948 of 1207.0) 2005-04-30T15:10:45Z 11141 03:05:41
|
971
|
-
// points.push(new GLatLng(36.16251,-86.75931)); // (949 of 1207.0) 2005-04-30T15:10:58Z 11154 03:05:54
|
972
|
-
// points.push(new GLatLng(36.16216,-86.75914)); // (950 of 1207.0) 2005-04-30T15:11:12Z 11168 03:06:08
|
973
|
-
// points.push(new GLatLng(36.16184,-86.75893)); // (951 of 1207.0) 2005-04-30T15:11:27Z 11183 03:06:23
|
974
|
-
// points.push(new GLatLng(36.16154,-86.75873)); // (952 of 1207.0) 2005-04-30T15:11:41Z 11197 03:06:37
|
975
|
-
points.push(new GLatLng(36.16124,-86.75854)); // (953 of 1207.0) 2005-04-30T15:11:54Z 11210 03:06:50
|
976
|
-
// points.push(new GLatLng(36.16109,-86.75839)); // (954 of 1207.0) 2005-04-30T15:12:01Z 11217 03:06:57
|
977
|
-
// points.push(new GLatLng(36.16109,-86.75826)); // (955 of 1207.0) 2005-04-30T15:12:05Z 11221 03:07:01
|
978
|
-
// points.push(new GLatLng(36.16109,-86.75802)); // (956 of 1207.0) 2005-04-30T15:12:12Z 11228 03:07:08
|
979
|
-
// points.push(new GLatLng(36.16113,-86.75772)); // (957 of 1207.0) 2005-04-30T15:12:22Z 11238 03:07:18
|
980
|
-
// points.push(new GLatLng(36.1612,-86.75736)); // (958 of 1207.0) 2005-04-30T15:12:34Z 11250 03:07:30
|
981
|
-
points.push(new GLatLng(36.16128,-86.75691)); // (959 of 1207.0) 2005-04-30T15:12:48Z 11264 03:07:44
|
982
|
-
// points.push(new GLatLng(36.16133,-86.7565)); // (960 of 1207.0) 2005-04-30T15:13:00Z 11276 03:07:56
|
983
|
-
// points.push(new GLatLng(36.16135,-86.75614)); // (961 of 1207.0) 2005-04-30T15:13:11Z 11287 03:08:07
|
984
|
-
// points.push(new GLatLng(36.16137,-86.75592)); // (962 of 1207.0) 2005-04-30T15:13:18Z 11294 03:08:14
|
985
|
-
// points.push(new GLatLng(36.16156,-86.75556)); // (963 of 1207.0) 2005-04-30T15:13:30Z 11306 03:08:26
|
986
|
-
// points.push(new GLatLng(36.16148,-86.75519)); // (964 of 1207.0) 2005-04-30T15:13:41Z 11317 03:08:37
|
987
|
-
points.push(new GLatLng(36.1615,-86.75491)); // (965 of 1207.0) 2005-04-30T15:13:50Z 11326 03:08:46
|
988
|
-
// points.push(new GLatLng(36.16152,-86.75468)); // (966 of 1207.0) 2005-04-30T15:13:57Z 11333 03:08:53
|
989
|
-
// points.push(new GLatLng(36.16156,-86.75431)); // (967 of 1207.0) 2005-04-30T15:14:09Z 11345 03:09:05
|
990
|
-
// points.push(new GLatLng(36.16161,-86.75397)); // (968 of 1207.0) 2005-04-30T15:14:20Z 11356 03:09:16
|
991
|
-
// points.push(new GLatLng(36.16165,-86.75369)); // (969 of 1207.0) 2005-04-30T15:14:29Z 11365 03:09:25
|
992
|
-
// points.push(new GLatLng(36.16169,-86.75341)); // (970 of 1207.0) 2005-04-30T15:14:38Z 11374 03:09:34
|
993
|
-
points.push(new GLatLng(36.16174,-86.75315)); // (971 of 1207.0) 2005-04-30T15:14:46Z 11382 03:09:42
|
994
|
-
// points.push(new GLatLng(36.1618,-86.7529)); // (972 of 1207.0) 2005-04-30T15:14:55Z 11391 03:09:51
|
995
|
-
// points.push(new GLatLng(36.16184,-86.75264)); // (973 of 1207.0) 2005-04-30T15:15:03Z 11399 03:09:59
|
996
|
-
// points.push(new GLatLng(36.16191,-86.75234)); // (974 of 1207.0) 2005-04-30T15:15:13Z 11409 03:10:09
|
997
|
-
// points.push(new GLatLng(36.16199,-86.752)); // (975 of 1207.0) 2005-04-30T15:15:24Z 11420 03:10:20
|
998
|
-
// points.push(new GLatLng(36.16206,-86.75167)); // (976 of 1207.0) 2005-04-30T15:15:35Z 11431 03:10:31
|
999
|
-
points.push(new GLatLng(36.1621,-86.75133)); // (977 of 1207.0) 2005-04-30T15:15:47Z 11443 03:10:43
|
1000
|
-
// points.push(new GLatLng(36.16216,-86.75105)); // (978 of 1207.0) 2005-04-30T15:15:56Z 11452 03:10:52
|
1001
|
-
// points.push(new GLatLng(36.16223,-86.75081)); // (979 of 1207.0) 2005-04-30T15:16:04Z 11460 03:11:00
|
1002
|
-
// points.push(new GLatLng(36.16229,-86.75049)); // (980 of 1207.0) 2005-04-30T15:16:15Z 11471 03:11:11
|
1003
|
-
|
1004
|
-
// points.push(new GLatLng(36.16244,-86.74985)); // (982 of 1207.0) 2005-04-30T15:16:37Z 11493 03:11:33
|
1005
|
-
points.push(new GLatLng(36.16251,-86.74948)); // (983 of 1207.0) 2005-04-30T15:16:49Z 11505 03:11:45
|
1006
|
-
// points.push(new GLatLng(36.16257,-86.74912)); // (984 of 1207.0) 2005-04-30T15:17:02Z 11518 03:11:58
|
1007
|
-
// points.push(new GLatLng(36.16257,-86.7491)); // (985 of 1207.0) 2005-04-30T15:17:03Z 11519 03:11:59
|
1008
|
-
// points.push(new GLatLng(36.16259,-86.74901)); // (986 of 1207.0) 2005-04-30T15:17:09Z 11525 03:12:05
|
1009
|
-
|
1010
|
-
// points.push(new GLatLng(36.16264,-86.74867)); // (988 of 1207.0) 2005-04-30T15:17:24Z 11540 03:12:20
|
1011
|
-
points.push(new GLatLng(36.16268,-86.74841)); // (989 of 1207.0) 2005-04-30T15:17:33Z 11549 03:12:29
|
1012
|
-
// points.push(new GLatLng(36.16279,-86.74805)); // (990 of 1207.0) 2005-04-30T15:17:45Z 11561 03:12:41
|
1013
|
-
// points.push(new GLatLng(36.16285,-86.7477)); // (991 of 1207.0) 2005-04-30T15:17:56Z 11572 03:12:52
|
1014
|
-
// points.push(new GLatLng(36.16294,-86.74736)); // (992 of 1207.0) 2005-04-30T15:18:07Z 11583 03:13:03
|
1015
|
-
|
1016
|
-
// points.push(new GLatLng(36.16304,-86.7468)); // (994 of 1207.0) 2005-04-30T15:18:25Z 11601 03:13:21
|
1017
|
-
points.push(new GLatLng(36.16313,-86.74652)); // (995 of 1207.0) 2005-04-30T15:18:34Z 11610 03:13:30
|
1018
|
-
// points.push(new GLatLng(36.16319,-86.74612)); // (996 of 1207.0) 2005-04-30T15:18:47Z 11623 03:13:43
|
1019
|
-
points.push(new GLatLng(36.16326,-86.74571)); // (997 of 1207.0) 2005-04-30T15:19:00Z 11636 03:13:56
|
1020
|
-
// points.push(new GLatLng(36.16324,-86.74536)); // (998 of 1207.0) 2005-04-30T15:19:11Z 11647 03:14:07
|
1021
|
-
|
1022
|
-
// points.push(new GLatLng(36.16313,-86.74496)); // (1000 of 1207.0) 2005-04-30T15:19:25Z 11661 03:14:21
|
1023
|
-
// points.push(new GLatLng(36.16311,-86.74464)); // (1001 of 1207.0) 2005-04-30T15:19:36Z 11672 03:14:32
|
1024
|
-
// points.push(new GLatLng(36.16319,-86.74429)); // (1002 of 1207.0) 2005-04-30T15:19:47Z 11683 03:14:43
|
1025
|
-
points.push(new GLatLng(36.16337,-86.74393)); // (1003 of 1207.0) 2005-04-30T15:20:01Z 11697 03:14:57
|
1026
|
-
// points.push(new GLatLng(36.16345,-86.74358)); // (1004 of 1207.0) 2005-04-30T15:20:12Z 11708 03:15:08
|
1027
|
-
|
1028
|
-
// points.push(new GLatLng(36.1636,-86.74298)); // (1006 of 1207.0) 2005-04-30T15:20:32Z 11728 03:15:28
|
1029
|
-
// points.push(new GLatLng(36.16364,-86.74266)); // (1007 of 1207.0) 2005-04-30T15:20:43Z 11739 03:15:39
|
1030
|
-
// points.push(new GLatLng(36.16371,-86.74225)); // (1008 of 1207.0) 2005-04-30T15:20:56Z 11752 03:15:52
|
1031
|
-
points.push(new GLatLng(36.16371,-86.74206)); // (1009 of 1207.0) 2005-04-30T15:21:02Z 11758 03:15:58
|
1032
|
-
// points.push(new GLatLng(36.16377,-86.7418)); // (1010 of 1207.0) 2005-04-30T15:21:11Z 11767 03:16:07
|
1033
|
-
|
1034
|
-
// points.push(new GLatLng(36.16388,-86.74131)); // (1012 of 1207.0) 2005-04-30T15:21:27Z 11783 03:16:23
|
1035
|
-
// points.push(new GLatLng(36.16395,-86.74094)); // (1013 of 1207.0) 2005-04-30T15:21:39Z 11795 03:16:35
|
1036
|
-
// points.push(new GLatLng(36.16399,-86.74071)); // (1014 of 1207.0) 2005-04-30T15:21:47Z 11803 03:16:43
|
1037
|
-
points.push(new GLatLng(36.16403,-86.74049)); // (1015 of 1207.0) 2005-04-30T15:21:54Z 11810 03:16:50
|
1038
|
-
// points.push(new GLatLng(36.1641,-86.74026)); // (1016 of 1207.0) 2005-04-30T15:22:02Z 11818 03:16:58
|
1039
|
-
|
1040
|
-
|
1041
|
-
// points.push(new GLatLng(36.16431,-86.73927)); // (1019 of 1207.0) 2005-04-30T15:22:35Z 11851 03:17:31
|
1042
|
-
// points.push(new GLatLng(36.16433,-86.73895)); // (1020 of 1207.0) 2005-04-30T15:22:45Z 11861 03:17:41
|
1043
|
-
points.push(new GLatLng(36.16437,-86.73843)); // (1021 of 1207.0) 2005-04-30T15:23:02Z 11878 03:17:58
|
1044
|
-
// points.push(new GLatLng(36.1644,-86.73813)); // (1022 of 1207.0) 2005-04-30T15:23:11Z 11887 03:18:07
|
1045
|
-
// points.push(new GLatLng(36.1644,-86.73792)); // (1023 of 1207.0) 2005-04-30T15:23:18Z 11894 03:18:14
|
1046
|
-
|
1047
|
-
// points.push(new GLatLng(36.16435,-86.73736)); // (1025 of 1207.0) 2005-04-30T15:23:36Z 11912 03:18:32
|
1048
|
-
// points.push(new GLatLng(36.1644,-86.73706)); // (1026 of 1207.0) 2005-04-30T15:23:46Z 11922 03:18:42
|
1049
|
-
points.push(new GLatLng(36.16444,-86.73672)); // (1027 of 1207.0) 2005-04-30T15:23:57Z 11933 03:18:53
|
1050
|
-
// points.push(new GLatLng(36.16448,-86.73631)); // (1028 of 1207.0) 2005-04-30T15:24:10Z 11946 03:19:06
|
1051
|
-
// points.push(new GLatLng(36.16455,-86.73605)); // (1029 of 1207.0) 2005-04-30T15:24:19Z 11955 03:19:15
|
1052
|
-
|
1053
|
-
// points.push(new GLatLng(36.16472,-86.73554)); // (1031 of 1207.0) 2005-04-30T15:24:37Z 11973 03:19:33
|
1054
|
-
// points.push(new GLatLng(36.1648,-86.73513)); // (1032 of 1207.0) 2005-04-30T15:24:51Z 11987 03:19:47
|
1055
|
-
points.push(new GLatLng(36.1648,-86.73479)); // (1033 of 1207.0) 2005-04-30T15:25:03Z 11999 03:19:59
|
1056
|
-
// points.push(new GLatLng(36.16491,-86.73444)); // (1034 of 1207.0) 2005-04-30T15:25:14Z 12010 03:20:10
|
1057
|
-
// points.push(new GLatLng(36.16495,-86.73412)); // (1035 of 1207.0) 2005-04-30T15:25:25Z 12021 03:20:21
|
1058
|
-
|
1059
|
-
// points.push(new GLatLng(36.16519,-86.73339)); // (1037 of 1207.0) 2005-04-30T15:25:51Z 12047 03:20:47
|
1060
|
-
// points.push(new GLatLng(36.1656,-86.73346)); // (1038 of 1207.0) 2005-04-30T15:26:04Z 12060 03:21:00
|
1061
|
-
points.push(new GLatLng(36.16588,-86.7335)); // (1039 of 1207.0) 2005-04-30T15:26:15Z 12071 03:21:11
|
1062
|
-
// points.push(new GLatLng(36.1662,-86.73341)); // (1040 of 1207.0) 2005-04-30T15:26:28Z 12084 03:21:24
|
1063
|
-
// points.push(new GLatLng(36.16639,-86.73326)); // (1041 of 1207.0) 2005-04-30T15:26:38Z 12094 03:21:34
|
1064
|
-
|
1065
|
-
// points.push(new GLatLng(36.16682,-86.73266)); // (1043 of 1207.0) 2005-04-30T15:27:05Z 12121 03:22:01
|
1066
|
-
// points.push(new GLatLng(36.16704,-86.73238)); // (1044 of 1207.0) 2005-04-30T15:27:17Z 12133 03:22:13
|
1067
|
-
points.push(new GLatLng(36.16729,-86.73204)); // (1045 of 1207.0) 2005-04-30T15:27:32Z 12148 03:22:28
|
1068
|
-
// points.push(new GLatLng(36.16761,-86.73172)); // (1046 of 1207.0) 2005-04-30T15:27:48Z 12164 03:22:44
|
1069
|
-
// points.push(new GLatLng(36.16804,-86.7315)); // (1047 of 1207.0) 2005-04-30T15:28:09Z 12185 03:23:05
|
1070
|
-
|
1071
|
-
points.push(new GLatLng(36.16858,-86.73268)); // (1049 of 1207.0) 2005-04-30T15:28:34Z 12210 03:23:30
|
1072
|
-
// points.push(new GLatLng(36.16862,-86.73273)); // (1050 of 1207.0) 2005-04-30T15:28:36Z 12212 03:23:32
|
1073
|
-
// points.push(new GLatLng(36.16886,-86.73273)); // (1051 of 1207.0) 2005-04-30T15:28:46Z 12222 03:23:42
|
1074
|
-
// points.push(new GLatLng(36.16899,-86.73249)); // (1052 of 1207.0) 2005-04-30T15:28:55Z 12231 03:23:51
|
1075
|
-
// points.push(new GLatLng(36.16907,-86.7318)); // (1053 of 1207.0) 2005-04-30T15:29:08Z 12244 03:24:04
|
1076
|
-
// points.push(new GLatLng(36.16937,-86.73152)); // (1054 of 1207.0) 2005-04-30T15:29:23Z 12259 03:24:19
|
1077
|
-
points.push(new GLatLng(36.16972,-86.73137)); // (1055 of 1207.0) 2005-04-30T15:29:38Z 12274 03:24:34
|
1078
|
-
// points.push(new GLatLng(36.17019,-86.73129)); // (1056 of 1207.0) 2005-04-30T15:29:56Z 12292 03:24:52
|
1079
|
-
// points.push(new GLatLng(36.17066,-86.73116)); // (1057 of 1207.0) 2005-04-30T15:30:14Z 12310 03:25:10
|
1080
|
-
// points.push(new GLatLng(36.17109,-86.73101)); // (1058 of 1207.0) 2005-04-30T15:30:31Z 12327 03:25:27
|
1081
|
-
// points.push(new GLatLng(36.17141,-86.73107)); // (1059 of 1207.0) 2005-04-30T15:30:44Z 12340 03:25:40
|
1082
|
-
// points.push(new GLatLng(36.17178,-86.73127)); // (1060 of 1207.0) 2005-04-30T15:30:59Z 12355 03:25:55
|
1083
|
-
points.push(new GLatLng(36.17208,-86.7315)); // (1061 of 1207.0) 2005-04-30T15:31:14Z 12370 03:26:10
|
1084
|
-
// points.push(new GLatLng(36.17246,-86.73189)); // (1062 of 1207.0) 2005-04-30T15:31:36Z 12392 03:26:32
|
1085
|
-
// points.push(new GLatLng(36.17276,-86.73198)); // (1063 of 1207.0) 2005-04-30T15:31:50Z 12406 03:26:46
|
1086
|
-
// points.push(new GLatLng(36.17289,-86.73187)); // (1064 of 1207.0) 2005-04-30T15:31:57Z 12413 03:26:53
|
1087
|
-
// points.push(new GLatLng(36.17259,-86.73045)); // (1065 of 1207.0) 2005-04-30T15:32:26Z 12442 03:27:22
|
1088
|
-
|
1089
|
-
points.push(new GLatLng(36.1686,-86.7291)); // (1067 of 1207.0) 2005-04-30T15:35:21Z 12617 03:30:17
|
1090
|
-
// points.push(new GLatLng(36.16847,-86.72863)); // (1068 of 1207.0) 2005-04-30T15:35:41Z 12637 03:30:37
|
1091
|
-
// points.push(new GLatLng(36.16824,-86.72826)); // (1069 of 1207.0) 2005-04-30T15:35:57Z 12653 03:30:53
|
1092
|
-
// points.push(new GLatLng(36.16787,-86.72801)); // (1070 of 1207.0) 2005-04-30T15:36:13Z 12669 03:31:09
|
1093
|
-
// points.push(new GLatLng(36.16749,-86.72792)); // (1071 of 1207.0) 2005-04-30T15:36:27Z 12683 03:31:23
|
1094
|
-
|
1095
|
-
points.push(new GLatLng(36.16663,-86.72811)); // (1073 of 1207.0) 2005-04-30T15:36:55Z 12711 03:31:51
|
1096
|
-
// points.push(new GLatLng(36.16622,-86.72818)); // (1074 of 1207.0) 2005-04-30T15:37:10Z 12726 03:32:06
|
1097
|
-
points.push(new GLatLng(36.16588,-86.72841)); // (1075 of 1207.0) 2005-04-30T15:37:26Z 12742 03:32:22
|
1098
|
-
// points.push(new GLatLng(36.16566,-86.72876)); // (1076 of 1207.0) 2005-04-30T15:37:40Z 12756 03:32:36
|
1099
|
-
// points.push(new GLatLng(36.16558,-86.72891)); // (1077 of 1207.0) 2005-04-30T15:37:45Z 12761 03:32:41
|
1100
|
-
|
1101
|
-
// points.push(new GLatLng(36.16534,-86.72946)); // (1079 of 1207.0) 2005-04-30T15:38:04Z 12780 03:33:00
|
1102
|
-
// points.push(new GLatLng(36.1653,-86.72976)); // (1080 of 1207.0) 2005-04-30T15:38:15Z 12791 03:33:11
|
1103
|
-
points.push(new GLatLng(36.16532,-86.73019)); // (1081 of 1207.0) 2005-04-30T15:38:28Z 12804 03:33:24
|
1104
|
-
// points.push(new GLatLng(36.16521,-86.73062)); // (1082 of 1207.0) 2005-04-30T15:38:42Z 12818 03:33:38
|
1105
|
-
// points.push(new GLatLng(36.16513,-86.73105)); // (1083 of 1207.0) 2005-04-30T15:38:56Z 12832 03:33:52
|
1106
|
-
|
1107
|
-
|
1108
|
-
// points.push(new GLatLng(36.16506,-86.73213)); // (1086 of 1207.0) 2005-04-30T15:39:31Z 12867 03:34:27
|
1109
|
-
points.push(new GLatLng(36.16504,-86.73236)); // (1087 of 1207.0) 2005-04-30T15:39:39Z 12875 03:34:35
|
1110
|
-
// points.push(new GLatLng(36.16502,-86.73262)); // (1088 of 1207.0) 2005-04-30T15:39:47Z 12883 03:34:43
|
1111
|
-
// points.push(new GLatLng(36.16502,-86.7329)); // (1089 of 1207.0) 2005-04-30T15:39:57Z 12893 03:34:53
|
1112
|
-
// points.push(new GLatLng(36.16504,-86.73341)); // (1090 of 1207.0) 2005-04-30T15:40:13Z 12909 03:35:09
|
1113
|
-
|
1114
|
-
// points.push(new GLatLng(36.16491,-86.73449)); // (1092 of 1207.0) 2005-04-30T15:40:47Z 12943 03:35:43
|
1115
|
-
points.push(new GLatLng(36.1648,-86.73485)); // (1093 of 1207.0) 2005-04-30T15:41:00Z 12956 03:35:56
|
1116
|
-
// points.push(new GLatLng(36.16472,-86.73528)); // (1094 of 1207.0) 2005-04-30T15:41:15Z 12971 03:36:11
|
1117
|
-
// points.push(new GLatLng(36.16463,-86.73567)); // (1095 of 1207.0) 2005-04-30T15:41:28Z 12984 03:36:24
|
1118
|
-
// points.push(new GLatLng(36.1645,-86.73612)); // (1096 of 1207.0) 2005-04-30T15:41:42Z 12998 03:36:38
|
1119
|
-
|
1120
|
-
// points.push(new GLatLng(36.16433,-86.73725)); // (1098 of 1207.0) 2005-04-30T15:42:21Z 13037 03:37:17
|
1121
|
-
points.push(new GLatLng(36.16433,-86.73768)); // (1099 of 1207.0) 2005-04-30T15:42:34Z 13050 03:37:30
|
1122
|
-
// points.push(new GLatLng(36.16435,-86.738)); // (1100 of 1207.0) 2005-04-30T15:42:44Z 13060 03:37:40
|
1123
|
-
// points.push(new GLatLng(36.16437,-86.7385)); // (1101 of 1207.0) 2005-04-30T15:43:01Z 13077 03:37:57
|
1124
|
-
// points.push(new GLatLng(36.16431,-86.7388)); // (1102 of 1207.0) 2005-04-30T15:43:11Z 13087 03:38:07
|
1125
|
-
|
1126
|
-
// points.push(new GLatLng(36.1642,-86.73976)); // (1104 of 1207.0) 2005-04-30T15:43:42Z 13118 03:38:38
|
1127
|
-
points.push(new GLatLng(36.1641,-86.74015)); // (1105 of 1207.0) 2005-04-30T15:43:54Z 13130 03:38:50
|
1128
|
-
// points.push(new GLatLng(36.16399,-86.74052)); // (1106 of 1207.0) 2005-04-30T15:44:07Z 13143 03:39:03
|
1129
|
-
// points.push(new GLatLng(36.1639,-86.7409)); // (1107 of 1207.0) 2005-04-30T15:44:20Z 13156 03:39:16
|
1130
|
-
// points.push(new GLatLng(36.16384,-86.74137)); // (1108 of 1207.0) 2005-04-30T15:44:35Z 13171 03:39:31
|
1131
|
-
|
1132
|
-
// points.push(new GLatLng(36.16369,-86.74225)); // (1110 of 1207.0) 2005-04-30T15:45:05Z 13201 03:40:01
|
1133
|
-
points.push(new GLatLng(36.1636,-86.74266)); // (1111 of 1207.0) 2005-04-30T15:45:19Z 13215 03:40:15
|
1134
|
-
|
1135
|
-
// points.push(new GLatLng(36.16343,-86.74341)); // (1113 of 1207.0) 2005-04-30T15:45:44Z 13240 03:40:40
|
1136
|
-
// points.push(new GLatLng(36.16332,-86.74382)); // (1114 of 1207.0) 2005-04-30T15:45:58Z 13254 03:40:54
|
1137
|
-
// points.push(new GLatLng(36.16317,-86.74425)); // (1115 of 1207.0) 2005-04-30T15:46:13Z 13269 03:41:09
|
1138
|
-
// points.push(new GLatLng(36.16307,-86.74457)); // (1116 of 1207.0) 2005-04-30T15:46:25Z 13281 03:41:21
|
1139
|
-
points.push(new GLatLng(36.163,-86.74496)); // (1117 of 1207.0) 2005-04-30T15:46:37Z 13293 03:41:33
|
1140
|
-
|
1141
|
-
points.push(new GLatLng(36.16317,-86.74551)); // (1119 of 1207.0) 2005-04-30T15:46:56Z 13312 03:41:52
|
1142
|
-
// points.push(new GLatLng(36.16322,-86.74564)); // (1120 of 1207.0) 2005-04-30T15:47:01Z 13317 03:41:57
|
1143
|
-
// points.push(new GLatLng(36.16313,-86.74622)); // (1121 of 1207.0) 2005-04-30T15:47:19Z 13335 03:42:15
|
1144
|
-
// points.push(new GLatLng(36.16311,-86.74629)); // (1122 of 1207.0) 2005-04-30T15:47:21Z 13337 03:42:17
|
1145
|
-
// points.push(new GLatLng(36.16304,-86.74657)); // (1123 of 1207.0) 2005-04-30T15:47:32Z 13348 03:42:28
|
1146
|
-
|
1147
|
-
points.push(new GLatLng(36.16294,-86.74717)); // (1125 of 1207.0) 2005-04-30T15:47:54Z 13370 03:42:50
|
1148
|
-
// points.push(new GLatLng(36.16292,-86.74734)); // (1126 of 1207.0) 2005-04-30T15:48:01Z 13377 03:42:57
|
1149
|
-
// points.push(new GLatLng(36.16283,-86.7477)); // (1127 of 1207.0) 2005-04-30T15:48:14Z 13390 03:43:10
|
1150
|
-
// points.push(new GLatLng(36.16272,-86.74813)); // (1128 of 1207.0) 2005-04-30T15:48:30Z 13406 03:43:26
|
1151
|
-
// points.push(new GLatLng(36.16261,-86.74848)); // (1129 of 1207.0) 2005-04-30T15:48:43Z 13419 03:43:39
|
1152
|
-
|
1153
|
-
points.push(new GLatLng(36.16249,-86.7491)); // (1131 of 1207.0) 2005-04-30T15:49:06Z 13442 03:44:02
|
1154
|
-
// points.push(new GLatLng(36.16244,-86.74942)); // (1132 of 1207.0) 2005-04-30T15:49:16Z 13452 03:44:12
|
1155
|
-
// points.push(new GLatLng(36.16238,-86.74978)); // (1133 of 1207.0) 2005-04-30T15:49:27Z 13463 03:44:23
|
1156
|
-
// points.push(new GLatLng(36.16227,-86.75024)); // (1134 of 1207.0) 2005-04-30T15:49:41Z 13477 03:44:37
|
1157
|
-
// points.push(new GLatLng(36.16216,-86.75066)); // (1135 of 1207.0) 2005-04-30T15:49:55Z 13491 03:44:51
|
1158
|
-
|
1159
|
-
points.push(new GLatLng(36.16206,-86.75116)); // (1137 of 1207.0) 2005-04-30T15:50:11Z 13507 03:45:07
|
1160
|
-
// points.push(new GLatLng(36.16199,-86.7515)); // (1138 of 1207.0) 2005-04-30T15:50:23Z 13519 03:45:19
|
1161
|
-
// points.push(new GLatLng(36.16193,-86.75195)); // (1139 of 1207.0) 2005-04-30T15:50:37Z 13533 03:45:33
|
1162
|
-
// points.push(new GLatLng(36.16186,-86.75227)); // (1140 of 1207.0) 2005-04-30T15:50:48Z 13544 03:45:44
|
1163
|
-
// points.push(new GLatLng(36.16176,-86.75277)); // (1141 of 1207.0) 2005-04-30T15:51:04Z 13560 03:46:00
|
1164
|
-
|
1165
|
-
points.push(new GLatLng(36.16156,-86.75365)); // (1143 of 1207.0) 2005-04-30T15:51:33Z 13589 03:46:29
|
1166
|
-
// points.push(new GLatLng(36.16154,-86.75386)); // (1144 of 1207.0) 2005-04-30T15:51:40Z 13596 03:46:36
|
1167
|
-
// points.push(new GLatLng(36.16152,-86.75408)); // (1145 of 1207.0) 2005-04-30T15:51:47Z 13603 03:46:43
|
1168
|
-
// points.push(new GLatLng(36.16148,-86.75431)); // (1146 of 1207.0) 2005-04-30T15:51:55Z 13611 03:46:51
|
1169
|
-
// points.push(new GLatLng(36.16146,-86.75461)); // (1147 of 1207.0) 2005-04-30T15:52:05Z 13621 03:47:01
|
1170
|
-
// points.push(new GLatLng(36.16143,-86.75485)); // (1148 of 1207.0) 2005-04-30T15:52:13Z 13629 03:47:09
|
1171
|
-
points.push(new GLatLng(36.16141,-86.75508)); // (1149 of 1207.0) 2005-04-30T15:52:21Z 13637 03:47:17
|
1172
|
-
// points.push(new GLatLng(36.16135,-86.75551)); // (1150 of 1207.0) 2005-04-30T15:52:35Z 13651 03:47:31
|
1173
|
-
// points.push(new GLatLng(36.16131,-86.75579)); // (1151 of 1207.0) 2005-04-30T15:52:44Z 13660 03:47:40
|
1174
|
-
// points.push(new GLatLng(36.16128,-86.75609)); // (1152 of 1207.0) 2005-04-30T15:52:54Z 13670 03:47:50
|
1175
|
-
// points.push(new GLatLng(36.16122,-86.75648)); // (1153 of 1207.0) 2005-04-30T15:53:07Z 13683 03:48:03
|
1176
|
-
// points.push(new GLatLng(36.16118,-86.75684)); // (1154 of 1207.0) 2005-04-30T15:53:19Z 13695 03:48:15
|
1177
|
-
points.push(new GLatLng(36.16113,-86.75717)); // (1155 of 1207.0) 2005-04-30T15:53:30Z 13706 03:48:26
|
1178
|
-
// points.push(new GLatLng(36.16107,-86.75762)); // (1156 of 1207.0) 2005-04-30T15:53:44Z 13720 03:48:40
|
1179
|
-
// points.push(new GLatLng(36.16103,-86.75809)); // (1157 of 1207.0) 2005-04-30T15:53:59Z 13735 03:48:55
|
1180
|
-
// points.push(new GLatLng(36.16096,-86.75856)); // (1158 of 1207.0) 2005-04-30T15:54:14Z 13750 03:49:10
|
1181
|
-
// points.push(new GLatLng(36.16094,-86.75888)); // (1159 of 1207.0) 2005-04-30T15:54:24Z 13760 03:49:20
|
1182
|
-
// points.push(new GLatLng(36.16098,-86.75938)); // (1160 of 1207.0) 2005-04-30T15:54:40Z 13776 03:49:36
|
1183
|
-
points.push(new GLatLng(36.16103,-86.76006)); // (1161 of 1207.0) 2005-04-30T15:55:02Z 13798 03:49:58
|
1184
|
-
// points.push(new GLatLng(36.16107,-86.76075)); // (1162 of 1207.0) 2005-04-30T15:55:24Z 13820 03:50:20
|
1185
|
-
// points.push(new GLatLng(36.16107,-86.76111)); // (1163 of 1207.0) 2005-04-30T15:55:35Z 13831 03:50:31
|
1186
|
-
// points.push(new GLatLng(36.16109,-86.76137)); // (1164 of 1207.0) 2005-04-30T15:55:43Z 13839 03:50:39
|
1187
|
-
// points.push(new GLatLng(36.16111,-86.76163)); // (1165 of 1207.0) 2005-04-30T15:55:51Z 13847 03:50:47
|
1188
|
-
// points.push(new GLatLng(36.16116,-86.76204)); // (1166 of 1207.0) 2005-04-30T15:56:04Z 13860 03:51:00
|
1189
|
-
points.push(new GLatLng(36.16116,-86.76242)); // (1167 of 1207.0) 2005-04-30T15:56:16Z 13872 03:51:12
|
1190
|
-
// points.push(new GLatLng(36.1612,-86.76287)); // (1168 of 1207.0) 2005-04-30T15:56:31Z 13887 03:51:27
|
1191
|
-
points.push(new GLatLng(36.1612,-86.76335)); // (1169 of 1207.0) 2005-04-30T15:56:45Z 13901 03:51:41
|
1192
|
-
// points.push(new GLatLng(36.16124,-86.76375)); // (1170 of 1207.0) 2005-04-30T15:56:58Z 13914 03:51:54
|
1193
|
-
// points.push(new GLatLng(36.16126,-86.76382)); // (1171 of 1207.0) 2005-04-30T15:57:00Z 13916 03:51:56
|
1194
|
-
// points.push(new GLatLng(36.16128,-86.76408)); // (1172 of 1207.0) 2005-04-30T15:57:08Z 13924 03:52:04
|
1195
|
-
|
1196
|
-
// points.push(new GLatLng(36.16135,-86.76459)); // (1174 of 1207.0) 2005-04-30T15:57:25Z 13941 03:52:21
|
1197
|
-
points.push(new GLatLng(36.16139,-86.76491)); // (1175 of 1207.0) 2005-04-30T15:57:35Z 13951 03:52:31
|
1198
|
-
// points.push(new GLatLng(36.16143,-86.76526)); // (1176 of 1207.0) 2005-04-30T15:57:46Z 13962 03:52:42
|
1199
|
-
// points.push(new GLatLng(36.16148,-86.76551)); // (1177 of 1207.0) 2005-04-30T15:57:55Z 13971 03:52:51
|
1200
|
-
// points.push(new GLatLng(36.16152,-86.76586)); // (1178 of 1207.0) 2005-04-30T15:58:06Z 13982 03:53:02
|
1201
|
-
// points.push(new GLatLng(36.16154,-86.76611)); // (1179 of 1207.0) 2005-04-30T15:58:14Z 13990 03:53:10
|
1202
|
-
// points.push(new GLatLng(36.16161,-86.76644)); // (1180 of 1207.0) 2005-04-30T15:58:24Z 14000 03:53:20
|
1203
|
-
points.push(new GLatLng(36.16165,-86.76667)); // (1181 of 1207.0) 2005-04-30T15:58:31Z 14007 03:53:27
|
1204
|
-
// points.push(new GLatLng(36.16171,-86.76708)); // (1182 of 1207.0) 2005-04-30T15:58:43Z 14019 03:53:39
|
1205
|
-
// points.push(new GLatLng(36.1618,-86.76732)); // (1183 of 1207.0) 2005-04-30T15:58:51Z 14027 03:53:47
|
1206
|
-
// points.push(new GLatLng(36.16186,-86.76757)); // (1184 of 1207.0) 2005-04-30T15:58:59Z 14035 03:53:55
|
1207
|
-
// points.push(new GLatLng(36.16193,-86.76783)); // (1185 of 1207.0) 2005-04-30T15:59:07Z 14043 03:54:03
|
1208
|
-
// points.push(new GLatLng(36.16206,-86.76809)); // (1186 of 1207.0) 2005-04-30T15:59:16Z 14052 03:54:12
|
1209
|
-
points.push(new GLatLng(36.16227,-86.76832)); // (1187 of 1207.0) 2005-04-30T15:59:27Z 14063 03:54:23
|
1210
|
-
// points.push(new GLatLng(36.16246,-86.76845)); // (1188 of 1207.0) 2005-04-30T15:59:35Z 14071 03:54:31
|
1211
|
-
// points.push(new GLatLng(36.16272,-86.7686)); // (1189 of 1207.0) 2005-04-30T15:59:45Z 14081 03:54:41
|
1212
|
-
// points.push(new GLatLng(36.16309,-86.76893)); // (1190 of 1207.0) 2005-04-30T16:00:01Z 14097 03:54:57
|
1213
|
-
// points.push(new GLatLng(36.16345,-86.76908)); // (1191 of 1207.0) 2005-04-30T16:00:13Z 14109 03:55:09
|
1214
|
-
// points.push(new GLatLng(36.16364,-86.76918)); // (1192 of 1207.0) 2005-04-30T16:00:19Z 14115 03:55:15
|
1215
|
-
points.push(new GLatLng(36.1639,-86.76933)); // (1193 of 1207.0) 2005-04-30T16:00:27Z 14123 03:55:23
|
1216
|
-
// points.push(new GLatLng(36.1642,-86.7695)); // (1194 of 1207.0) 2005-04-30T16:00:37Z 14133 03:55:33
|
1217
|
-
// points.push(new GLatLng(36.16461,-86.76972)); // (1195 of 1207.0) 2005-04-30T16:00:51Z 14147 03:55:47
|
1218
|
-
// points.push(new GLatLng(36.16491,-86.76996)); // (1196 of 1207.0) 2005-04-30T16:01:02Z 14158 03:55:58
|
1219
|
-
// points.push(new GLatLng(36.16495,-86.77004)); // (1197 of 1207.0) 2005-04-30T16:01:05Z 14161 03:56:01
|
1220
|
-
// points.push(new GLatLng(36.16491,-86.77023)); // (1198 of 1207.0) 2005-04-30T16:01:11Z 14167 03:56:07
|
1221
|
-
points.push(new GLatLng(36.16476,-86.77051)); // (1199 of 1207.0) 2005-04-30T16:01:19Z 14175 03:56:15
|
1222
|
-
// points.push(new GLatLng(36.16461,-86.7709)); // (1200 of 1207.0) 2005-04-30T16:01:29Z 14185 03:56:25
|
1223
|
-
// points.push(new GLatLng(36.16444,-86.77137)); // (1201 of 1207.0) 2005-04-30T16:01:41Z 14197 03:56:37
|
1224
|
-
// points.push(new GLatLng(36.16425,-86.77182)); // (1202 of 1207.0) 2005-04-30T16:01:53Z 14209 03:56:49
|
1225
|
-
// points.push(new GLatLng(36.16422,-86.77191)); // (1203 of 1207.0) 2005-04-30T16:01:59Z 14215 03:56:55
|
1226
|
-
// points.push(new GLatLng(36.1642,-86.77195)); // (1204 of 1207.0) 2005-04-30T16:02:03Z 14219 03:56:59
|
1227
|
-
points.push(new GLatLng(36.16416,-86.77202)); // (1205 of 1207.0) 2005-04-30T16:02:12Z 14228 03:57:08
|
1228
|
-
// points.push(new GLatLng(36.16416,-86.77204)); // (1206 of 1207.0) 2005-04-30T16:02:22Z 14238 03:57:18
|
1229
|
-
points.push(new GLatLng(36.16416,-86.7721)); // (1207 of 1207.0) 2005-04-30T16:02:31Z 14247 03:57:27
|
23
|
+
points.push(new GLatLng(36.14661,-86.80903)); // (1 of 1207.0) 2005-04-30T12:05:04Z 0 00:00:00 0.0 Gooby 1.2.0
|
24
|
+
// points.push(new GLatLng(36.14663,-86.80897)); // (2 of 1207.0) 2005-04-30T12:05:08Z 4 00:00:04 0.00582877777752377 Gooby 1.2.0
|
25
|
+
// points.push(new GLatLng(36.14665,-86.80897)); // (3 of 1207.0) 2005-04-30T12:05:09Z 5 00:00:05 0.0080510492042237 Gooby 1.2.0
|
26
|
+
// points.push(new GLatLng(36.14676,-86.80882)); // (4 of 1207.0) 2005-04-30T12:05:14Z 10 00:00:10 0.0262436017499592 Gooby 1.2.0
|
27
|
+
// points.push(new GLatLng(36.14678,-86.80875)); // (5 of 1207.0) 2005-04-30T12:05:16Z 12 00:00:12 0.0329104160300593 Gooby 1.2.0
|
28
|
+
// points.push(new GLatLng(36.14686,-86.8086)); // (6 of 1207.0) 2005-04-30T12:05:21Z 17 00:00:17 0.0490503153841811 Gooby 1.2.0
|
29
|
+
points.push(new GLatLng(36.14699,-86.80834)); // (7 of 1207.0) 2005-04-30T12:05:30Z 26 00:00:26 0.0765074599621374 Gooby 1.2.0
|
30
|
+
// points.push(new GLatLng(36.14712,-86.80804)); // (8 of 1207.0) 2005-04-30T12:05:41Z 37 00:00:37 0.107076629242205 Gooby 1.2.0
|
31
|
+
// points.push(new GLatLng(36.14719,-86.80781)); // (9 of 1207.0) 2005-04-30T12:05:49Z 45 00:00:45 0.129145727263502 Gooby 1.2.0
|
32
|
+
// points.push(new GLatLng(36.14736,-86.8074)); // (10 of 1207.0) 2005-04-30T12:06:04Z 60 00:01:00 0.170527360062516 Gooby 1.2.0
|
33
|
+
// points.push(new GLatLng(36.14755,-86.80693)); // (11 of 1207.0) 2005-04-30T12:06:19Z 75 00:01:15 0.217719296722279 Gooby 1.2.0
|
34
|
+
// points.push(new GLatLng(36.14779,-86.80652)); // (12 of 1207.0) 2005-04-30T12:06:32Z 88 00:01:28 0.263186062649542 Gooby 1.2.0
|
35
|
+
points.push(new GLatLng(36.14802,-86.80603)); // (13 of 1207.0) 2005-04-30T12:06:47Z 103 00:01:43 0.314073538863022 Gooby 1.2.0
|
36
|
+
// points.push(new GLatLng(36.1482,-86.80562)); // (14 of 1207.0) 2005-04-30T12:07:00Z 116 00:01:56 0.355974247053597 Gooby 1.2.0
|
37
|
+
// points.push(new GLatLng(36.14841,-86.80517)); // (15 of 1207.0) 2005-04-30T12:07:14Z 130 00:02:10 0.402639243442868 Gooby 1.2.0
|
38
|
+
// points.push(new GLatLng(36.14869,-86.8047)); // (16 of 1207.0) 2005-04-30T12:07:29Z 145 00:02:25 0.455079687019915 Gooby 1.2.0
|
39
|
+
// points.push(new GLatLng(36.14882,-86.80435)); // (17 of 1207.0) 2005-04-30T12:07:40Z 156 00:02:36 0.489669272044063 Gooby 1.2.0
|
40
|
+
// points.push(new GLatLng(36.14899,-86.8039)); // (18 of 1207.0) 2005-04-30T12:07:54Z 170 00:02:50 0.53427520103934 Gooby 1.2.0
|
41
|
+
points.push(new GLatLng(36.14925,-86.80341)); // (19 of 1207.0) 2005-04-30T12:08:10Z 186 00:03:06 0.586917693629301 Gooby 1.2.0
|
42
|
+
// points.push(new GLatLng(36.1495,-86.80296)); // (20 of 1207.0) 2005-04-30T12:08:25Z 201 00:03:21 0.635959133217077 Gooby 1.2.0
|
43
|
+
// points.push(new GLatLng(36.15,-86.80182)); // (21 of 1207.0) 2005-04-30T12:09:00Z 236 00:03:56 0.75243608351667 Gooby 1.2.0
|
44
|
+
// points.push(new GLatLng(36.15041,-86.8009)); // (22 of 1207.0) 2005-04-30T12:09:28Z 264 00:04:24 0.84678118368575 Gooby 1.2.0
|
45
|
+
// points.push(new GLatLng(36.15073,-86.80036)); // (23 of 1207.0) 2005-04-30T12:09:45Z 281 00:04:41 0.906918733787836 Gooby 1.2.0
|
46
|
+
// points.push(new GLatLng(36.1509,-86.80002)); // (24 of 1207.0) 2005-04-30T12:09:56Z 292 00:04:52 0.942823262965002 Gooby 1.2.0
|
47
|
+
points.push(new GLatLng(36.15113,-86.79955)); // (25 of 1207.0) 2005-04-30T12:10:11Z 307 00:05:07 0.992165239574174 Gooby 1.2.0
|
48
|
+
points.push(new GLatLng(36.15129,-86.79931)); // (26 of 1207.0) 2005-04-30T12:10:19Z 315 00:05:15 1.02010795135251 1.0 00:05:15 Gooby 1.2.0
|
49
|
+
// points.push(new GLatLng(36.15154,-86.79882)); // (27 of 1207.0) 2005-04-30T12:10:35Z 331 00:05:31 1.07214696558638 Gooby 1.2.0
|
50
|
+
// points.push(new GLatLng(36.15176,-86.79841)); // (28 of 1207.0) 2005-04-30T12:10:48Z 344 00:05:44 1.11634392443894 Gooby 1.2.0
|
51
|
+
// points.push(new GLatLng(36.15193,-86.79809)); // (29 of 1207.0) 2005-04-30T12:10:58Z 354 00:05:54 1.15073427672922 Gooby 1.2.0
|
52
|
+
// points.push(new GLatLng(36.15212,-86.79768)); // (30 of 1207.0) 2005-04-30T12:11:11Z 367 00:06:07 1.19317585185534 Gooby 1.2.0
|
53
|
+
// points.push(new GLatLng(36.15223,-86.79742)); // (31 of 1207.0) 2005-04-30T12:11:19Z 375 00:06:15 1.21952900565806 Gooby 1.2.0
|
54
|
+
points.push(new GLatLng(36.15238,-86.79703)); // (32 of 1207.0) 2005-04-30T12:11:32Z 388 00:06:28 1.25831259517249 Gooby 1.2.0
|
55
|
+
// points.push(new GLatLng(36.15266,-86.79648)); // (33 of 1207.0) 2005-04-30T12:11:51Z 407 00:06:47 1.31668673567277 Gooby 1.2.0
|
56
|
+
// points.push(new GLatLng(36.15279,-86.79618)); // (34 of 1207.0) 2005-04-30T12:12:02Z 418 00:06:58 1.34725398868161 Gooby 1.2.0
|
57
|
+
// points.push(new GLatLng(36.15302,-86.79575)); // (35 of 1207.0) 2005-04-30T12:12:17Z 433 00:07:13 1.39356121461099 Gooby 1.2.0
|
58
|
+
// points.push(new GLatLng(36.15319,-86.79538)); // (36 of 1207.0) 2005-04-30T12:12:30Z 446 00:07:26 1.43178094450471 Gooby 1.2.0
|
59
|
+
// points.push(new GLatLng(36.15341,-86.79502)); // (37 of 1207.0) 2005-04-30T12:12:43Z 459 00:07:39 1.47231469901217 Gooby 1.2.0
|
60
|
+
points.push(new GLatLng(36.15358,-86.79465)); // (38 of 1207.0) 2005-04-30T12:12:55Z 471 00:07:51 1.51053419311481 Gooby 1.2.0
|
61
|
+
// points.push(new GLatLng(36.15375,-86.79433)); // (39 of 1207.0) 2005-04-30T12:13:06Z 482 00:08:02 1.54492402130972 Gooby 1.2.0
|
62
|
+
// points.push(new GLatLng(36.15384,-86.79407)); // (40 of 1207.0) 2005-04-30T12:13:14Z 490 00:08:10 1.57032114110655 Gooby 1.2.0
|
63
|
+
// points.push(new GLatLng(36.15395,-86.79371)); // (41 of 1207.0) 2005-04-30T12:13:25Z 501 00:08:21 1.60487827413413 Gooby 1.2.0
|
64
|
+
// points.push(new GLatLng(36.15399,-86.79358)); // (42 of 1207.0) 2005-04-30T12:13:29Z 505 00:08:25 1.61736807047961 Gooby 1.2.0
|
65
|
+
// points.push(new GLatLng(36.15403,-86.79341)); // (43 of 1207.0) 2005-04-30T12:13:34Z 510 00:08:30 1.633264929235 Gooby 1.2.0
|
66
|
+
points.push(new GLatLng(36.15414,-86.79309)); // (44 of 1207.0) 2005-04-30T12:13:44Z 520 00:08:40 1.66448920363705 Gooby 1.2.0
|
67
|
+
// points.push(new GLatLng(36.15429,-86.79268)); // (45 of 1207.0) 2005-04-30T12:13:57Z 533 00:08:53 1.7049003804903 Gooby 1.2.0
|
68
|
+
// points.push(new GLatLng(36.15442,-86.79238)); // (46 of 1207.0) 2005-04-30T12:14:07Z 543 00:09:03 1.73546719126565 Gooby 1.2.0
|
69
|
+
// points.push(new GLatLng(36.15459,-86.79199)); // (47 of 1207.0) 2005-04-30T12:14:19Z 555 00:09:15 1.77525687218547 Gooby 1.2.0
|
70
|
+
// points.push(new GLatLng(36.15476,-86.79163)); // (48 of 1207.0) 2005-04-30T12:14:31Z 567 00:09:27 1.8126983514171 Gooby 1.2.0
|
71
|
+
// points.push(new GLatLng(36.15491,-86.79128)); // (49 of 1207.0) 2005-04-30T12:14:42Z 578 00:09:38 1.8482724314945 Gooby 1.2.0
|
72
|
+
points.push(new GLatLng(36.15513,-86.79085)); // (50 of 1207.0) 2005-04-30T12:14:56Z 592 00:09:52 1.89397425824103 Gooby 1.2.0
|
73
|
+
// points.push(new GLatLng(36.1553,-86.79043)); // (51 of 1207.0) 2005-04-30T12:15:09Z 605 00:10:05 1.93615310461003 Gooby 1.2.0
|
74
|
+
// points.push(new GLatLng(36.15545,-86.79004)); // (52 of 1207.0) 2005-04-30T12:15:21Z 617 00:10:17 1.97493529992567 Gooby 1.2.0
|
75
|
+
points.push(new GLatLng(36.15558,-86.78974)); // (53 of 1207.0) 2005-04-30T12:15:30Z 626 00:10:26 2.00550196328843 2.0 00:05:11 Gooby 1.2.0
|
76
|
+
// points.push(new GLatLng(36.15573,-86.78937)); // (54 of 1207.0) 2005-04-30T12:15:41Z 637 00:10:37 2.04267119346036 Gooby 1.2.0
|
77
|
+
// points.push(new GLatLng(36.15588,-86.78903)); // (55 of 1207.0) 2005-04-30T12:15:52Z 648 00:10:48 2.0774544660343 Gooby 1.2.0
|
78
|
+
// points.push(new GLatLng(36.15603,-86.78862)); // (56 of 1207.0) 2005-04-30T12:16:04Z 660 00:11:00 2.11786486236693 Gooby 1.2.0
|
79
|
+
// points.push(new GLatLng(36.15616,-86.7883)); // (57 of 1207.0) 2005-04-30T12:16:14Z 670 00:11:10 2.15002453013561 Gooby 1.2.0
|
80
|
+
// points.push(new GLatLng(36.15628,-86.788)); // (58 of 1207.0) 2005-04-30T12:16:24Z 680 00:11:20 2.18008116457351 Gooby 1.2.0
|
81
|
+
points.push(new GLatLng(36.15644,-86.78768)); // (59 of 1207.0) 2005-04-30T12:16:35Z 691 00:11:31 2.21387170443873 Gooby 1.2.0
|
82
|
+
// points.push(new GLatLng(36.1565,-86.78755)); // (60 of 1207.0) 2005-04-30T12:16:40Z 696 00:11:36 2.22731471376522 Gooby 1.2.0
|
83
|
+
// points.push(new GLatLng(36.15633,-86.7871)); // (61 of 1207.0) 2005-04-30T12:16:56Z 712 00:11:52 2.27191700602876 Gooby 1.2.0
|
84
|
+
// points.push(new GLatLng(36.15577,-86.78695)); // (62 of 1207.0) 2005-04-30T12:17:13Z 729 00:12:09 2.33562267038815 Gooby 1.2.0
|
85
|
+
// points.push(new GLatLng(36.15547,-86.78674)); // (63 of 1207.0) 2005-04-30T12:17:26Z 742 00:12:22 2.37393871717295 Gooby 1.2.0
|
86
|
+
// points.push(new GLatLng(36.15517,-86.78658)); // (64 of 1207.0) 2005-04-30T12:17:38Z 754 00:12:34 2.4102568872394 Gooby 1.2.0
|
87
|
+
points.push(new GLatLng(36.15498,-86.78643)); // (65 of 1207.0) 2005-04-30T12:17:46Z 762 00:12:42 2.43530996855082 Gooby 1.2.0
|
88
|
+
// points.push(new GLatLng(36.15483,-86.78633)); // (66 of 1207.0) 2005-04-30T12:17:52Z 768 00:12:48 2.45425120677966 Gooby 1.2.0
|
89
|
+
// points.push(new GLatLng(36.15465,-86.78639)); // (67 of 1207.0) 2005-04-30T12:17:57Z 773 00:12:53 2.47497743559301 Gooby 1.2.0
|
90
|
+
// points.push(new GLatLng(36.15461,-86.78643)); // (68 of 1207.0) 2005-04-30T12:17:59Z 775 00:12:55 2.48069381074699 Gooby 1.2.0
|
91
|
+
// points.push(new GLatLng(36.15433,-86.78689)); // (69 of 1207.0) 2005-04-30T12:18:14Z 790 00:13:10 2.5324121563881 Gooby 1.2.0
|
92
|
+
// points.push(new GLatLng(36.15414,-86.78731)); // (70 of 1207.0) 2005-04-30T12:18:28Z 804 00:13:24 2.57563390012131 Gooby 1.2.0
|
93
|
+
points.push(new GLatLng(36.15395,-86.78774)); // (71 of 1207.0) 2005-04-30T12:18:42Z 818 00:13:38 2.61964102643515 Gooby 1.2.0
|
94
|
+
// points.push(new GLatLng(36.15375,-86.78815)); // (72 of 1207.0) 2005-04-30T12:18:55Z 831 00:13:51 2.66264611426848 Gooby 1.2.0
|
95
|
+
// points.push(new GLatLng(36.15354,-86.78856)); // (73 of 1207.0) 2005-04-30T12:19:09Z 845 00:14:05 2.7062365857022 Gooby 1.2.0
|
96
|
+
// points.push(new GLatLng(36.15332,-86.78899)); // (74 of 1207.0) 2005-04-30T12:19:23Z 859 00:14:19 2.75193900400836 Gooby 1.2.0
|
97
|
+
// points.push(new GLatLng(36.15328,-86.78922)); // (75 of 1207.0) 2005-04-30T12:19:33Z 869 00:14:29 2.77306146487473 Gooby 1.2.0
|
98
|
+
// points.push(new GLatLng(36.15322,-86.7894)); // (76 of 1207.0) 2005-04-30T12:19:40Z 876 00:14:36 2.79054444801409 Gooby 1.2.0
|
99
|
+
points.push(new GLatLng(36.15307,-86.7897)); // (77 of 1207.0) 2005-04-30T12:19:54Z 890 00:14:50 2.82222401478672 Gooby 1.2.0
|
100
|
+
// points.push(new GLatLng(36.15296,-86.79002)); // (78 of 1207.0) 2005-04-30T12:20:05Z 901 00:15:01 2.85344857780401 Gooby 1.2.0
|
101
|
+
// points.push(new GLatLng(36.15281,-86.79038)); // (79 of 1207.0) 2005-04-30T12:20:17Z 913 00:15:13 2.8898188190912 Gooby 1.2.0
|
102
|
+
// points.push(new GLatLng(36.15264,-86.79075)); // (80 of 1207.0) 2005-04-30T12:20:30Z 926 00:15:26 2.92803866687991 Gooby 1.2.0
|
103
|
+
// points.push(new GLatLng(36.15242,-86.79116)); // (81 of 1207.0) 2005-04-30T12:20:45Z 941 00:15:41 2.9722351159748 Gooby 1.2.0
|
104
|
+
points.push(new GLatLng(36.15225,-86.79154)); // (82 of 1207.0) 2005-04-30T12:21:00Z 956 00:15:56 3.01123801632288 3.0 00:05:30 Gooby 1.2.0
|
105
|
+
// points.push(new GLatLng(36.15225,-86.79184)); // (83 of 1207.0) 2005-04-30T12:21:09Z 965 00:16:05 3.03817192406535 Gooby 1.2.0
|
106
|
+
// points.push(new GLatLng(36.15219,-86.79216)); // (84 of 1207.0) 2005-04-30T12:21:19Z 975 00:16:15 3.06766591055786 Gooby 1.2.0
|
107
|
+
// points.push(new GLatLng(36.1521,-86.7927)); // (85 of 1207.0) 2005-04-30T12:21:35Z 991 00:16:31 3.11716926013015 Gooby 1.2.0
|
108
|
+
// points.push(new GLatLng(36.15193,-86.79313)); // (86 of 1207.0) 2005-04-30T12:21:49Z 1005 00:16:45 3.16015412134589 Gooby 1.2.0
|
109
|
+
// points.push(new GLatLng(36.15165,-86.7933)); // (87 of 1207.0) 2005-04-30T12:22:01Z 1017 00:16:57 3.19482710771701 Gooby 1.2.0
|
110
|
+
points.push(new GLatLng(36.15116,-86.79341)); // (88 of 1207.0) 2005-04-30T12:22:18Z 1034 00:17:14 3.25019785190449 Gooby 1.2.0
|
111
|
+
// points.push(new GLatLng(36.15058,-86.79315)); // (89 of 1207.0) 2005-04-30T12:22:30Z 1046 00:17:26 3.31878252901205 Gooby 1.2.0
|
112
|
+
// points.push(new GLatLng(36.15021,-86.79322)); // (90 of 1207.0) 2005-04-30T12:22:43Z 1059 00:17:39 3.36039999238281 Gooby 1.2.0
|
113
|
+
// points.push(new GLatLng(36.1498,-86.79326)); // (91 of 1207.0) 2005-04-30T12:22:57Z 1073 00:17:53 3.40612902295207 Gooby 1.2.0
|
114
|
+
// points.push(new GLatLng(36.1494,-86.79334)); // (92 of 1207.0) 2005-04-30T12:23:11Z 1087 00:18:07 3.45118113139642 Gooby 1.2.0
|
115
|
+
// points.push(new GLatLng(36.1489,-86.79343)); // (93 of 1207.0) 2005-04-30T12:23:28Z 1104 00:18:24 3.50736007580864 Gooby 1.2.0
|
116
|
+
points.push(new GLatLng(36.14852,-86.79349)); // (94 of 1207.0) 2005-04-30T12:23:41Z 1117 00:18:37 3.54995404639469 Gooby 1.2.0
|
117
|
+
// points.push(new GLatLng(36.14811,-86.79356)); // (95 of 1207.0) 2005-04-30T12:23:55Z 1131 00:18:51 3.59597293585624 Gooby 1.2.0
|
118
|
+
// points.push(new GLatLng(36.14796,-86.79362)); // (96 of 1207.0) 2005-04-30T12:24:01Z 1137 00:18:57 3.61349993573378 Gooby 1.2.0
|
119
|
+
// points.push(new GLatLng(36.14774,-86.79345)); // (97 of 1207.0) 2005-04-30T12:24:08Z 1144 00:19:04 3.64233310385896 Gooby 1.2.0
|
120
|
+
// points.push(new GLatLng(36.14759,-86.79352)); // (98 of 1207.0) 2005-04-30T12:24:13Z 1149 00:19:09 3.6601563327183 Gooby 1.2.0
|
121
|
+
// points.push(new GLatLng(36.14723,-86.79367)); // (99 of 1207.0) 2005-04-30T12:24:26Z 1162 00:19:22 3.70238952001707 Gooby 1.2.0
|
122
|
+
points.push(new GLatLng(36.14684,-86.79377)); // (100 of 1207.0) 2005-04-30T12:24:40Z 1176 00:19:36 3.74667335763767 Gooby 1.2.0
|
123
|
+
// points.push(new GLatLng(36.14646,-86.79384)); // (101 of 1207.0) 2005-04-30T12:24:54Z 1190 00:19:50 3.78939028772679 Gooby 1.2.0
|
124
|
+
// points.push(new GLatLng(36.14586,-86.79392)); // (102 of 1207.0) 2005-04-30T12:25:15Z 1211 00:20:11 3.85648959520182 Gooby 1.2.0
|
125
|
+
// points.push(new GLatLng(36.14541,-86.79407)); // (103 of 1207.0) 2005-04-30T12:25:32Z 1228 00:20:28 3.90830577595709 Gooby 1.2.0
|
126
|
+
// points.push(new GLatLng(36.14513,-86.79412)); // (104 of 1207.0) 2005-04-30T12:25:43Z 1239 00:20:39 3.93976095570159 Gooby 1.2.0
|
127
|
+
// points.push(new GLatLng(36.14489,-86.79418)); // (105 of 1207.0) 2005-04-30T12:25:52Z 1248 00:20:48 3.96698506342841 Gooby 1.2.0
|
128
|
+
points.push(new GLatLng(36.14433,-86.79431)); // (106 of 1207.0) 2005-04-30T12:26:13Z 1269 00:21:09 4.03033580459287 4.0 00:05:13 Gooby 1.2.0
|
129
|
+
// points.push(new GLatLng(36.14393,-86.7944)); // (107 of 1207.0) 2005-04-30T12:26:29Z 1285 00:21:25 4.07553978107061 Gooby 1.2.0
|
130
|
+
// points.push(new GLatLng(36.14365,-86.79444)); // (108 of 1207.0) 2005-04-30T12:26:39Z 1295 00:21:35 4.1068792894716 Gooby 1.2.0
|
131
|
+
// points.push(new GLatLng(36.1432,-86.79444)); // (109 of 1207.0) 2005-04-30T12:26:55Z 1311 00:21:51 4.15691453904666 Gooby 1.2.0
|
132
|
+
// points.push(new GLatLng(36.14272,-86.79452)); // (110 of 1207.0) 2005-04-30T12:27:12Z 1328 00:22:08 4.21076671012988 Gooby 1.2.0
|
133
|
+
// points.push(new GLatLng(36.14225,-86.79465)); // (111 of 1207.0) 2005-04-30T12:27:29Z 1345 00:22:25 4.26431353292553 Gooby 1.2.0
|
134
|
+
points.push(new GLatLng(36.14174,-86.79474)); // (112 of 1207.0) 2005-04-30T12:27:48Z 1364 00:22:44 4.32159303973402 Gooby 1.2.0
|
135
|
+
// points.push(new GLatLng(36.14135,-86.79487)); // (113 of 1207.0) 2005-04-30T12:28:03Z 1379 00:22:59 4.36650059349687 Gooby 1.2.0
|
136
|
+
// points.push(new GLatLng(36.14094,-86.795)); // (114 of 1207.0) 2005-04-30T12:28:19Z 1395 00:23:15 4.41355895449879 Gooby 1.2.0
|
137
|
+
// points.push(new GLatLng(36.14053,-86.79508)); // (115 of 1207.0) 2005-04-30T12:28:37Z 1413 00:23:33 4.45970915594182 Gooby 1.2.0
|
138
|
+
// points.push(new GLatLng(36.14006,-86.79513)); // (116 of 1207.0) 2005-04-30T12:29:01Z 1437 00:23:57 4.51216076852166 Gooby 1.2.0
|
139
|
+
// points.push(new GLatLng(36.13961,-86.79519)); // (117 of 1207.0) 2005-04-30T12:29:19Z 1455 00:24:15 4.56248524912783 Gooby 1.2.0
|
140
|
+
points.push(new GLatLng(36.1392,-86.79528)); // (118 of 1207.0) 2005-04-30T12:29:34Z 1470 00:24:30 4.60878371678445 Gooby 1.2.0
|
141
|
+
// points.push(new GLatLng(36.13858,-86.79536)); // (119 of 1207.0) 2005-04-30T12:29:56Z 1492 00:24:52 4.67809446282264 Gooby 1.2.0
|
142
|
+
// points.push(new GLatLng(36.13777,-86.79553)); // (120 of 1207.0) 2005-04-30T12:30:25Z 1521 00:25:21 4.76944259107983 Gooby 1.2.0
|
143
|
+
// points.push(new GLatLng(36.13714,-86.79568)); // (121 of 1207.0) 2005-04-30T12:30:48Z 1544 00:25:44 4.84077525008844 Gooby 1.2.0
|
144
|
+
// points.push(new GLatLng(36.13693,-86.79575)); // (122 of 1207.0) 2005-04-30T12:30:56Z 1552 00:25:52 4.86495632657971 Gooby 1.2.0
|
145
|
+
// points.push(new GLatLng(36.13678,-86.79579)); // (123 of 1207.0) 2005-04-30T12:31:02Z 1558 00:25:58 4.88201720394586 Gooby 1.2.0
|
146
|
+
points.push(new GLatLng(36.13639,-86.79605)); // (124 of 1207.0) 2005-04-30T12:31:19Z 1575 00:26:15 4.93126695222446 Gooby 1.2.0
|
147
|
+
// points.push(new GLatLng(36.13609,-86.79639)); // (125 of 1207.0) 2005-04-30T12:31:33Z 1589 00:26:29 4.97648707394106 Gooby 1.2.0
|
148
|
+
points.push(new GLatLng(36.13581,-86.79682)); // (126 of 1207.0) 2005-04-30T12:31:48Z 1604 00:26:44 5.02608835794093 5.0 00:05:35 Gooby 1.2.0
|
149
|
+
// points.push(new GLatLng(36.13554,-86.79727)); // (127 of 1207.0) 2005-04-30T12:32:04Z 1620 00:27:00 5.07642940023593 Gooby 1.2.0
|
150
|
+
// points.push(new GLatLng(36.13549,-86.79731)); // (128 of 1207.0) 2005-04-30T12:32:06Z 1622 00:27:02 5.08304805355437 Gooby 1.2.0
|
151
|
+
// points.push(new GLatLng(36.13519,-86.79714)); // (129 of 1207.0) 2005-04-30T12:32:17Z 1633 00:27:13 5.11973211796129 Gooby 1.2.0
|
152
|
+
// points.push(new GLatLng(36.13476,-86.79706)); // (130 of 1207.0) 2005-04-30T12:32:32Z 1648 00:27:28 5.16808029336197 Gooby 1.2.0
|
153
|
+
// points.push(new GLatLng(36.13423,-86.79708)); // (131 of 1207.0) 2005-04-30T12:32:50Z 1666 00:27:46 5.22703816213724 Gooby 1.2.0
|
154
|
+
points.push(new GLatLng(36.1336,-86.79714)); // (132 of 1207.0) 2005-04-30T12:33:11Z 1687 00:28:07 5.29729447113566 Gooby 1.2.0
|
155
|
+
// points.push(new GLatLng(36.13305,-86.79723)); // (133 of 1207.0) 2005-04-30T12:33:30Z 1706 00:28:26 5.35898045692305 Gooby 1.2.0
|
156
|
+
// points.push(new GLatLng(36.13277,-86.79714)); // (134 of 1207.0) 2005-04-30T12:33:42Z 1718 00:28:38 5.39114558855488 Gooby 1.2.0
|
157
|
+
// points.push(new GLatLng(36.13275,-86.79712)); // (135 of 1207.0) 2005-04-30T12:33:43Z 1719 00:28:39 5.39400298777505 Gooby 1.2.0
|
158
|
+
// points.push(new GLatLng(36.13277,-86.79686)); // (136 of 1207.0) 2005-04-30T12:33:50Z 1726 00:28:46 5.41745721888923 Gooby 1.2.0
|
159
|
+
// points.push(new GLatLng(36.13277,-86.79652)); // (137 of 1207.0) 2005-04-30T12:33:59Z 1735 00:28:55 5.44799040117727 Gooby 1.2.0
|
160
|
+
points.push(new GLatLng(36.13275,-86.79613)); // (138 of 1207.0) 2005-04-30T12:34:10Z 1746 00:29:06 5.48308396962877 Gooby 1.2.0
|
161
|
+
// points.push(new GLatLng(36.13275,-86.79577)); // (139 of 1207.0) 2005-04-30T12:34:21Z 1757 00:29:17 5.51541286651057 Gooby 1.2.0
|
162
|
+
// points.push(new GLatLng(36.13272,-86.79573)); // (140 of 1207.0) 2005-04-30T12:34:23Z 1759 00:29:19 5.52031445554303 Gooby 1.2.0
|
163
|
+
// points.push(new GLatLng(36.13255,-86.7956)); // (141 of 1207.0) 2005-04-30T12:34:30Z 1766 00:29:26 5.54253108611756 Gooby 1.2.0
|
164
|
+
// points.push(new GLatLng(36.13225,-86.79551)); // (142 of 1207.0) 2005-04-30T12:34:41Z 1777 00:29:37 5.57685297633778 Gooby 1.2.0
|
165
|
+
// points.push(new GLatLng(36.13169,-86.79551)); // (143 of 1207.0) 2005-04-30T12:35:00Z 1796 00:29:56 5.63911906937937 Gooby 1.2.0
|
166
|
+
points.push(new GLatLng(36.13131,-86.79555)); // (144 of 1207.0) 2005-04-30T12:35:15Z 1811 00:30:11 5.68152368207201 Gooby 1.2.0
|
167
|
+
// points.push(new GLatLng(36.13051,-86.79562)); // (145 of 1207.0) 2005-04-30T12:35:44Z 1840 00:30:40 5.77069724670174 Gooby 1.2.0
|
168
|
+
// points.push(new GLatLng(36.12983,-86.79566)); // (146 of 1207.0) 2005-04-30T12:36:08Z 1864 00:31:04 5.84639145393247 Gooby 1.2.0
|
169
|
+
// points.push(new GLatLng(36.12929,-86.79564)); // (147 of 1207.0) 2005-04-30T12:36:27Z 1883 00:31:23 5.90646063181028 Gooby 1.2.0
|
170
|
+
// points.push(new GLatLng(36.12871,-86.79538)); // (148 of 1207.0) 2005-04-30T12:36:49Z 1905 00:31:45 5.97504760833261 Gooby 1.2.0
|
171
|
+
points.push(new GLatLng(36.12848,-86.79515)); // (149 of 1207.0) 2005-04-30T12:37:01Z 1917 00:31:57 6.00792106627951 6.0 00:05:13 Gooby 1.2.0
|
172
|
+
// points.push(new GLatLng(36.1283,-86.79497)); // (150 of 1207.0) 2005-04-30T12:37:10Z 1926 00:32:06 6.03364799484384 Gooby 1.2.0
|
173
|
+
// points.push(new GLatLng(36.12794,-86.79463)); // (151 of 1207.0) 2005-04-30T12:37:26Z 1942 00:32:22 6.08399297533312 Gooby 1.2.0
|
174
|
+
// points.push(new GLatLng(36.12757,-86.7944)); // (152 of 1207.0) 2005-04-30T12:37:42Z 1958 00:32:38 6.13002743058576 Gooby 1.2.0
|
175
|
+
// points.push(new GLatLng(36.12715,-86.79416)); // (153 of 1207.0) 2005-04-30T12:37:59Z 1975 00:32:55 6.18146114219009 Gooby 1.2.0
|
176
|
+
// points.push(new GLatLng(36.12654,-86.79397)); // (154 of 1207.0) 2005-04-30T12:38:22Z 1998 00:33:18 6.25140029086769 Gooby 1.2.0
|
177
|
+
points.push(new GLatLng(36.1259,-86.79394)); // (155 of 1207.0) 2005-04-30T12:38:45Z 2021 00:33:41 6.32261251368918 Gooby 1.2.0
|
178
|
+
// points.push(new GLatLng(36.12528,-86.79405)); // (156 of 1207.0) 2005-04-30T12:39:06Z 2042 00:34:02 6.39225428252165 Gooby 1.2.0
|
179
|
+
// points.push(new GLatLng(36.12476,-86.7942)); // (157 of 1207.0) 2005-04-30T12:39:24Z 2060 00:34:20 6.45162144464046 Gooby 1.2.0
|
180
|
+
// points.push(new GLatLng(36.12448,-86.79427)); // (158 of 1207.0) 2005-04-30T12:39:34Z 2070 00:34:30 6.48338297458881 Gooby 1.2.0
|
181
|
+
// points.push(new GLatLng(36.12421,-86.79435)); // (159 of 1207.0) 2005-04-30T12:39:44Z 2080 00:34:40 6.51425196094722 Gooby 1.2.0
|
182
|
+
// points.push(new GLatLng(36.12365,-86.7945)); // (160 of 1207.0) 2005-04-30T12:40:04Z 2100 00:35:00 6.57795875698162 Gooby 1.2.0
|
183
|
+
points.push(new GLatLng(36.12285,-86.79467)); // (161 of 1207.0) 2005-04-30T12:40:34Z 2130 00:35:30 6.66821127524588 Gooby 1.2.0
|
184
|
+
// points.push(new GLatLng(36.12236,-86.79478)); // (162 of 1207.0) 2005-04-30T12:40:51Z 2147 00:35:47 6.72358267044795 Gooby 1.2.0
|
185
|
+
// points.push(new GLatLng(36.12144,-86.79497)); // (163 of 1207.0) 2005-04-30T12:41:23Z 2179 00:36:19 6.82729070278942 Gooby 1.2.0
|
186
|
+
// points.push(new GLatLng(36.12088,-86.79513)); // (164 of 1207.0) 2005-04-30T12:41:43Z 2199 00:36:39 6.89119368208222 Gooby 1.2.0
|
187
|
+
// points.push(new GLatLng(36.12028,-86.79532)); // (165 of 1207.0) 2005-04-30T12:42:05Z 2221 00:37:01 6.96005544204384 Gooby 1.2.0
|
188
|
+
points.push(new GLatLng(36.11974,-86.79553)); // (166 of 1207.0) 2005-04-30T12:42:24Z 2240 00:37:20 7.02299072191637 7.0 00:05:23 Gooby 1.2.0
|
189
|
+
// points.push(new GLatLng(36.11927,-86.79583)); // (167 of 1207.0) 2005-04-30T12:42:43Z 2259 00:37:39 7.08178741695867 Gooby 1.2.0
|
190
|
+
// points.push(new GLatLng(36.11878,-86.79618)); // (168 of 1207.0) 2005-04-30T12:43:02Z 2278 00:37:58 7.14468918092303 Gooby 1.2.0
|
191
|
+
// points.push(new GLatLng(36.11815,-86.79669)); // (169 of 1207.0) 2005-04-30T12:43:28Z 2304 00:38:24 7.2283866510504 Gooby 1.2.0
|
192
|
+
// points.push(new GLatLng(36.11783,-86.79701)); // (170 of 1207.0) 2005-04-30T12:43:43Z 2319 00:38:39 7.27412602665155 Gooby 1.2.0
|
193
|
+
// points.push(new GLatLng(36.11749,-86.79734)); // (171 of 1207.0) 2005-04-30T12:43:58Z 2334 00:38:54 7.32216491595947 Gooby 1.2.0
|
194
|
+
points.push(new GLatLng(36.11719,-86.79759)); // (172 of 1207.0) 2005-04-30T12:44:11Z 2347 00:39:07 7.3623756729666 Gooby 1.2.0
|
195
|
+
// points.push(new GLatLng(36.11685,-86.79789)); // (173 of 1207.0) 2005-04-30T12:44:26Z 2362 00:39:22 7.40880068268895 Gooby 1.2.0
|
196
|
+
// points.push(new GLatLng(36.11646,-86.79821)); // (174 of 1207.0) 2005-04-30T12:44:42Z 2378 00:39:38 7.46082540804372 Gooby 1.2.0
|
197
|
+
// points.push(new GLatLng(36.11607,-86.79854)); // (175 of 1207.0) 2005-04-30T12:44:58Z 2394 00:39:54 7.51335170589688 Gooby 1.2.0
|
198
|
+
// points.push(new GLatLng(36.11567,-86.79886)); // (176 of 1207.0) 2005-04-30T12:45:15Z 2411 00:40:11 7.56630688903359 Gooby 1.2.0
|
199
|
+
// points.push(new GLatLng(36.11526,-86.79918)); // (177 of 1207.0) 2005-04-30T12:45:32Z 2428 00:40:28 7.62019937495689 Gooby 1.2.0
|
200
|
+
points.push(new GLatLng(36.11491,-86.79942)); // (178 of 1207.0) 2005-04-30T12:45:47Z 2443 00:40:43 7.66468756569982 Gooby 1.2.0
|
201
|
+
// points.push(new GLatLng(36.11453,-86.79965)); // (179 of 1207.0) 2005-04-30T12:46:03Z 2459 00:40:59 7.7117199708113 Gooby 1.2.0
|
202
|
+
// points.push(new GLatLng(36.11444,-86.79963)); // (180 of 1207.0) 2005-04-30T12:46:07Z 2463 00:41:03 7.72188687034438 Gooby 1.2.0
|
203
|
+
// points.push(new GLatLng(36.11442,-86.79944)); // (181 of 1207.0) 2005-04-30T12:46:12Z 2468 00:41:08 7.73909763114558 Gooby 1.2.0
|
204
|
+
// points.push(new GLatLng(36.11438,-86.79907)); // (182 of 1207.0) 2005-04-30T12:46:21Z 2477 00:41:17 7.77262861114377 Gooby 1.2.0
|
205
|
+
// points.push(new GLatLng(36.11429,-86.7986)); // (183 of 1207.0) 2005-04-30T12:46:33Z 2489 00:41:29 7.81601538234527 Gooby 1.2.0
|
206
|
+
points.push(new GLatLng(36.11429,-86.79847)); // (184 of 1207.0) 2005-04-30T12:46:37Z 2493 00:41:33 7.82769224809337 Gooby 1.2.0
|
207
|
+
// points.push(new GLatLng(36.11427,-86.79839)); // (185 of 1207.0) 2005-04-30T12:46:39Z 2495 00:41:35 7.8352139735692 Gooby 1.2.0
|
208
|
+
// points.push(new GLatLng(36.11416,-86.798)); // (186 of 1207.0) 2005-04-30T12:46:50Z 2506 00:41:46 7.87231901913322 Gooby 1.2.0
|
209
|
+
// points.push(new GLatLng(36.11412,-86.79768)); // (187 of 1207.0) 2005-04-30T12:46:59Z 2515 00:41:55 7.90140502659365 Gooby 1.2.0
|
210
|
+
// points.push(new GLatLng(36.11408,-86.79714)); // (188 of 1207.0) 2005-04-30T12:47:14Z 2530 00:42:10 7.95011355797773 Gooby 1.2.0
|
211
|
+
// points.push(new GLatLng(36.11393,-86.79669)); // (189 of 1207.0) 2005-04-30T12:47:27Z 2543 00:42:23 7.99384026415792 Gooby 1.2.0
|
212
|
+
points.push(new GLatLng(36.11386,-86.7962)); // (190 of 1207.0) 2005-04-30T12:47:41Z 2557 00:42:37 8.03853691446787 8.0 00:05:17 Gooby 1.2.0
|
213
|
+
// points.push(new GLatLng(36.11384,-86.79568)); // (191 of 1207.0) 2005-04-30T12:47:56Z 2572 00:42:52 8.08529837008693 Gooby 1.2.0
|
214
|
+
// points.push(new GLatLng(36.11386,-86.79558)); // (192 of 1207.0) 2005-04-30T12:47:59Z 2575 00:42:55 8.09455156013486 Gooby 1.2.0
|
215
|
+
// points.push(new GLatLng(36.11391,-86.79517)); // (193 of 1207.0) 2005-04-30T12:48:11Z 2587 00:43:07 8.13179660122315 Gooby 1.2.0
|
216
|
+
// points.push(new GLatLng(36.11403,-86.79472)); // (194 of 1207.0) 2005-04-30T12:48:25Z 2601 00:43:21 8.17436274052915 Gooby 1.2.0
|
217
|
+
// points.push(new GLatLng(36.11418,-86.79429)); // (195 of 1207.0) 2005-04-30T12:48:38Z 2614 00:43:34 8.21643430101705 Gooby 1.2.0
|
218
|
+
points.push(new GLatLng(36.11421,-86.79388)); // (196 of 1207.0) 2005-04-30T12:48:49Z 2625 00:43:45 8.25341271468121 Gooby 1.2.0
|
219
|
+
// points.push(new GLatLng(36.11412,-86.79324)); // (197 of 1207.0) 2005-04-30T12:49:07Z 2643 00:44:03 8.31176454289889 Gooby 1.2.0
|
220
|
+
// points.push(new GLatLng(36.11408,-86.79272)); // (198 of 1207.0) 2005-04-30T12:49:21Z 2657 00:44:17 8.35868433857387 Gooby 1.2.0
|
221
|
+
// points.push(new GLatLng(36.11406,-86.79223)); // (199 of 1207.0) 2005-04-30T12:49:35Z 2671 00:44:31 8.40275428795408 Gooby 1.2.0
|
222
|
+
// points.push(new GLatLng(36.11399,-86.79186)); // (200 of 1207.0) 2005-04-30T12:49:46Z 2682 00:44:42 8.43688845352631 Gooby 1.2.0
|
223
|
+
// points.push(new GLatLng(36.11395,-86.79148)); // (201 of 1207.0) 2005-04-30T12:49:57Z 2693 00:44:53 8.47131023693615 Gooby 1.2.0
|
224
|
+
points.push(new GLatLng(36.11391,-86.79096)); // (202 of 1207.0) 2005-04-30T12:50:12Z 2708 00:45:08 8.51823003261113 Gooby 1.2.0
|
225
|
+
// points.push(new GLatLng(36.11386,-86.7904)); // (203 of 1207.0) 2005-04-30T12:50:28Z 2724 00:45:24 8.56883781786233 Gooby 1.2.0
|
226
|
+
// points.push(new GLatLng(36.11382,-86.78989)); // (204 of 1207.0) 2005-04-30T12:50:43Z 2739 00:45:39 8.61486346293638 Gooby 1.2.0
|
227
|
+
// points.push(new GLatLng(36.11378,-86.78937)); // (205 of 1207.0) 2005-04-30T12:50:59Z 2755 00:45:55 8.66178345068008 Gooby 1.2.0
|
228
|
+
// points.push(new GLatLng(36.11369,-86.78864)); // (206 of 1207.0) 2005-04-30T12:51:21Z 2777 00:46:17 8.72811442633106 Gooby 1.2.0
|
229
|
+
// points.push(new GLatLng(36.11367,-86.78809)); // (207 of 1207.0) 2005-04-30T12:51:36Z 2792 00:46:32 8.77756796149717 Gooby 1.2.0
|
230
|
+
points.push(new GLatLng(36.11361,-86.78755)); // (208 of 1207.0) 2005-04-30T12:51:52Z 2808 00:46:48 8.82652986048123 Gooby 1.2.0
|
231
|
+
// points.push(new GLatLng(36.11352,-86.78689)); // (209 of 1207.0) 2005-04-30T12:52:11Z 2827 00:47:07 8.88665279805732 Gooby 1.2.0
|
232
|
+
// points.push(new GLatLng(36.11352,-86.78678)); // (210 of 1207.0) 2005-04-30T12:52:14Z 2830 00:47:10 8.89653380577843 Gooby 1.2.0
|
233
|
+
// points.push(new GLatLng(36.11369,-86.78671)); // (211 of 1207.0) 2005-04-30T12:52:19Z 2835 00:47:15 8.91645433592131 Gooby 1.2.0
|
234
|
+
// points.push(new GLatLng(36.11376,-86.78671)); // (212 of 1207.0) 2005-04-30T12:52:21Z 2837 00:47:17 8.92423749804817 Gooby 1.2.0
|
235
|
+
// points.push(new GLatLng(36.11421,-86.78671)); // (213 of 1207.0) 2005-04-30T12:52:34Z 2850 00:47:30 8.97427274762323 Gooby 1.2.0
|
236
|
+
points.push(new GLatLng(36.11479,-86.78678)); // (214 of 1207.0) 2005-04-30T12:52:52Z 2868 00:47:48 9.03906851730323 9.0 00:05:11 Gooby 1.2.0
|
237
|
+
// points.push(new GLatLng(36.11483,-86.78682)); // (215 of 1207.0) 2005-04-30T12:52:54Z 2870 00:47:50 9.04478568065097 Gooby 1.2.0
|
238
|
+
// points.push(new GLatLng(36.11485,-86.78706)); // (216 of 1207.0) 2005-04-30T12:53:01Z 2877 00:47:57 9.06645776557264 Gooby 1.2.0
|
239
|
+
// points.push(new GLatLng(36.11489,-86.78755)); // (217 of 1207.0) 2005-04-30T12:53:15Z 2891 00:48:11 9.11069528229283 Gooby 1.2.0
|
240
|
+
// points.push(new GLatLng(36.11494,-86.78807)); // (218 of 1207.0) 2005-04-30T12:53:30Z 2906 00:48:26 9.15773286056941 Gooby 1.2.0
|
241
|
+
// points.push(new GLatLng(36.11498,-86.78862)); // (219 of 1207.0) 2005-04-30T12:53:46Z 2922 00:48:42 9.20733523467145 Gooby 1.2.0
|
242
|
+
points.push(new GLatLng(36.11506,-86.78927)); // (220 of 1207.0) 2005-04-30T12:54:04Z 2940 00:49:00 9.26639389977724 Gooby 1.2.0
|
243
|
+
// points.push(new GLatLng(36.11509,-86.78993)); // (221 of 1207.0) 2005-04-30T12:54:22Z 2958 00:49:18 9.32577077620251 Gooby 1.2.0
|
244
|
+
// points.push(new GLatLng(36.11511,-86.79045)); // (222 of 1207.0) 2005-04-30T12:54:37Z 2973 00:49:33 9.37253146093727 Gooby 1.2.0
|
245
|
+
// points.push(new GLatLng(36.11513,-86.79077)); // (223 of 1207.0) 2005-04-30T12:54:47Z 2983 00:49:43 9.40136072190673 Gooby 1.2.0
|
246
|
+
// points.push(new GLatLng(36.11519,-86.79116)); // (224 of 1207.0) 2005-04-30T12:54:59Z 2995 00:49:55 9.43702120791762 Gooby 1.2.0
|
247
|
+
// points.push(new GLatLng(36.11521,-86.79128)); // (225 of 1207.0) 2005-04-30T12:55:07Z 3003 00:50:03 9.44802662376672 Gooby 1.2.0
|
248
|
+
points.push(new GLatLng(36.11521,-86.79146)); // (226 of 1207.0) 2005-04-30T12:55:14Z 3010 00:50:10 9.46419469561728 Gooby 1.2.0
|
249
|
+
// points.push(new GLatLng(36.11524,-86.79186)); // (227 of 1207.0) 2005-04-30T12:55:26Z 3022 00:50:22 9.50027836454976 Gooby 1.2.0
|
250
|
+
// points.push(new GLatLng(36.11524,-86.79234)); // (228 of 1207.0) 2005-04-30T12:55:39Z 3035 00:50:35 9.543393222818 Gooby 1.2.0
|
251
|
+
// points.push(new GLatLng(36.11519,-86.7927)); // (229 of 1207.0) 2005-04-30T12:55:49Z 3045 00:50:45 9.57620370591675 Gooby 1.2.0
|
252
|
+
// points.push(new GLatLng(36.11519,-86.79319)); // (230 of 1207.0) 2005-04-30T12:56:03Z 3059 00:50:59 9.62021666811526 Gooby 1.2.0
|
253
|
+
// points.push(new GLatLng(36.11519,-86.79386)); // (231 of 1207.0) 2005-04-30T12:56:23Z 3079 00:51:19 9.68039780988955 Gooby 1.2.0
|
254
|
+
points.push(new GLatLng(36.11519,-86.79416)); // (232 of 1207.0) 2005-04-30T12:56:31Z 3087 00:51:27 9.7073444290911 Gooby 1.2.0
|
255
|
+
// points.push(new GLatLng(36.11521,-86.79437)); // (233 of 1207.0) 2005-04-30T12:56:37Z 3093 00:51:33 9.7263376936707 Gooby 1.2.0
|
256
|
+
// points.push(new GLatLng(36.11524,-86.79493)); // (234 of 1207.0) 2005-04-30T12:56:53Z 3109 00:51:49 9.77674886132958 Gooby 1.2.0
|
257
|
+
// points.push(new GLatLng(36.11521,-86.7956)); // (235 of 1207.0) 2005-04-30T12:57:12Z 3128 00:52:08 9.83702247466037 Gooby 1.2.0
|
258
|
+
// points.push(new GLatLng(36.11526,-86.79598)); // (236 of 1207.0) 2005-04-30T12:57:24Z 3140 00:52:20 9.8716047638978 Gooby 1.2.0
|
259
|
+
// points.push(new GLatLng(36.11532,-86.7965)); // (237 of 1207.0) 2005-04-30T12:57:39Z 3155 00:52:35 9.91878638750901 Gooby 1.2.0
|
260
|
+
points.push(new GLatLng(36.11541,-86.79695)); // (238 of 1207.0) 2005-04-30T12:57:52Z 3168 00:52:48 9.96042679778868 Gooby 1.2.0
|
261
|
+
points.push(new GLatLng(36.11556,-86.79744)); // (239 of 1207.0) 2005-04-30T12:58:07Z 3183 00:53:03 10.007493871396 10.0 00:05:15 Gooby 1.2.0
|
262
|
+
// points.push(new GLatLng(36.11569,-86.79796)); // (240 of 1207.0) 2005-04-30T12:58:23Z 3199 00:53:19 10.0563869762775 Gooby 1.2.0
|
263
|
+
// points.push(new GLatLng(36.11586,-86.79839)); // (241 of 1207.0) 2005-04-30T12:58:38Z 3214 00:53:34 10.0993877680605 Gooby 1.2.0
|
264
|
+
// points.push(new GLatLng(36.11588,-86.79849)); // (242 of 1207.0) 2005-04-30T12:58:42Z 3218 00:53:38 10.1086414450544 Gooby 1.2.0
|
265
|
+
// points.push(new GLatLng(36.11594,-86.79854)); // (243 of 1207.0) 2005-04-30T12:58:45Z 3221 00:53:41 10.1166831482128 Gooby 1.2.0
|
266
|
+
// points.push(new GLatLng(36.11603,-86.79856)); // (244 of 1207.0) 2005-04-30T12:58:48Z 3224 00:53:44 10.1268500477459 Gooby 1.2.0
|
267
|
+
points.push(new GLatLng(36.11618,-86.79845)); // (245 of 1207.0) 2005-04-30T12:58:55Z 3231 00:53:51 10.146235451487 Gooby 1.2.0
|
268
|
+
// points.push(new GLatLng(36.11652,-86.79815)); // (246 of 1207.0) 2005-04-30T12:59:09Z 3245 00:54:05 10.1926605582673 Gooby 1.2.0
|
269
|
+
// points.push(new GLatLng(36.11678,-86.79794)); // (247 of 1207.0) 2005-04-30T12:59:20Z 3256 00:54:16 10.227179335202 Gooby 1.2.0
|
270
|
+
// points.push(new GLatLng(36.11695,-86.79779)); // (248 of 1207.0) 2005-04-30T12:59:28Z 3264 00:54:24 10.250391791534 Gooby 1.2.0
|
271
|
+
// points.push(new GLatLng(36.11719,-86.79757)); // (249 of 1207.0) 2005-04-30T12:59:39Z 3275 00:54:35 10.2835971986948 Gooby 1.2.0
|
272
|
+
// points.push(new GLatLng(36.11749,-86.79731)); // (250 of 1207.0) 2005-04-30T12:59:52Z 3288 00:54:48 10.3243163963413 Gooby 1.2.0
|
273
|
+
points.push(new GLatLng(36.11773,-86.79712)); // (251 of 1207.0) 2005-04-30T13:00:03Z 3299 00:54:59 10.3559922648056 Gooby 1.2.0
|
274
|
+
// points.push(new GLatLng(36.11807,-86.79684)); // (252 of 1207.0) 2005-04-30T13:00:18Z 3314 00:55:14 10.401397941854 Gooby 1.2.0
|
275
|
+
// points.push(new GLatLng(36.11837,-86.79656)); // (253 of 1207.0) 2005-04-30T13:00:31Z 3327 00:55:27 10.443173072461 Gooby 1.2.0
|
276
|
+
// points.push(new GLatLng(36.1188,-86.79622)); // (254 of 1207.0) 2005-04-30T13:00:49Z 3345 00:55:45 10.4999051257593 Gooby 1.2.0
|
277
|
+
// points.push(new GLatLng(36.11912,-86.79592)); // (255 of 1207.0) 2005-04-30T13:01:04Z 3360 00:56:00 10.544537513154 Gooby 1.2.0
|
278
|
+
// points.push(new GLatLng(36.11948,-86.79568)); // (256 of 1207.0) 2005-04-30T13:01:18Z 3374 00:56:14 10.5900011076544 Gooby 1.2.0
|
279
|
+
points.push(new GLatLng(36.11991,-86.79545)); // (257 of 1207.0) 2005-04-30T13:01:34Z 3390 00:56:30 10.6420846952985 Gooby 1.2.0
|
280
|
+
// points.push(new GLatLng(36.12043,-86.79519)); // (258 of 1207.0) 2005-04-30T13:01:53Z 3409 00:56:49 10.7044411074413 Gooby 1.2.0
|
281
|
+
// points.push(new GLatLng(36.12094,-86.79502)); // (259 of 1207.0) 2005-04-30T13:02:12Z 3428 00:57:08 10.7631674088358 Gooby 1.2.0
|
282
|
+
// points.push(new GLatLng(36.12131,-86.79489)); // (260 of 1207.0) 2005-04-30T13:02:26Z 3442 00:57:22 10.8059324122488 Gooby 1.2.0
|
283
|
+
// points.push(new GLatLng(36.12182,-86.79478)); // (261 of 1207.0) 2005-04-30T13:02:45Z 3461 00:57:41 10.8634933223474 Gooby 1.2.0
|
284
|
+
// points.push(new GLatLng(36.12238,-86.7947)); // (262 of 1207.0) 2005-04-30T13:03:05Z 3481 00:58:01 10.9261726985928 Gooby 1.2.0
|
285
|
+
points.push(new GLatLng(36.12292,-86.79459)); // (263 of 1207.0) 2005-04-30T13:03:24Z 3500 00:58:20 10.9870224823295 Gooby 1.2.0
|
286
|
+
points.push(new GLatLng(36.12335,-86.7945)); // (264 of 1207.0) 2005-04-30T13:03:40Z 3516 00:58:36 11.0355123895513 11.0 00:05:33 Gooby 1.2.0
|
287
|
+
// points.push(new GLatLng(36.12388,-86.79444)); // (265 of 1207.0) 2005-04-30T13:03:59Z 3535 00:58:55 11.0946885856686 Gooby 1.2.0
|
288
|
+
// points.push(new GLatLng(36.12429,-86.79431)); // (266 of 1207.0) 2005-04-30T13:04:16Z 3552 00:59:12 11.1417476169282 Gooby 1.2.0
|
289
|
+
// points.push(new GLatLng(36.12466,-86.7942)); // (267 of 1207.0) 2005-04-30T13:04:30Z 3566 00:59:26 11.1840574458686 Gooby 1.2.0
|
290
|
+
// points.push(new GLatLng(36.12502,-86.79414)); // (268 of 1207.0) 2005-04-30T13:04:44Z 3580 00:59:40 11.2244468740047 Gooby 1.2.0
|
291
|
+
// points.push(new GLatLng(36.12532,-86.79407)); // (269 of 1207.0) 2005-04-30T13:04:56Z 3592 00:59:52 11.2583910821077 Gooby 1.2.0
|
292
|
+
points.push(new GLatLng(36.12579,-86.79399)); // (270 of 1207.0) 2005-04-30T13:05:15Z 3611 01:00:11 11.3111418263687 Gooby 1.2.0
|
293
|
+
// points.push(new GLatLng(36.12584,-86.79397)); // (271 of 1207.0) 2005-04-30T13:05:17Z 3613 01:00:13 11.3169845024306 Gooby 1.2.0
|
294
|
+
// points.push(new GLatLng(36.12631,-86.79394)); // (272 of 1207.0) 2005-04-30T13:05:35Z 3631 01:00:31 11.3693129526483 Gooby 1.2.0
|
295
|
+
// points.push(new GLatLng(36.12672,-86.79399)); // (273 of 1207.0) 2005-04-30T13:05:50Z 3646 01:00:46 11.4151213337892 Gooby 1.2.0
|
296
|
+
// points.push(new GLatLng(36.12723,-86.79412)); // (274 of 1207.0) 2005-04-30T13:06:08Z 3664 01:01:04 11.473017406435 Gooby 1.2.0
|
297
|
+
// points.push(new GLatLng(36.12764,-86.79427)); // (275 of 1207.0) 2005-04-30T13:06:25Z 3681 01:01:21 11.5205538216489 Gooby 1.2.0
|
298
|
+
points.push(new GLatLng(36.12809,-86.79452)); // (276 of 1207.0) 2005-04-30T13:06:43Z 3699 01:01:39 11.5753956095082 Gooby 1.2.0
|
299
|
+
// points.push(new GLatLng(36.12845,-86.79485)); // (277 of 1207.0) 2005-04-30T13:06:59Z 3715 01:01:55 11.6252010514421 Gooby 1.2.0
|
300
|
+
// points.push(new GLatLng(36.12884,-86.79513)); // (278 of 1207.0) 2005-04-30T13:07:15Z 3731 01:02:11 11.6753284324617 Gooby 1.2.0
|
301
|
+
// points.push(new GLatLng(36.12918,-86.7954)); // (279 of 1207.0) 2005-04-30T13:07:29Z 3745 01:02:25 11.7202410028306 Gooby 1.2.0
|
302
|
+
// points.push(new GLatLng(36.12966,-86.79564)); // (280 of 1207.0) 2005-04-30T13:07:47Z 3763 01:02:43 11.7777997993052 Gooby 1.2.0
|
303
|
+
// points.push(new GLatLng(36.12989,-86.79564)); // (281 of 1207.0) 2005-04-30T13:07:56Z 3772 01:02:52 11.8033733699181 Gooby 1.2.0
|
304
|
+
points.push(new GLatLng(36.13039,-86.79562)); // (282 of 1207.0) 2005-04-30T13:08:13Z 3789 01:03:09 11.8589971078052 Gooby 1.2.0
|
305
|
+
// points.push(new GLatLng(36.13084,-86.79555)); // (283 of 1207.0) 2005-04-30T13:08:29Z 3805 01:03:25 11.9094257022159 Gooby 1.2.0
|
306
|
+
// points.push(new GLatLng(36.13148,-86.79551)); // (284 of 1207.0) 2005-04-30T13:08:52Z 3828 01:03:48 11.9806776503784 Gooby 1.2.0
|
307
|
+
points.push(new GLatLng(36.13193,-86.79553)); // (285 of 1207.0) 2005-04-30T13:09:08Z 3844 01:04:04 12.0307451292449 12.0 00:05:28 Gooby 1.2.0
|
308
|
+
// points.push(new GLatLng(36.13245,-86.79555)); // (286 of 1207.0) 2005-04-30T13:09:28Z 3864 01:04:24 12.0885915264671 Gooby 1.2.0
|
309
|
+
// points.push(new GLatLng(36.13281,-86.79562)); // (287 of 1207.0) 2005-04-30T13:09:41Z 3877 01:04:37 12.1291103821695 Gooby 1.2.0
|
310
|
+
// points.push(new GLatLng(36.13287,-86.79566)); // (288 of 1207.0) 2005-04-30T13:09:43Z 3879 01:04:39 12.1366870201934 Gooby 1.2.0
|
311
|
+
// points.push(new GLatLng(36.13292,-86.79579)); // (289 of 1207.0) 2005-04-30T13:09:47Z 3883 01:04:43 12.1496178262855 Gooby 1.2.0
|
312
|
+
// points.push(new GLatLng(36.13294,-86.79594)); // (290 of 1207.0) 2005-04-30T13:09:51Z 3887 01:04:47 12.1632707004542 Gooby 1.2.0
|
313
|
+
points.push(new GLatLng(36.133,-86.79652)); // (291 of 1207.0) 2005-04-30T13:10:08Z 3904 01:05:04 12.2157817265154 Gooby 1.2.0
|
314
|
+
// points.push(new GLatLng(36.13307,-86.7971)); // (292 of 1207.0) 2005-04-30T13:10:23Z 3919 01:05:19 12.268445442329 Gooby 1.2.0
|
315
|
+
// points.push(new GLatLng(36.13309,-86.79716)); // (293 of 1207.0) 2005-04-30T13:10:25Z 3921 01:05:21 12.2742742201065 Gooby 1.2.0
|
316
|
+
// points.push(new GLatLng(36.13322,-86.79729)); // (294 of 1207.0) 2005-04-30T13:10:30Z 3926 01:05:26 12.2928542279877 Gooby 1.2.0
|
317
|
+
// points.push(new GLatLng(36.13326,-86.79729)); // (295 of 1207.0) 2005-04-30T13:10:31Z 3927 01:05:27 12.2973007979987 Gooby 1.2.0
|
318
|
+
// points.push(new GLatLng(36.13375,-86.79727)); // (296 of 1207.0) 2005-04-30T13:10:48Z 3944 01:05:44 12.3518132770157 Gooby 1.2.0
|
319
|
+
points.push(new GLatLng(36.13436,-86.79718)); // (297 of 1207.0) 2005-04-30T13:11:09Z 3965 01:06:05 12.4201186918332 Gooby 1.2.0
|
320
|
+
// points.push(new GLatLng(36.13498,-86.79708)); // (298 of 1207.0) 2005-04-30T13:11:32Z 3988 01:06:28 12.4896387155684 Gooby 1.2.0
|
321
|
+
// points.push(new GLatLng(36.13547,-86.79703)); // (299 of 1207.0) 2005-04-30T13:11:50Z 4006 01:06:46 12.5443062893458 Gooby 1.2.0
|
322
|
+
// points.push(new GLatLng(36.13564,-86.79695)); // (300 of 1207.0) 2005-04-30T13:11:57Z 4013 01:06:53 12.5645276491319 Gooby 1.2.0
|
323
|
+
// points.push(new GLatLng(36.13577,-86.79673)); // (301 of 1207.0) 2005-04-30T13:12:05Z 4021 01:07:01 12.5890068960255 Gooby 1.2.0
|
324
|
+
// points.push(new GLatLng(36.13592,-86.79639)); // (302 of 1207.0) 2005-04-30T13:12:17Z 4033 01:07:13 12.6237969041718 Gooby 1.2.0
|
325
|
+
points.push(new GLatLng(36.13609,-86.79605)); // (303 of 1207.0) 2005-04-30T13:12:29Z 4045 01:07:25 12.6597063274105 Gooby 1.2.0
|
326
|
+
// points.push(new GLatLng(36.13635,-86.79562)); // (304 of 1207.0) 2005-04-30T13:12:45Z 4061 01:07:41 12.7079427231707 Gooby 1.2.0
|
327
|
+
// points.push(new GLatLng(36.13652,-86.79536)); // (305 of 1207.0) 2005-04-30T13:12:55Z 4071 01:07:51 12.7379828625002 Gooby 1.2.0
|
328
|
+
// points.push(new GLatLng(36.13682,-86.79497)); // (306 of 1207.0) 2005-04-30T13:13:10Z 4086 01:08:06 12.7863479036794 Gooby 1.2.0
|
329
|
+
// points.push(new GLatLng(36.13712,-86.79463)); // (307 of 1207.0) 2005-04-30T13:13:24Z 4100 01:08:20 12.8315678261072 Gooby 1.2.0
|
330
|
+
// points.push(new GLatLng(36.13751,-86.79433)); // (308 of 1207.0) 2005-04-30T13:13:40Z 4116 01:08:36 12.8826183214523 Gooby 1.2.0
|
331
|
+
points.push(new GLatLng(36.13794,-86.79414)); // (309 of 1207.0) 2005-04-30T13:13:56Z 4132 01:08:52 12.9333827459685 Gooby 1.2.0
|
332
|
+
// points.push(new GLatLng(36.138,-86.79412)); // (310 of 1207.0) 2005-04-30T13:13:58Z 4134 01:08:54 12.940291199031 Gooby 1.2.0
|
333
|
+
// points.push(new GLatLng(36.1383,-86.79412)); // (311 of 1207.0) 2005-04-30T13:14:08Z 4144 01:09:04 12.9736479720443 Gooby 1.2.0
|
334
|
+
points.push(new GLatLng(36.13869,-86.79405)); // (312 of 1207.0) 2005-04-30T13:14:21Z 4157 01:09:17 13.0174650604009 13.0 00:05:13 Gooby 1.2.0
|
335
|
+
// points.push(new GLatLng(36.13935,-86.79397)); // (313 of 1207.0) 2005-04-30T13:14:47Z 4183 01:09:43 13.0912008821634 Gooby 1.2.0
|
336
|
+
// points.push(new GLatLng(36.13989,-86.7939)); // (314 of 1207.0) 2005-04-30T13:15:05Z 4201 01:10:01 13.1515713038387 Gooby 1.2.0
|
337
|
+
// points.push(new GLatLng(36.14013,-86.79388)); // (315 of 1207.0) 2005-04-30T13:15:13Z 4209 01:10:09 13.1783171842962 Gooby 1.2.0
|
338
|
+
// points.push(new GLatLng(36.14017,-86.79386)); // (316 of 1207.0) 2005-04-30T13:15:16Z 4212 01:10:12 13.1831128307461 Gooby 1.2.0
|
339
|
+
// points.push(new GLatLng(36.14043,-86.79382)); // (317 of 1207.0) 2005-04-30T13:15:25Z 4221 01:10:21 13.2122443482488 Gooby 1.2.0
|
340
|
+
points.push(new GLatLng(36.14116,-86.79367)); // (318 of 1207.0) 2005-04-30T13:15:49Z 4245 01:10:45 13.2945227352124 Gooby 1.2.0
|
341
|
+
// points.push(new GLatLng(36.14174,-86.79354)); // (319 of 1207.0) 2005-04-30T13:16:09Z 4265 01:11:05 13.3600606317746 Gooby 1.2.0
|
342
|
+
// points.push(new GLatLng(36.14238,-86.79341)); // (320 of 1207.0) 2005-04-30T13:16:32Z 4288 01:11:28 13.4321730040292 Gooby 1.2.0
|
343
|
+
// points.push(new GLatLng(36.14315,-86.79328)); // (321 of 1207.0) 2005-04-30T13:16:58Z 4314 01:11:54 13.5185810909403 Gooby 1.2.0
|
344
|
+
// points.push(new GLatLng(36.14373,-86.79322)); // (322 of 1207.0) 2005-04-30T13:17:17Z 4333 01:12:13 13.5832956561242 Gooby 1.2.0
|
345
|
+
// points.push(new GLatLng(36.14431,-86.79311)); // (323 of 1207.0) 2005-04-30T13:17:37Z 4353 01:12:33 13.648537590626 Gooby 1.2.0
|
346
|
+
points.push(new GLatLng(36.14502,-86.79298)); // (324 of 1207.0) 2005-04-30T13:18:02Z 4378 01:12:58 13.7283404643125 Gooby 1.2.0
|
347
|
+
// points.push(new GLatLng(36.14541,-86.79287)); // (325 of 1207.0) 2005-04-30T13:18:17Z 4393 01:13:13 13.7728150809892 Gooby 1.2.0
|
348
|
+
// points.push(new GLatLng(36.14573,-86.79279)); // (326 of 1207.0) 2005-04-30T13:18:29Z 4405 01:13:25 13.8091133947517 Gooby 1.2.0
|
349
|
+
// points.push(new GLatLng(36.14616,-86.7927)); // (327 of 1207.0) 2005-04-30T13:18:44Z 4420 01:13:40 13.8576029302723 Gooby 1.2.0
|
350
|
+
// points.push(new GLatLng(36.14652,-86.79261)); // (328 of 1207.0) 2005-04-30T13:18:57Z 4433 01:13:53 13.8984387056656 Gooby 1.2.0
|
351
|
+
// points.push(new GLatLng(36.14697,-86.79253)); // (329 of 1207.0) 2005-04-30T13:19:12Z 4448 01:14:08 13.9489869797856 Gooby 1.2.0
|
352
|
+
points.push(new GLatLng(36.14738,-86.79244)); // (330 of 1207.0) 2005-04-30T13:19:27Z 4463 01:14:23 13.9952853501187 Gooby 1.2.0
|
353
|
+
points.push(new GLatLng(36.14796,-86.79236)); // (331 of 1207.0) 2005-04-30T13:19:47Z 4483 01:14:43 14.0601740981045 14.0 00:05:26 Gooby 1.2.0
|
354
|
+
// points.push(new GLatLng(36.14839,-86.79225)); // (332 of 1207.0) 2005-04-30T13:20:03Z 4499 01:14:59 14.1089950817412 Gooby 1.2.0
|
355
|
+
// points.push(new GLatLng(36.1489,-86.79221)); // (333 of 1207.0) 2005-04-30T13:20:21Z 4517 01:15:17 14.165815386576 Gooby 1.2.0
|
356
|
+
// points.push(new GLatLng(36.14916,-86.79214)); // (334 of 1207.0) 2005-04-30T13:20:31Z 4527 01:15:27 14.1953999817959 Gooby 1.2.0
|
357
|
+
// points.push(new GLatLng(36.14935,-86.79212)); // (335 of 1207.0) 2005-04-30T13:20:42Z 4538 01:15:38 14.2166020756207 Gooby 1.2.0
|
358
|
+
// points.push(new GLatLng(36.14957,-86.79206)); // (336 of 1207.0) 2005-04-30T13:20:53Z 4549 01:15:49 14.2416497607012 Gooby 1.2.0
|
359
|
+
points.push(new GLatLng(36.15015,-86.79197)); // (337 of 1207.0) 2005-04-30T13:21:15Z 4571 01:16:11 14.3066439035572 Gooby 1.2.0
|
360
|
+
// points.push(new GLatLng(36.15066,-86.79186)); // (338 of 1207.0) 2005-04-30T13:21:32Z 4588 01:16:28 14.3642041091231 Gooby 1.2.0
|
361
|
+
// points.push(new GLatLng(36.15126,-86.7918)); // (339 of 1207.0) 2005-04-30T13:21:53Z 4609 01:16:49 14.4311349195438 Gooby 1.2.0
|
362
|
+
// points.push(new GLatLng(36.15167,-86.79169)); // (340 of 1207.0) 2005-04-30T13:22:07Z 4623 01:17:03 14.4777800205537 Gooby 1.2.0
|
363
|
+
// points.push(new GLatLng(36.15189,-86.79165)); // (341 of 1207.0) 2005-04-30T13:22:15Z 4631 01:17:11 14.5025037811836 Gooby 1.2.0
|
364
|
+
// points.push(new GLatLng(36.15193,-86.79131)); // (342 of 1207.0) 2005-04-30T13:22:25Z 4641 01:17:21 14.5333515947443 Gooby 1.2.0
|
365
|
+
points.push(new GLatLng(36.15191,-86.79118)); // (343 of 1207.0) 2005-04-30T13:22:28Z 4644 01:17:24 14.5452327360271 Gooby 1.2.0
|
366
|
+
// points.push(new GLatLng(36.15191,-86.79116)); // (344 of 1207.0) 2005-04-30T13:22:29Z 4645 01:17:25 14.547026399364 Gooby 1.2.0
|
367
|
+
// points.push(new GLatLng(36.15182,-86.79101)); // (345 of 1207.0) 2005-04-30T13:22:33Z 4649 01:17:29 14.5638041807058 Gooby 1.2.0
|
368
|
+
// points.push(new GLatLng(36.15178,-86.79073)); // (346 of 1207.0) 2005-04-30T13:22:41Z 4657 01:17:37 14.5893331351978 Gooby 1.2.0
|
369
|
+
// points.push(new GLatLng(36.15176,-86.79017)); // (347 of 1207.0) 2005-04-30T13:22:57Z 4673 01:17:53 14.6396594960537 Gooby 1.2.0
|
370
|
+
// points.push(new GLatLng(36.15169,-86.78967)); // (348 of 1207.0) 2005-04-30T13:23:11Z 4687 01:18:07 14.6852197197609 Gooby 1.2.0
|
371
|
+
points.push(new GLatLng(36.15169,-86.78937)); // (349 of 1207.0) 2005-04-30T13:23:19Z 4695 01:18:15 14.7121539620923 Gooby 1.2.0
|
372
|
+
// points.push(new GLatLng(36.15163,-86.78897)); // (350 of 1207.0) 2005-04-30T13:23:30Z 4706 01:18:26 14.7486807118147 Gooby 1.2.0
|
373
|
+
// points.push(new GLatLng(36.15159,-86.78854)); // (351 of 1207.0) 2005-04-30T13:23:42Z 4718 01:18:38 14.7875418328376 Gooby 1.2.0
|
374
|
+
// points.push(new GLatLng(36.15156,-86.78832)); // (352 of 1207.0) 2005-04-30T13:23:48Z 4724 01:18:44 14.8075735666634 Gooby 1.2.0
|
375
|
+
// points.push(new GLatLng(36.1515,-86.78785)); // (353 of 1207.0) 2005-04-30T13:24:02Z 4738 01:18:58 14.8502947158753 Gooby 1.2.0
|
376
|
+
// points.push(new GLatLng(36.15144,-86.78738)); // (354 of 1207.0) 2005-04-30T13:24:16Z 4752 01:19:12 14.8930159705599 Gooby 1.2.0
|
377
|
+
points.push(new GLatLng(36.15139,-86.78699)); // (355 of 1207.0) 2005-04-30T13:24:27Z 4763 01:19:23 14.9284692623428 Gooby 1.2.0
|
378
|
+
// points.push(new GLatLng(36.15135,-86.78671)); // (356 of 1207.0) 2005-04-30T13:24:35Z 4771 01:19:31 14.9539983933366 Gooby 1.2.0
|
379
|
+
// points.push(new GLatLng(36.15131,-86.78646)); // (357 of 1207.0) 2005-04-30T13:24:42Z 4778 01:19:38 14.9768800473326 Gooby 1.2.0
|
380
|
+
points.push(new GLatLng(36.15129,-86.78611)); // (358 of 1207.0) 2005-04-30T13:24:52Z 4788 01:19:48 15.0083821776965 15.0 00:05:05 Gooby 1.2.0
|
381
|
+
// points.push(new GLatLng(36.15124,-86.78568)); // (359 of 1207.0) 2005-04-30T13:25:04Z 4800 01:20:00 15.0473863488304 Gooby 1.2.0
|
382
|
+
// points.push(new GLatLng(36.1512,-86.7853)); // (360 of 1207.0) 2005-04-30T13:25:15Z 4811 01:20:11 15.0817920273784 Gooby 1.2.0
|
383
|
+
// points.push(new GLatLng(36.15113,-86.78485)); // (361 of 1207.0) 2005-04-30T13:25:28Z 4824 01:20:24 15.1229365874156 Gooby 1.2.0
|
384
|
+
// points.push(new GLatLng(36.15116,-86.7844)); // (362 of 1207.0) 2005-04-30T13:25:41Z 4837 01:20:37 15.1634756774764 Gooby 1.2.0
|
385
|
+
// points.push(new GLatLng(36.15131,-86.78425)); // (363 of 1207.0) 2005-04-30T13:25:49Z 4845 01:20:45 15.1849125835219 Gooby 1.2.0
|
386
|
+
points.push(new GLatLng(36.15169,-86.78414)); // (364 of 1207.0) 2005-04-30T13:26:01Z 4857 01:20:57 15.2283035087141 Gooby 1.2.0
|
387
|
+
// points.push(new GLatLng(36.15174,-86.78412)); // (365 of 1207.0) 2005-04-30T13:26:02Z 4858 01:20:58 15.234146184776 Gooby 1.2.0
|
388
|
+
// points.push(new GLatLng(36.15197,-86.78418)); // (366 of 1207.0) 2005-04-30T13:26:05Z 4861 01:21:01 15.2602811166131 Gooby 1.2.0
|
389
|
+
// points.push(new GLatLng(36.15214,-86.7841)); // (367 of 1207.0) 2005-04-30T13:26:12Z 4868 01:21:08 15.2805020307347 Gooby 1.2.0
|
390
|
+
// points.push(new GLatLng(36.15229,-86.78399)); // (368 of 1207.0) 2005-04-30T13:26:18Z 4874 01:21:14 15.2998851099475 Gooby 1.2.0
|
391
|
+
// points.push(new GLatLng(36.15262,-86.78382)); // (369 of 1207.0) 2005-04-30T13:26:30Z 4886 01:21:26 15.3396253860398 Gooby 1.2.0
|
392
|
+
points.push(new GLatLng(36.15296,-86.78377)); // (370 of 1207.0) 2005-04-30T13:26:42Z 4898 01:21:38 15.377695331344 Gooby 1.2.0
|
393
|
+
// points.push(new GLatLng(36.15326,-86.78382)); // (371 of 1207.0) 2005-04-30T13:26:53Z 4909 01:21:49 15.411353061687 Gooby 1.2.0
|
394
|
+
// points.push(new GLatLng(36.15347,-86.78395)); // (372 of 1207.0) 2005-04-30T13:27:01Z 4917 01:21:57 15.4374574591291 Gooby 1.2.0
|
395
|
+
// points.push(new GLatLng(36.15369,-86.78412)); // (373 of 1207.0) 2005-04-30T13:27:10Z 4926 01:22:06 15.4662900021449 Gooby 1.2.0
|
396
|
+
// points.push(new GLatLng(36.15407,-86.78444)); // (374 of 1207.0) 2005-04-30T13:27:27Z 4943 01:22:23 15.5173839931211 Gooby 1.2.0
|
397
|
+
// points.push(new GLatLng(36.15448,-86.7847)); // (375 of 1207.0) 2005-04-30T13:27:43Z 4959 01:22:39 15.5686003319656 Gooby 1.2.0
|
398
|
+
points.push(new GLatLng(36.15478,-86.78483)); // (376 of 1207.0) 2005-04-30T13:27:54Z 4970 01:22:50 15.6039399460256 Gooby 1.2.0
|
399
|
+
// points.push(new GLatLng(36.1548,-86.78483)); // (377 of 1207.0) 2005-04-30T13:27:55Z 4971 01:22:51 15.6061622174523 Gooby 1.2.0
|
400
|
+
// points.push(new GLatLng(36.15493,-86.78487)); // (378 of 1207.0) 2005-04-30T13:28:00Z 4976 01:22:56 15.6210560594773 Gooby 1.2.0
|
401
|
+
// points.push(new GLatLng(36.15534,-86.78504)); // (379 of 1207.0) 2005-04-30T13:28:15Z 4991 01:23:11 15.6691305785753 Gooby 1.2.0
|
402
|
+
// points.push(new GLatLng(36.15566,-86.7853)); // (380 of 1207.0) 2005-04-30T13:28:28Z 5004 01:23:24 15.7116844367031 Gooby 1.2.0
|
403
|
+
// points.push(new GLatLng(36.15616,-86.78555)); // (381 of 1207.0) 2005-04-30T13:28:48Z 5024 01:23:44 15.7716387360502 Gooby 1.2.0
|
404
|
+
points.push(new GLatLng(36.15663,-86.78588)); // (382 of 1207.0) 2005-04-30T13:29:07Z 5043 01:24:03 15.8317112143746 Gooby 1.2.0
|
405
|
+
// points.push(new GLatLng(36.15725,-86.78628)); // (383 of 1207.0) 2005-04-30T13:29:32Z 5068 01:24:28 15.909440934794 Gooby 1.2.0
|
406
|
+
points.push(new GLatLng(36.15807,-86.78691)); // (384 of 1207.0) 2005-04-30T13:30:05Z 5101 01:25:01 16.0167337026276 16.0 00:05:13 Gooby 1.2.0
|
407
|
+
// points.push(new GLatLng(36.15837,-86.78727)); // (385 of 1207.0) 2005-04-30T13:30:19Z 5115 01:25:15 16.0631788960408 Gooby 1.2.0
|
408
|
+
// points.push(new GLatLng(36.15858,-86.78753)); // (386 of 1207.0) 2005-04-30T13:30:29Z 5125 01:25:25 16.0961941882431 Gooby 1.2.0
|
409
|
+
// points.push(new GLatLng(36.15886,-86.78777)); // (387 of 1207.0) 2005-04-30T13:30:40Z 5136 01:25:36 16.134055486615 Gooby 1.2.0
|
410
|
+
// points.push(new GLatLng(36.15912,-86.788)); // (388 of 1207.0) 2005-04-30T13:30:51Z 5147 01:25:47 16.169581148454 Gooby 1.2.0
|
411
|
+
// points.push(new GLatLng(36.15933,-86.78822)); // (389 of 1207.0) 2005-04-30T13:31:01Z 5157 01:25:57 16.2001632862587 Gooby 1.2.0
|
412
|
+
points.push(new GLatLng(36.1597,-86.78858)); // (390 of 1207.0) 2005-04-30T13:31:17Z 5173 01:26:13 16.252479163132 Gooby 1.2.0
|
413
|
+
// points.push(new GLatLng(36.15974,-86.78862)); // (391 of 1207.0) 2005-04-30T13:31:19Z 5175 01:26:15 16.258195538286 Gooby 1.2.0
|
414
|
+
// points.push(new GLatLng(36.16002,-86.78886)); // (392 of 1207.0) 2005-04-30T13:31:30Z 5186 01:26:26 16.2960567176465 Gooby 1.2.0
|
415
|
+
// points.push(new GLatLng(36.16021,-86.78901)); // (393 of 1207.0) 2005-04-30T13:31:38Z 5194 01:26:34 16.3211094392453 Gooby 1.2.0
|
416
|
+
// points.push(new GLatLng(36.16047,-86.78922)); // (394 of 1207.0) 2005-04-30T13:31:49Z 5205 01:26:45 16.3556224721452 Gooby 1.2.0
|
417
|
+
// points.push(new GLatLng(36.16064,-86.78937)); // (395 of 1207.0) 2005-04-30T13:31:56Z 5212 01:26:52 16.3788304633673 Gooby 1.2.0
|
418
|
+
points.push(new GLatLng(36.16086,-86.78952)); // (396 of 1207.0) 2005-04-30T13:32:05Z 5221 01:27:01 16.4067533336489 Gooby 1.2.0
|
419
|
+
// points.push(new GLatLng(36.16109,-86.7897)); // (397 of 1207.0) 2005-04-30T13:32:15Z 5231 01:27:11 16.4370040800624 Gooby 1.2.0
|
420
|
+
// points.push(new GLatLng(36.16131,-86.78991)); // (398 of 1207.0) 2005-04-30T13:32:25Z 5241 01:27:21 16.4678872221892 Gooby 1.2.0
|
421
|
+
// points.push(new GLatLng(36.16156,-86.79015)); // (399 of 1207.0) 2005-04-30T13:32:36Z 5252 01:27:32 16.5030563353788 Gooby 1.2.0
|
422
|
+
// points.push(new GLatLng(36.16176,-86.7903)); // (400 of 1207.0) 2005-04-30T13:32:44Z 5260 01:27:40 16.5290531467043 Gooby 1.2.0
|
423
|
+
// points.push(new GLatLng(36.16195,-86.79043)); // (401 of 1207.0) 2005-04-30T13:32:52Z 5268 01:27:48 16.5531879664273 Gooby 1.2.0
|
424
|
+
points.push(new GLatLng(36.16214,-86.79049)); // (402 of 1207.0) 2005-04-30T13:32:59Z 5275 01:27:55 16.5749898167834 Gooby 1.2.0
|
425
|
+
// points.push(new GLatLng(36.16223,-86.79045)); // (403 of 1207.0) 2005-04-30T13:33:02Z 5278 01:27:58 16.5856220586046 Gooby 1.2.0
|
426
|
+
// points.push(new GLatLng(36.16234,-86.79028)); // (404 of 1207.0) 2005-04-30T13:33:09Z 5285 01:28:05 16.6051791715346 Gooby 1.2.0
|
427
|
+
// points.push(new GLatLng(36.16236,-86.79023)); // (405 of 1207.0) 2005-04-30T13:33:10Z 5286 01:28:06 16.6101880608914 Gooby 1.2.0
|
428
|
+
// points.push(new GLatLng(36.16253,-86.78989)); // (406 of 1207.0) 2005-04-30T13:33:22Z 5298 01:28:18 16.6460884484185 Gooby 1.2.0
|
429
|
+
// points.push(new GLatLng(36.16272,-86.78955)); // (407 of 1207.0) 2005-04-30T13:33:34Z 5310 01:28:30 16.6832079421609 Gooby 1.2.0
|
430
|
+
points.push(new GLatLng(36.16292,-86.78916)); // (408 of 1207.0) 2005-04-30T13:33:48Z 5324 01:28:44 16.7246832207067 Gooby 1.2.0
|
431
|
+
// points.push(new GLatLng(36.16309,-86.78882)); // (409 of 1207.0) 2005-04-30T13:34:01Z 5337 01:28:57 16.7605834827218 Gooby 1.2.0
|
432
|
+
// points.push(new GLatLng(36.16334,-86.7883)); // (410 of 1207.0) 2005-04-30T13:34:19Z 5355 01:29:15 16.8149123986995 Gooby 1.2.0
|
433
|
+
// points.push(new GLatLng(36.16349,-86.78804)); // (411 of 1207.0) 2005-04-30T13:34:29Z 5365 01:29:25 16.843598762824 Gooby 1.2.0
|
434
|
+
// points.push(new GLatLng(36.1636,-86.78792)); // (412 of 1207.0) 2005-04-30T13:34:36Z 5372 01:29:32 16.8598970173935 Gooby 1.2.0
|
435
|
+
// points.push(new GLatLng(36.16386,-86.78802)); // (413 of 1207.0) 2005-04-30T13:34:46Z 5382 01:29:42 16.8901680145575 Gooby 1.2.0
|
436
|
+
points.push(new GLatLng(36.16412,-86.78826)); // (414 of 1207.0) 2005-04-30T13:34:58Z 5394 01:29:54 16.926222201118 Gooby 1.2.0
|
437
|
+
// points.push(new GLatLng(36.16433,-86.78845)); // (415 of 1207.0) 2005-04-30T13:35:07Z 5403 01:30:03 16.9551376092201 Gooby 1.2.0
|
438
|
+
// points.push(new GLatLng(36.16452,-86.78856)); // (416 of 1207.0) 2005-04-30T13:35:14Z 5410 01:30:10 16.9784573581537 Gooby 1.2.0
|
439
|
+
points.push(new GLatLng(36.16482,-86.78875)); // (417 of 1207.0) 2005-04-30T13:35:27Z 5423 01:30:23 17.0159216960944 17.0 00:05:22 Gooby 1.2.0
|
440
|
+
// points.push(new GLatLng(36.16525,-86.7889)); // (418 of 1207.0) 2005-04-30T13:35:43Z 5439 01:30:39 17.0655930612628 Gooby 1.2.0
|
441
|
+
// points.push(new GLatLng(36.16583,-86.78899)); // (419 of 1207.0) 2005-04-30T13:36:02Z 5458 01:30:58 17.1305869961342 Gooby 1.2.0
|
442
|
+
// points.push(new GLatLng(36.16631,-86.78897)); // (420 of 1207.0) 2005-04-30T13:36:19Z 5475 01:31:15 17.1839882111556 Gooby 1.2.0
|
443
|
+
// points.push(new GLatLng(36.16673,-86.78884)); // (421 of 1207.0) 2005-04-30T13:36:34Z 5490 01:31:30 17.232123802027 Gooby 1.2.0
|
444
|
+
// points.push(new GLatLng(36.16716,-86.78854)); // (422 of 1207.0) 2005-04-30T13:36:51Z 5507 01:31:47 17.2869973774444 Gooby 1.2.0
|
445
|
+
points.push(new GLatLng(36.16744,-86.78824)); // (423 of 1207.0) 2005-04-30T13:37:03Z 5519 01:31:59 17.3281607696485 Gooby 1.2.0
|
446
|
+
// points.push(new GLatLng(36.16768,-86.78794)); // (424 of 1207.0) 2005-04-30T13:37:14Z 5530 01:32:10 17.3660722575171 Gooby 1.2.0
|
447
|
+
// points.push(new GLatLng(36.16776,-86.78792)); // (425 of 1207.0) 2005-04-30T13:37:17Z 5533 01:32:13 17.3751469600927 Gooby 1.2.0
|
448
|
+
// points.push(new GLatLng(36.16819,-86.78811)); // (426 of 1207.0) 2005-04-30T13:37:33Z 5549 01:32:29 17.4259092542904 Gooby 1.2.0
|
449
|
+
// points.push(new GLatLng(36.16852,-86.78828)); // (427 of 1207.0) 2005-04-30T13:37:46Z 5562 01:32:42 17.4656483965239 Gooby 1.2.0
|
450
|
+
// points.push(new GLatLng(36.16879,-86.78849)); // (428 of 1207.0) 2005-04-30T13:37:57Z 5573 01:32:53 17.5010968583831 Gooby 1.2.0
|
451
|
+
points.push(new GLatLng(36.16927,-86.78879)); // (429 of 1207.0) 2005-04-30T13:38:13Z 5589 01:33:09 17.5608763909119 Gooby 1.2.0
|
452
|
+
// points.push(new GLatLng(36.16948,-86.78897)); // (430 of 1207.0) 2005-04-30T13:38:22Z 5598 01:33:18 17.5892709960281 Gooby 1.2.0
|
453
|
+
// points.push(new GLatLng(36.16978,-86.78916)); // (431 of 1207.0) 2005-04-30T13:38:35Z 5611 01:33:31 17.6267347326025 Gooby 1.2.0
|
454
|
+
// points.push(new GLatLng(36.16997,-86.78937)); // (432 of 1207.0) 2005-04-30T13:38:49Z 5625 01:33:45 17.655047494747 Gooby 1.2.0
|
455
|
+
// points.push(new GLatLng(36.17017,-86.7895)); // (433 of 1207.0) 2005-04-30T13:39:00Z 5636 01:33:56 17.6801607552044 Gooby 1.2.0
|
456
|
+
// points.push(new GLatLng(36.17034,-86.78961)); // (434 of 1207.0) 2005-04-30T13:39:07Z 5643 01:34:03 17.7014861784249 Gooby 1.2.0
|
457
|
+
points.push(new GLatLng(36.17045,-86.78976)); // (435 of 1207.0) 2005-04-30T13:39:14Z 5650 01:34:10 17.7196760062925 Gooby 1.2.0
|
458
|
+
// points.push(new GLatLng(36.17062,-86.78985)); // (436 of 1207.0) 2005-04-30T13:39:21Z 5657 01:34:17 17.7402321813904 Gooby 1.2.0
|
459
|
+
// points.push(new GLatLng(36.17083,-86.79)); // (437 of 1207.0) 2005-04-30T13:39:30Z 5666 01:34:26 17.7671856556002 Gooby 1.2.0
|
460
|
+
// points.push(new GLatLng(36.17103,-86.7901)); // (438 of 1207.0) 2005-04-30T13:39:37Z 5673 01:34:33 17.791166518546 Gooby 1.2.0
|
461
|
+
// points.push(new GLatLng(36.17128,-86.79028)); // (439 of 1207.0) 2005-04-30T13:39:48Z 5684 01:34:44 17.8233181989983 Gooby 1.2.0
|
462
|
+
// points.push(new GLatLng(36.17156,-86.79045)); // (440 of 1207.0) 2005-04-30T13:39:59Z 5695 01:34:55 17.8579896258765 Gooby 1.2.0
|
463
|
+
points.push(new GLatLng(36.17169,-86.79058)); // (441 of 1207.0) 2005-04-30T13:40:05Z 5701 01:35:01 17.8765664808013 Gooby 1.2.0
|
464
|
+
// points.push(new GLatLng(36.17188,-86.79073)); // (442 of 1207.0) 2005-04-30T13:40:13Z 5709 01:35:09 17.9016181232314 Gooby 1.2.0
|
465
|
+
// points.push(new GLatLng(36.17218,-86.79092)); // (443 of 1207.0) 2005-04-30T13:40:26Z 5722 01:35:22 17.9390816192566 Gooby 1.2.0
|
466
|
+
// points.push(new GLatLng(36.17255,-86.79111)); // (444 of 1207.0) 2005-04-30T13:40:41Z 5737 01:35:37 17.9836164772387 Gooby 1.2.0
|
467
|
+
points.push(new GLatLng(36.17283,-86.79126)); // (445 of 1207.0) 2005-04-30T13:40:52Z 5748 01:35:48 18.0175361186383 18.0 00:05:25 Gooby 1.2.0
|
468
|
+
// points.push(new GLatLng(36.17304,-86.79139)); // (446 of 1207.0) 2005-04-30T13:41:01Z 5757 01:35:57 18.043639135151 Gooby 1.2.0
|
469
|
+
// points.push(new GLatLng(36.17337,-86.79158)); // (447 of 1207.0) 2005-04-30T13:41:15Z 5771 01:36:11 18.0841012362728 Gooby 1.2.0
|
470
|
+
// points.push(new GLatLng(36.17362,-86.79176)); // (448 of 1207.0) 2005-04-30T13:41:26Z 5782 01:36:22 18.1162526364324 Gooby 1.2.0
|
471
|
+
// points.push(new GLatLng(36.17403,-86.79193)); // (449 of 1207.0) 2005-04-30T13:41:42Z 5798 01:36:38 18.1643260307829 Gooby 1.2.0
|
472
|
+
// points.push(new GLatLng(36.17424,-86.7921)); // (450 of 1207.0) 2005-04-30T13:41:51Z 5807 01:36:47 18.1922191931268 Gooby 1.2.0
|
473
|
+
points.push(new GLatLng(36.17448,-86.79221)); // (451 of 1207.0) 2005-04-30T13:42:01Z 5817 01:36:57 18.2206724527263 Gooby 1.2.0
|
474
|
+
// points.push(new GLatLng(36.17467,-86.79238)); // (452 of 1207.0) 2005-04-30T13:42:10Z 5826 01:37:06 18.2467322783236 Gooby 1.2.0
|
475
|
+
// points.push(new GLatLng(36.17491,-86.79255)); // (453 of 1207.0) 2005-04-30T13:42:20Z 5836 01:37:16 18.2774719570639 Gooby 1.2.0
|
476
|
+
// points.push(new GLatLng(36.17519,-86.7927)); // (454 of 1207.0) 2005-04-30T13:42:31Z 5847 01:37:27 18.3113911999379 Gooby 1.2.0
|
477
|
+
// points.push(new GLatLng(36.17547,-86.79289)); // (455 of 1207.0) 2005-04-30T13:42:42Z 5858 01:37:38 18.3468886930862 Gooby 1.2.0
|
478
|
+
// points.push(new GLatLng(36.17568,-86.79304)); // (456 of 1207.0) 2005-04-30T13:42:51Z 5867 01:37:47 18.3738416657692 Gooby 1.2.0
|
479
|
+
points.push(new GLatLng(36.17592,-86.79324)); // (457 of 1207.0) 2005-04-30T13:43:01Z 5877 01:37:57 18.4060028747215 Gooby 1.2.0
|
480
|
+
// points.push(new GLatLng(36.17622,-86.79349)); // (458 of 1207.0) 2005-04-30T13:43:13Z 5889 01:38:09 18.4462043298701 Gooby 1.2.0
|
481
|
+
// points.push(new GLatLng(36.17643,-86.79367)); // (459 of 1207.0) 2005-04-30T13:43:22Z 5898 01:38:18 18.4745981415284 Gooby 1.2.0
|
482
|
+
// points.push(new GLatLng(36.17667,-86.79379)); // (460 of 1207.0) 2005-04-30T13:43:31Z 5907 01:38:27 18.5033751520104 Gooby 1.2.0
|
483
|
+
// points.push(new GLatLng(36.17695,-86.79399)); // (461 of 1207.0) 2005-04-30T13:43:43Z 5919 01:38:39 18.5393124210582 Gooby 1.2.0
|
484
|
+
// points.push(new GLatLng(36.17721,-86.79429)); // (462 of 1207.0) 2005-04-30T13:43:55Z 5931 01:38:51 18.578818549164 Gooby 1.2.0
|
485
|
+
points.push(new GLatLng(36.17755,-86.79418)); // (463 of 1207.0) 2005-04-30T13:44:05Z 5941 01:39:01 18.6178908200677 Gooby 1.2.0
|
486
|
+
// points.push(new GLatLng(36.1777,-86.79437)); // (464 of 1207.0) 2005-04-30T13:44:12Z 5948 01:39:08 18.6417435711453 Gooby 1.2.0
|
487
|
+
// points.push(new GLatLng(36.17785,-86.79457)); // (465 of 1207.0) 2005-04-30T13:44:20Z 5956 01:39:16 18.6662460000202 Gooby 1.2.0
|
488
|
+
// points.push(new GLatLng(36.178,-86.7947)); // (466 of 1207.0) 2005-04-30T13:44:27Z 5963 01:39:23 18.686600175859 Gooby 1.2.0
|
489
|
+
// points.push(new GLatLng(36.17828,-86.79487)); // (467 of 1207.0) 2005-04-30T13:44:39Z 5975 01:39:35 18.7212708229644 Gooby 1.2.0
|
490
|
+
// points.push(new GLatLng(36.17851,-86.79497)); // (468 of 1207.0) 2005-04-30T13:44:48Z 5984 01:39:44 18.7483738374774 Gooby 1.2.0
|
491
|
+
points.push(new GLatLng(36.17882,-86.79519)); // (469 of 1207.0) 2005-04-30T13:45:01Z 5997 01:39:57 18.7880975560184 Gooby 1.2.0
|
492
|
+
// points.push(new GLatLng(36.17935,-86.79558)); // (470 of 1207.0) 2005-04-30T13:45:24Z 6020 01:40:20 18.8566392527309 Gooby 1.2.0
|
493
|
+
// points.push(new GLatLng(36.18002,-86.79607)); // (471 of 1207.0) 2005-04-30T13:45:51Z 6047 01:40:47 18.943148081051 Gooby 1.2.0
|
494
|
+
// points.push(new GLatLng(36.18047,-86.79635)); // (472 of 1207.0) 2005-04-30T13:46:10Z 6066 01:41:06 18.9991393493758 Gooby 1.2.0
|
495
|
+
points.push(new GLatLng(36.18083,-86.79652)); // (473 of 1207.0) 2005-04-30T13:46:24Z 6080 01:41:20 19.0419765719939 19.0 00:05:32 Gooby 1.2.0
|
496
|
+
// points.push(new GLatLng(36.18107,-86.79671)); // (474 of 1207.0) 2005-04-30T13:46:34Z 6090 01:41:30 19.0736450425458 Gooby 1.2.0
|
497
|
+
// points.push(new GLatLng(36.18133,-86.79688)); // (475 of 1207.0) 2005-04-30T13:46:45Z 6101 01:41:41 19.1063332097048 Gooby 1.2.0
|
498
|
+
// points.push(new GLatLng(36.18167,-86.79712)); // (476 of 1207.0) 2005-04-30T13:46:59Z 6115 01:41:55 19.1498431854057 Gooby 1.2.0
|
499
|
+
// points.push(new GLatLng(36.18197,-86.79736)); // (477 of 1207.0) 2005-04-30T13:47:11Z 6127 01:42:07 19.1895498855731 Gooby 1.2.0
|
500
|
+
// points.push(new GLatLng(36.18221,-86.79751)); // (478 of 1207.0) 2005-04-30T13:47:21Z 6137 01:42:17 19.2194384458025 Gooby 1.2.0
|
501
|
+
points.push(new GLatLng(36.18246,-86.79766)); // (479 of 1207.0) 2005-04-30T13:47:31Z 6147 01:42:27 19.2503239222781 Gooby 1.2.0
|
502
|
+
// points.push(new GLatLng(36.18274,-86.79783)); // (480 of 1207.0) 2005-04-30T13:47:42Z 6158 01:42:38 19.2849943094553 Gooby 1.2.0
|
503
|
+
// points.push(new GLatLng(36.18296,-86.79787)); // (481 of 1207.0) 2005-04-30T13:47:50Z 6166 01:42:46 19.3097180700852 Gooby 1.2.0
|
504
|
+
// points.push(new GLatLng(36.18324,-86.79791)); // (482 of 1207.0) 2005-04-30T13:48:00Z 6176 01:42:56 19.3410575784862 Gooby 1.2.0
|
505
|
+
// points.push(new GLatLng(36.18345,-86.79802)); // (483 of 1207.0) 2005-04-30T13:48:09Z 6185 01:43:05 19.3664083497327 Gooby 1.2.0
|
506
|
+
// points.push(new GLatLng(36.18366,-86.79802)); // (484 of 1207.0) 2005-04-30T13:48:17Z 6193 01:43:13 19.3897580290899 Gooby 1.2.0
|
507
|
+
points.push(new GLatLng(36.1839,-86.79806)); // (485 of 1207.0) 2005-04-30T13:48:25Z 6201 01:43:21 19.4166839054505 Gooby 1.2.0
|
508
|
+
// points.push(new GLatLng(36.18414,-86.79809)); // (486 of 1207.0) 2005-04-30T13:48:34Z 6210 01:43:30 19.4435048190011 Gooby 1.2.0
|
509
|
+
// points.push(new GLatLng(36.18439,-86.79813)); // (487 of 1207.0) 2005-04-30T13:48:43Z 6219 01:43:39 19.4715330267654 Gooby 1.2.0
|
510
|
+
// points.push(new GLatLng(36.18465,-86.79817)); // (488 of 1207.0) 2005-04-30T13:48:52Z 6228 01:43:48 19.5006645442681 Gooby 1.2.0
|
511
|
+
// points.push(new GLatLng(36.18487,-86.79826)); // (489 of 1207.0) 2005-04-30T13:49:00Z 6236 01:43:56 19.5264252534813 Gooby 1.2.0
|
512
|
+
// points.push(new GLatLng(36.1851,-86.7983)); // (490 of 1207.0) 2005-04-30T13:49:09Z 6245 01:44:05 19.5522495530893 Gooby 1.2.0
|
513
|
+
points.push(new GLatLng(36.1853,-86.79834)); // (491 of 1207.0) 2005-04-30T13:49:16Z 6252 01:44:12 19.5747755573035 Gooby 1.2.0
|
514
|
+
// points.push(new GLatLng(36.18555,-86.79841)); // (492 of 1207.0) 2005-04-30T13:49:25Z 6261 01:44:21 19.6032740725123 Gooby 1.2.0
|
515
|
+
// points.push(new GLatLng(36.18577,-86.79843)); // (493 of 1207.0) 2005-04-30T13:49:33Z 6269 01:44:29 19.6278016823294 Gooby 1.2.0
|
516
|
+
// points.push(new GLatLng(36.18596,-86.79845)); // (494 of 1207.0) 2005-04-30T13:49:40Z 6276 01:44:36 19.6490039886757 Gooby 1.2.0
|
517
|
+
// points.push(new GLatLng(36.18635,-86.79854)); // (495 of 1207.0) 2005-04-30T13:49:54Z 6290 01:44:50 19.6931137954921 Gooby 1.2.0
|
518
|
+
// points.push(new GLatLng(36.18686,-86.79856)); // (496 of 1207.0) 2005-04-30T13:50:12Z 6308 01:45:08 19.7498488668456 Gooby 1.2.0
|
519
|
+
points.push(new GLatLng(36.18708,-86.79858)); // (497 of 1207.0) 2005-04-30T13:50:20Z 6316 01:45:16 19.774376292954 Gooby 1.2.0
|
520
|
+
// points.push(new GLatLng(36.18748,-86.79862)); // (498 of 1207.0) 2005-04-30T13:50:35Z 6331 01:45:31 19.8189966649287 Gooby 1.2.0
|
521
|
+
// points.push(new GLatLng(36.18776,-86.79869)); // (499 of 1207.0) 2005-04-30T13:50:45Z 6341 01:45:41 19.8507572017906 Gooby 1.2.0
|
522
|
+
// points.push(new GLatLng(36.18785,-86.79873)); // (500 of 1207.0) 2005-04-30T13:50:48Z 6344 01:45:44 19.8613885959822 Gooby 1.2.0
|
523
|
+
// points.push(new GLatLng(36.18781,-86.79894)); // (501 of 1207.0) 2005-04-30T13:50:54Z 6350 01:45:50 19.880751672732 Gooby 1.2.0
|
524
|
+
// points.push(new GLatLng(36.1877,-86.79935)); // (502 of 1207.0) 2005-04-30T13:51:06Z 6362 01:46:02 19.9195244558946 Gooby 1.2.0
|
525
|
+
points.push(new GLatLng(36.18757,-86.7998)); // (503 of 1207.0) 2005-04-30T13:51:20Z 6376 01:46:16 19.9624163409115 Gooby 1.2.0
|
526
|
+
// points.push(new GLatLng(36.18748,-86.80017)); // (504 of 1207.0) 2005-04-30T13:51:31Z 6387 01:46:27 19.9970953046892 Gooby 1.2.0
|
527
|
+
points.push(new GLatLng(36.18738,-86.80068)); // (505 of 1207.0) 2005-04-30T13:51:47Z 6403 01:46:43 20.0441940556088 20.0 00:05:23 Gooby 1.2.0
|
528
|
+
// points.push(new GLatLng(36.18736,-86.80079)); // (506 of 1207.0) 2005-04-30T13:51:53Z 6409 01:46:49 20.0543129768461 Gooby 1.2.0
|
529
|
+
// points.push(new GLatLng(36.18729,-86.80111)); // (507 of 1207.0) 2005-04-30T13:52:04Z 6420 01:47:00 20.0840658489265 Gooby 1.2.0
|
530
|
+
// points.push(new GLatLng(36.18721,-86.80156)); // (508 of 1207.0) 2005-04-30T13:52:18Z 6434 01:47:14 20.1254169821263 Gooby 1.2.0
|
531
|
+
// points.push(new GLatLng(36.18712,-86.80193)); // (509 of 1207.0) 2005-04-30T13:52:28Z 6444 01:47:24 20.1600962057679 Gooby 1.2.0
|
532
|
+
// points.push(new GLatLng(36.18703,-86.80233)); // (510 of 1207.0) 2005-04-30T13:52:39Z 6455 01:47:35 20.197361082368 Gooby 1.2.0
|
533
|
+
points.push(new GLatLng(36.18695,-86.80281)); // (511 of 1207.0) 2005-04-30T13:52:52Z 6468 01:47:48 20.2413452671784 Gooby 1.2.0
|
534
|
+
// points.push(new GLatLng(36.18682,-86.8033)); // (512 of 1207.0) 2005-04-30T13:53:06Z 6482 01:48:02 20.2876329306829 Gooby 1.2.0
|
535
|
+
// points.push(new GLatLng(36.18671,-86.80375)); // (513 of 1207.0) 2005-04-30T13:53:19Z 6495 01:48:15 20.3298279051396 Gooby 1.2.0
|
536
|
+
// points.push(new GLatLng(36.18671,-86.80405)); // (514 of 1207.0) 2005-04-30T13:53:28Z 6504 01:48:24 20.3567500996495 Gooby 1.2.0
|
537
|
+
// points.push(new GLatLng(36.18675,-86.80409)); // (515 of 1207.0) 2005-04-30T13:53:30Z 6506 01:48:26 20.3624648980899 Gooby 1.2.0
|
538
|
+
// points.push(new GLatLng(36.18699,-86.80412)); // (516 of 1207.0) 2005-04-30T13:53:37Z 6513 01:48:33 20.3892858116405 Gooby 1.2.0
|
539
|
+
points.push(new GLatLng(36.18731,-86.80414)); // (517 of 1207.0) 2005-04-30T13:53:48Z 6524 01:48:44 20.4249117857217 Gooby 1.2.0
|
540
|
+
// points.push(new GLatLng(36.18776,-86.80416)); // (518 of 1207.0) 2005-04-30T13:54:03Z 6539 01:48:59 20.4749792645882 Gooby 1.2.0
|
541
|
+
// points.push(new GLatLng(36.18824,-86.80418)); // (519 of 1207.0) 2005-04-30T13:54:19Z 6555 01:49:15 20.5283804796096 Gooby 1.2.0
|
542
|
+
// points.push(new GLatLng(36.18851,-86.80424)); // (520 of 1207.0) 2005-04-30T13:54:29Z 6565 01:49:25 20.5588805872761 Gooby 1.2.0
|
543
|
+
// points.push(new GLatLng(36.18879,-86.80439)); // (521 of 1207.0) 2005-04-30T13:54:40Z 6576 01:49:36 20.5927989002389 Gooby 1.2.0
|
544
|
+
// points.push(new GLatLng(36.18907,-86.8047)); // (522 of 1207.0) 2005-04-30T13:54:53Z 6589 01:49:49 20.6345500787606 Gooby 1.2.0
|
545
|
+
points.push(new GLatLng(36.18929,-86.80506)); // (523 of 1207.0) 2005-04-30T13:55:06Z 6602 01:50:02 20.6750720480988 Gooby 1.2.0
|
546
|
+
// points.push(new GLatLng(36.18933,-86.80545)); // (524 of 1207.0) 2005-04-30T13:55:17Z 6613 01:50:13 20.7103513014906 Gooby 1.2.0
|
547
|
+
// points.push(new GLatLng(36.18946,-86.80585)); // (525 of 1207.0) 2005-04-30T13:55:29Z 6625 01:50:25 20.7490474241547 Gooby 1.2.0
|
548
|
+
// points.push(new GLatLng(36.18972,-86.80611)); // (526 of 1207.0) 2005-04-30T13:55:41Z 6637 01:50:37 20.7861972529107 Gooby 1.2.0
|
549
|
+
// points.push(new GLatLng(36.18982,-86.80615)); // (527 of 1207.0) 2005-04-30T13:55:45Z 6641 01:50:41 20.7978810625156 Gooby 1.2.0
|
550
|
+
// points.push(new GLatLng(36.18997,-86.8062)); // (528 of 1207.0) 2005-04-30T13:55:50Z 6646 01:50:46 20.8151521951718 Gooby 1.2.0
|
551
|
+
points.push(new GLatLng(36.19017,-86.80624)); // (529 of 1207.0) 2005-04-30T13:55:56Z 6652 01:50:52 20.8376779993531 Gooby 1.2.0
|
552
|
+
// points.push(new GLatLng(36.19062,-86.80628)); // (530 of 1207.0) 2005-04-30T13:56:11Z 6667 01:51:07 20.8878418622066 Gooby 1.2.0
|
553
|
+
// points.push(new GLatLng(36.19096,-86.8063)); // (531 of 1207.0) 2005-04-30T13:56:23Z 6679 01:51:19 20.9256891146415 Gooby 1.2.0
|
554
|
+
// points.push(new GLatLng(36.19135,-86.80639)); // (532 of 1207.0) 2005-04-30T13:56:36Z 6692 01:51:32 20.9697987171526 Gooby 1.2.0
|
555
|
+
// points.push(new GLatLng(36.19156,-86.80643)); // (533 of 1207.0) 2005-04-30T13:56:44Z 6700 01:51:40 20.9934229308808 Gooby 1.2.0
|
556
|
+
points.push(new GLatLng(36.19188,-86.80652)); // (534 of 1207.0) 2005-04-30T13:56:57Z 6713 01:51:53 21.0299085787628 21.0 00:05:10 Gooby 1.2.0
|
557
|
+
// points.push(new GLatLng(36.19248,-86.80658)); // (535 of 1207.0) 2005-04-30T13:57:17Z 6733 01:52:13 21.0968392545391 Gooby 1.2.0
|
558
|
+
// points.push(new GLatLng(36.19259,-86.80663)); // (536 of 1207.0) 2005-04-30T13:57:21Z 6737 01:52:17 21.1098672652238 Gooby 1.2.0
|
559
|
+
// points.push(new GLatLng(36.19283,-86.80673)); // (537 of 1207.0) 2005-04-30T13:57:30Z 6746 01:52:26 21.1380210696563 Gooby 1.2.0
|
560
|
+
// points.push(new GLatLng(36.19315,-86.80682)); // (538 of 1207.0) 2005-04-30T13:57:41Z 6757 01:52:37 21.1745067175383 Gooby 1.2.0
|
561
|
+
// points.push(new GLatLng(36.19341,-86.80693)); // (539 of 1207.0) 2005-04-30T13:57:51Z 6767 01:52:47 21.2050548012235 Gooby 1.2.0
|
562
|
+
points.push(new GLatLng(36.19364,-86.8071)); // (540 of 1207.0) 2005-04-30T13:58:00Z 6776 01:52:56 21.2348326512336 Gooby 1.2.0
|
563
|
+
// points.push(new GLatLng(36.19375,-86.80718)); // (541 of 1207.0) 2005-04-30T13:58:05Z 6781 01:53:01 21.2490145525698 Gooby 1.2.0
|
564
|
+
// points.push(new GLatLng(36.19377,-86.80742)); // (542 of 1207.0) 2005-04-30T13:58:12Z 6788 01:53:08 21.2706650036764 Gooby 1.2.0
|
565
|
+
// points.push(new GLatLng(36.19379,-86.80787)); // (543 of 1207.0) 2005-04-30T13:58:24Z 6800 01:53:20 21.3111059405709 Gooby 1.2.0
|
566
|
+
// points.push(new GLatLng(36.19377,-86.80836)); // (544 of 1207.0) 2005-04-30T13:58:38Z 6814 01:53:34 21.3551311863138 Gooby 1.2.0
|
567
|
+
// points.push(new GLatLng(36.19375,-86.80884)); // (545 of 1207.0) 2005-04-30T13:58:52Z 6828 01:53:48 21.3982602555621 Gooby 1.2.0
|
568
|
+
points.push(new GLatLng(36.19375,-86.80933)); // (546 of 1207.0) 2005-04-30T13:59:06Z 6842 01:54:02 21.4422292760263 Gooby 1.2.0
|
569
|
+
// points.push(new GLatLng(36.19371,-86.80984)); // (547 of 1207.0) 2005-04-30T13:59:21Z 6857 01:54:17 21.4882084929684 Gooby 1.2.0
|
570
|
+
// points.push(new GLatLng(36.19369,-86.81027)); // (548 of 1207.0) 2005-04-30T13:59:35Z 6871 01:54:31 21.5268576603109 Gooby 1.2.0
|
571
|
+
// points.push(new GLatLng(36.19366,-86.81077)); // (549 of 1207.0) 2005-04-30T13:59:50Z 6886 01:54:46 21.5718480166973 Gooby 1.2.0
|
572
|
+
// points.push(new GLatLng(36.19369,-86.81133)); // (550 of 1207.0) 2005-04-30T14:00:06Z 6902 01:55:02 21.6222091047745 Gooby 1.2.0
|
573
|
+
// points.push(new GLatLng(36.19366,-86.81178)); // (551 of 1207.0) 2005-04-30T14:00:20Z 6916 01:55:16 21.6627266259882 Gooby 1.2.0
|
574
|
+
points.push(new GLatLng(36.1936,-86.81227)); // (552 of 1207.0) 2005-04-30T14:00:35Z 6931 01:55:31 21.7071991150103 Gooby 1.2.0
|
575
|
+
// points.push(new GLatLng(36.19354,-86.81257)); // (553 of 1207.0) 2005-04-30T14:00:45Z 6941 01:55:41 21.7349331892715 Gooby 1.2.0
|
576
|
+
// points.push(new GLatLng(36.19345,-86.81281)); // (554 of 1207.0) 2005-04-30T14:00:53Z 6949 01:55:49 21.7586806764844 Gooby 1.2.0
|
577
|
+
// points.push(new GLatLng(36.19334,-86.81317)); // (555 of 1207.0) 2005-04-30T14:01:04Z 6960 01:56:00 21.7932224200064 Gooby 1.2.0
|
578
|
+
// points.push(new GLatLng(36.19323,-86.81349)); // (556 of 1207.0) 2005-04-30T14:01:14Z 6970 01:56:10 21.8244332708516 Gooby 1.2.0
|
579
|
+
// points.push(new GLatLng(36.19311,-86.81388)); // (557 of 1207.0) 2005-04-30T14:01:27Z 6983 01:56:23 21.8618865421069 Gooby 1.2.0
|
580
|
+
points.push(new GLatLng(36.19302,-86.81414)); // (558 of 1207.0) 2005-04-30T14:01:35Z 6991 01:56:31 21.887273014555 Gooby 1.2.0
|
581
|
+
// points.push(new GLatLng(36.19291,-86.81457)); // (559 of 1207.0) 2005-04-30T14:01:48Z 7004 01:56:44 21.9277505919708 Gooby 1.2.0
|
582
|
+
// points.push(new GLatLng(36.19281,-86.81484)); // (560 of 1207.0) 2005-04-30T14:01:57Z 7013 01:56:53 21.9544083851857 Gooby 1.2.0
|
583
|
+
// points.push(new GLatLng(36.19272,-86.8151)); // (561 of 1207.0) 2005-04-30T14:02:05Z 7021 01:57:01 21.9797948576338 Gooby 1.2.0
|
584
|
+
points.push(new GLatLng(36.19263,-86.81542)); // (562 of 1207.0) 2005-04-30T14:02:15Z 7031 01:57:11 22.0102035282447 22.0 00:05:18 Gooby 1.2.0
|
585
|
+
// points.push(new GLatLng(36.19261,-86.81568)); // (563 of 1207.0) 2005-04-30T14:02:22Z 7038 01:57:18 22.0336402703261 Gooby 1.2.0
|
586
|
+
// points.push(new GLatLng(36.19266,-86.81577)); // (564 of 1207.0) 2005-04-30T14:02:25Z 7041 01:57:21 22.0434443676256 Gooby 1.2.0
|
587
|
+
// points.push(new GLatLng(36.19285,-86.81594)); // (565 of 1207.0) 2005-04-30T14:02:33Z 7049 01:57:29 22.0695022911785 Gooby 1.2.0
|
588
|
+
// points.push(new GLatLng(36.19306,-86.81607)); // (566 of 1207.0) 2005-04-30T14:02:41Z 7057 01:57:37 22.0956039266888 Gooby 1.2.0
|
589
|
+
// points.push(new GLatLng(36.19323,-86.81626)); // (567 of 1207.0) 2005-04-30T14:02:49Z 7065 01:57:45 22.1210591732733 Gooby 1.2.0
|
590
|
+
points.push(new GLatLng(36.19339,-86.8165)); // (568 of 1207.0) 2005-04-30T14:02:58Z 7074 01:57:54 22.1489930145797 Gooby 1.2.0
|
591
|
+
// points.push(new GLatLng(36.19366,-86.81682)); // (569 of 1207.0) 2005-04-30T14:03:12Z 7088 01:58:08 22.1905358129589 Gooby 1.2.0
|
592
|
+
// points.push(new GLatLng(36.19388,-86.81708)); // (570 of 1207.0) 2005-04-30T14:03:23Z 7099 01:58:19 22.2243396850558 Gooby 1.2.0
|
593
|
+
// points.push(new GLatLng(36.19403,-86.81723)); // (571 of 1207.0) 2005-04-30T14:03:30Z 7106 01:58:26 22.2457717560802 Gooby 1.2.0
|
594
|
+
// points.push(new GLatLng(36.19426,-86.81742)); // (572 of 1207.0) 2005-04-30T14:03:40Z 7116 01:58:36 22.2765073302156 Gooby 1.2.0
|
595
|
+
// points.push(new GLatLng(36.1945,-86.81755)); // (573 of 1207.0) 2005-04-30T14:03:49Z 7125 01:58:45 22.305631112934 Gooby 1.2.0
|
596
|
+
points.push(new GLatLng(36.19476,-86.81766)); // (574 of 1207.0) 2005-04-30T14:03:59Z 7135 01:58:55 22.3361789016125 Gooby 1.2.0
|
597
|
+
// points.push(new GLatLng(36.19497,-86.81774)); // (575 of 1207.0) 2005-04-30T14:04:07Z 7143 01:59:03 22.3606072920557 Gooby 1.2.0
|
598
|
+
// points.push(new GLatLng(36.1951,-86.81787)); // (576 of 1207.0) 2005-04-30T14:04:13Z 7149 01:59:09 22.3791822064336 Gooby 1.2.0
|
599
|
+
// points.push(new GLatLng(36.1951,-86.818)); // (577 of 1207.0) 2005-04-30T14:04:17Z 7153 01:59:13 22.3908482624115 Gooby 1.2.0
|
600
|
+
// points.push(new GLatLng(36.19502,-86.81834)); // (578 of 1207.0) 2005-04-30T14:04:27Z 7163 01:59:23 22.4226272372443 Gooby 1.2.0
|
601
|
+
// points.push(new GLatLng(36.19489,-86.8186)); // (579 of 1207.0) 2005-04-30T14:04:35Z 7171 01:59:31 22.4500723993642 Gooby 1.2.0
|
602
|
+
points.push(new GLatLng(36.19474,-86.81884)); // (580 of 1207.0) 2005-04-30T14:04:44Z 7180 01:59:40 22.47731106827 Gooby 1.2.0
|
603
|
+
// points.push(new GLatLng(36.19454,-86.81909)); // (581 of 1207.0) 2005-04-30T14:04:54Z 7190 01:59:50 22.5088983327329 Gooby 1.2.0
|
604
|
+
// points.push(new GLatLng(36.19433,-86.81937)); // (582 of 1207.0) 2005-04-30T14:05:05Z 7201 02:00:01 22.5431981601168 Gooby 1.2.0
|
605
|
+
// points.push(new GLatLng(36.19409,-86.81967)); // (583 of 1207.0) 2005-04-30T14:05:17Z 7213 02:00:13 22.581102991592 Gooby 1.2.0
|
606
|
+
// points.push(new GLatLng(36.19388,-86.81997)); // (584 of 1207.0) 2005-04-30T14:05:28Z 7224 02:00:24 22.6167385767471 Gooby 1.2.0
|
607
|
+
// points.push(new GLatLng(36.19377,-86.82021)); // (585 of 1207.0) 2005-04-30T14:05:36Z 7232 02:00:32 22.641505129251 Gooby 1.2.0
|
608
|
+
points.push(new GLatLng(36.19364,-86.82053)); // (586 of 1207.0) 2005-04-30T14:05:46Z 7242 02:00:42 22.6736526050555 Gooby 1.2.0
|
609
|
+
// points.push(new GLatLng(36.19351,-86.82081)); // (587 of 1207.0) 2005-04-30T14:05:56Z 7252 02:00:52 22.7026389850709 Gooby 1.2.0
|
610
|
+
// points.push(new GLatLng(36.19347,-86.82096)); // (588 of 1207.0) 2005-04-30T14:06:01Z 7257 02:00:57 22.716814530515 Gooby 1.2.0
|
611
|
+
// points.push(new GLatLng(36.19345,-86.82102)); // (589 of 1207.0) 2005-04-30T14:06:04Z 7260 02:01:00 22.7226402152821 Gooby 1.2.0
|
612
|
+
// points.push(new GLatLng(36.19341,-86.82115)); // (590 of 1207.0) 2005-04-30T14:06:12Z 7268 02:01:08 22.7351249598506 Gooby 1.2.0
|
613
|
+
// points.push(new GLatLng(36.19339,-86.82137)); // (591 of 1207.0) 2005-04-30T14:06:20Z 7276 02:01:16 22.7549911290512 Gooby 1.2.0
|
614
|
+
points.push(new GLatLng(36.19332,-86.82186)); // (592 of 1207.0) 2005-04-30T14:06:34Z 7290 02:01:30 22.7996439049668 Gooby 1.2.0
|
615
|
+
// points.push(new GLatLng(36.19321,-86.82238)); // (593 of 1207.0) 2005-04-30T14:06:50Z 7306 02:01:46 22.8478816084958 Gooby 1.2.0
|
616
|
+
// points.push(new GLatLng(36.19313,-86.82291)); // (594 of 1207.0) 2005-04-30T14:07:06Z 7322 02:02:02 22.8962649996693 Gooby 1.2.0
|
617
|
+
// points.push(new GLatLng(36.19304,-86.82332)); // (595 of 1207.0) 2005-04-30T14:07:18Z 7334 02:02:14 22.9343924240703 Gooby 1.2.0
|
618
|
+
// points.push(new GLatLng(36.19289,-86.82362)); // (596 of 1207.0) 2005-04-30T14:07:28Z 7344 02:02:24 22.9660603254805 Gooby 1.2.0
|
619
|
+
points.push(new GLatLng(36.19266,-86.82409)); // (597 of 1207.0) 2005-04-30T14:07:44Z 7360 02:02:40 23.0153830297525 23.0 00:05:29 Gooby 1.2.0
|
620
|
+
// points.push(new GLatLng(36.19251,-86.82456)); // (598 of 1207.0) 2005-04-30T14:07:59Z 7375 02:02:55 23.0607360807096 Gooby 1.2.0
|
621
|
+
// points.push(new GLatLng(36.19251,-86.82495)); // (599 of 1207.0) 2005-04-30T14:08:11Z 7387 02:03:07 23.0957324461337 Gooby 1.2.0
|
622
|
+
// points.push(new GLatLng(36.19253,-86.82502)); // (600 of 1207.0) 2005-04-30T14:08:13Z 7389 02:03:09 23.1023958801903 Gooby 1.2.0
|
623
|
+
// points.push(new GLatLng(36.19266,-86.82497)); // (601 of 1207.0) 2005-04-30T14:08:18Z 7394 02:03:14 23.11753070892 Gooby 1.2.0
|
624
|
+
// points.push(new GLatLng(36.19272,-86.82495)); // (602 of 1207.0) 2005-04-30T14:08:20Z 7396 02:03:16 23.1244404663256 Gooby 1.2.0
|
625
|
+
points.push(new GLatLng(36.19306,-86.82474)); // (603 of 1207.0) 2005-04-30T14:08:33Z 7409 02:03:29 23.1666812280411 Gooby 1.2.0
|
626
|
+
// points.push(new GLatLng(36.19339,-86.82452)); // (604 of 1207.0) 2005-04-30T14:08:46Z 7422 02:03:42 23.2083474925591 Gooby 1.2.0
|
627
|
+
// points.push(new GLatLng(36.19371,-86.82422)); // (605 of 1207.0) 2005-04-30T14:09:02Z 7438 02:03:58 23.252964329971 Gooby 1.2.0
|
628
|
+
// points.push(new GLatLng(36.19399,-86.82392)); // (606 of 1207.0) 2005-04-30T14:09:16Z 7452 02:04:12 23.2941218106786 Gooby 1.2.0
|
629
|
+
// points.push(new GLatLng(36.19431,-86.82358)); // (607 of 1207.0) 2005-04-30T14:09:31Z 7467 02:04:27 23.3409916417804 Gooby 1.2.0
|
630
|
+
// points.push(new GLatLng(36.19459,-86.82328)); // (608 of 1207.0) 2005-04-30T14:09:45Z 7481 02:04:41 23.3821489035273 Gooby 1.2.0
|
631
|
+
points.push(new GLatLng(36.19489,-86.82293)); // (609 of 1207.0) 2005-04-30T14:10:00Z 7496 02:04:56 23.4279639729709 Gooby 1.2.0
|
632
|
+
// points.push(new GLatLng(36.19514,-86.82263)); // (610 of 1207.0) 2005-04-30T14:10:13Z 7509 02:05:09 23.4666595134118 Gooby 1.2.0
|
633
|
+
// points.push(new GLatLng(36.1954,-86.82231)); // (611 of 1207.0) 2005-04-30T14:10:27Z 7523 02:05:23 23.5074054815943 Gooby 1.2.0
|
634
|
+
// points.push(new GLatLng(36.19564,-86.82203)); // (612 of 1207.0) 2005-04-30T14:10:39Z 7535 02:05:35 23.5440573502831 Gooby 1.2.0
|
635
|
+
// points.push(new GLatLng(36.19583,-86.8218)); // (613 of 1207.0) 2005-04-30T14:10:50Z 7546 02:05:46 23.5735910313703 Gooby 1.2.0
|
636
|
+
// points.push(new GLatLng(36.19609,-86.8215)); // (614 of 1207.0) 2005-04-30T14:11:02Z 7558 02:05:58 23.613092711031 Gooby 1.2.0
|
637
|
+
points.push(new GLatLng(36.1963,-86.82124)); // (615 of 1207.0) 2005-04-30T14:11:13Z 7569 02:06:09 23.6461002229656 Gooby 1.2.0
|
638
|
+
// points.push(new GLatLng(36.19656,-86.82092)); // (616 of 1207.0) 2005-04-30T14:11:26Z 7582 02:06:22 23.6868459699761 Gooby 1.2.0
|
639
|
+
// points.push(new GLatLng(36.19678,-86.82062)); // (617 of 1207.0) 2005-04-30T14:11:38Z 7594 02:06:34 23.7232189367487 Gooby 1.2.0
|
640
|
+
// points.push(new GLatLng(36.19703,-86.82027)); // (618 of 1207.0) 2005-04-30T14:11:52Z 7608 02:06:48 23.7651592002829 Gooby 1.2.0
|
641
|
+
// points.push(new GLatLng(36.19723,-86.81997)); // (619 of 1207.0) 2005-04-30T14:12:04Z 7620 02:07:00 23.8000753888804 Gooby 1.2.0
|
642
|
+
// points.push(new GLatLng(36.19746,-86.81965)); // (620 of 1207.0) 2005-04-30T14:12:16Z 7632 02:07:12 23.8385260849187 Gooby 1.2.0
|
643
|
+
points.push(new GLatLng(36.19766,-86.81931)); // (621 of 1207.0) 2005-04-30T14:12:29Z 7645 02:07:25 23.8762784502665 Gooby 1.2.0
|
644
|
+
// points.push(new GLatLng(36.19785,-86.81901)); // (622 of 1207.0) 2005-04-30T14:12:41Z 7657 02:07:37 23.9104969955193 Gooby 1.2.0
|
645
|
+
// points.push(new GLatLng(36.19806,-86.81869)); // (623 of 1207.0) 2005-04-30T14:12:53Z 7669 02:07:49 23.9475056163303 Gooby 1.2.0
|
646
|
+
// points.push(new GLatLng(36.19823,-86.81841)); // (624 of 1207.0) 2005-04-30T14:13:03Z 7679 02:07:59 23.9789460379698 Gooby 1.2.0
|
647
|
+
points.push(new GLatLng(36.19834,-86.81815)); // (625 of 1207.0) 2005-04-30T14:13:12Z 7688 02:08:08 24.005286878173 24.0 00:05:28 Gooby 1.2.0
|
648
|
+
// points.push(new GLatLng(36.19847,-86.81785)); // (626 of 1207.0) 2005-04-30T14:13:22Z 7698 02:08:18 24.0358405664429 Gooby 1.2.0
|
649
|
+
// points.push(new GLatLng(36.19858,-86.81757)); // (627 of 1207.0) 2005-04-30T14:13:31Z 7707 02:08:27 24.0637831169651 Gooby 1.2.0
|
650
|
+
// points.push(new GLatLng(36.19875,-86.81716)); // (628 of 1207.0) 2005-04-30T14:13:45Z 7721 02:08:41 24.1051430755753 Gooby 1.2.0
|
651
|
+
// points.push(new GLatLng(36.19892,-86.81693)); // (629 of 1207.0) 2005-04-30T14:13:54Z 7730 02:08:50 24.1331284874908 Gooby 1.2.0
|
652
|
+
// points.push(new GLatLng(36.19914,-86.81663)); // (630 of 1207.0) 2005-04-30T14:14:05Z 7741 02:09:01 24.1695009587358 Gooby 1.2.0
|
653
|
+
points.push(new GLatLng(36.19926,-86.81641)); // (631 of 1207.0) 2005-04-30T14:14:13Z 7749 02:09:09 24.1933272483309 Gooby 1.2.0
|
654
|
+
// points.push(new GLatLng(36.19939,-86.81617)); // (632 of 1207.0) 2005-04-30T14:14:21Z 7757 02:09:17 24.2192629771648 Gooby 1.2.0
|
655
|
+
// points.push(new GLatLng(36.19952,-86.81594)); // (633 of 1207.0) 2005-04-30T14:14:29Z 7765 02:09:25 24.244458458645 Gooby 1.2.0
|
656
|
+
// points.push(new GLatLng(36.19965,-86.81566)); // (634 of 1207.0) 2005-04-30T14:14:38Z 7774 02:09:34 24.2734431286641 Gooby 1.2.0
|
657
|
+
// points.push(new GLatLng(36.19976,-86.81527)); // (635 of 1207.0) 2005-04-30T14:14:51Z 7787 02:09:47 24.3105120899222 Gooby 1.2.0
|
658
|
+
// points.push(new GLatLng(36.19982,-86.8151)); // (636 of 1207.0) 2005-04-30T14:14:56Z 7792 02:09:52 24.3271604610685 Gooby 1.2.0
|
659
|
+
points.push(new GLatLng(36.19995,-86.81482)); // (637 of 1207.0) 2005-04-30T14:15:05Z 7801 02:10:01 24.3561451310876 Gooby 1.2.0
|
660
|
+
// points.push(new GLatLng(36.20012,-86.8145)); // (638 of 1207.0) 2005-04-30T14:15:16Z 7812 02:10:12 24.3905205435285 Gooby 1.2.0
|
661
|
+
// points.push(new GLatLng(36.20027,-86.81412)); // (639 of 1207.0) 2005-04-30T14:15:29Z 7825 02:10:25 24.428476694092 Gooby 1.2.0
|
662
|
+
// points.push(new GLatLng(36.2004,-86.81381)); // (640 of 1207.0) 2005-04-30T14:15:39Z 7835 02:10:35 24.4598231030619 Gooby 1.2.0
|
663
|
+
// points.push(new GLatLng(36.20055,-86.81349)); // (641 of 1207.0) 2005-04-30T14:15:49Z 7845 02:10:45 24.4930276960221 Gooby 1.2.0
|
664
|
+
// points.push(new GLatLng(36.20062,-86.81311)); // (642 of 1207.0) 2005-04-30T14:16:01Z 7857 02:10:57 24.5280002338458 Gooby 1.2.0
|
665
|
+
points.push(new GLatLng(36.20066,-86.81274)); // (643 of 1207.0) 2005-04-30T14:16:12Z 7868 02:11:08 24.5614950458876 Gooby 1.2.0
|
666
|
+
// points.push(new GLatLng(36.20072,-86.81244)); // (644 of 1207.0) 2005-04-30T14:16:21Z 7877 02:11:17 24.5892268454922 Gooby 1.2.0
|
667
|
+
// points.push(new GLatLng(36.20079,-86.81216)); // (645 of 1207.0) 2005-04-30T14:16:30Z 7886 02:11:26 24.6155276266823 Gooby 1.2.0
|
668
|
+
// points.push(new GLatLng(36.20081,-86.81195)); // (646 of 1207.0) 2005-04-30T14:16:37Z 7893 02:11:33 24.6345004778344 Gooby 1.2.0
|
669
|
+
// points.push(new GLatLng(36.20085,-86.81169)); // (647 of 1207.0) 2005-04-30T14:16:45Z 7901 02:11:41 24.6582491034787 Gooby 1.2.0
|
670
|
+
// points.push(new GLatLng(36.20087,-86.81143)); // (648 of 1207.0) 2005-04-30T14:16:53Z 7909 02:11:49 24.6816829614994 Gooby 1.2.0
|
671
|
+
points.push(new GLatLng(36.20092,-86.81103)); // (649 of 1207.0) 2005-04-30T14:17:06Z 7922 02:12:02 24.7180008834291 Gooby 1.2.0
|
672
|
+
// points.push(new GLatLng(36.20105,-86.81062)); // (650 of 1207.0) 2005-04-30T14:17:19Z 7935 02:12:15 24.7575258263399 Gooby 1.2.0
|
673
|
+
// points.push(new GLatLng(36.20111,-86.81023)); // (651 of 1207.0) 2005-04-30T14:17:31Z 7947 02:12:27 24.7931487648064 Gooby 1.2.0
|
674
|
+
// points.push(new GLatLng(36.2012,-86.80989)); // (652 of 1207.0) 2005-04-30T14:17:42Z 7958 02:12:38 24.8252544445407 Gooby 1.2.0
|
675
|
+
// points.push(new GLatLng(36.20128,-86.80946)); // (653 of 1207.0) 2005-04-30T14:17:55Z 7971 02:12:51 24.8648478433607 Gooby 1.2.0
|
676
|
+
// points.push(new GLatLng(36.20128,-86.80914)); // (654 of 1207.0) 2005-04-30T14:18:04Z 7980 02:13:00 24.8935594854854 Gooby 1.2.0
|
677
|
+
points.push(new GLatLng(36.2013,-86.80877)); // (655 of 1207.0) 2005-04-30T14:18:15Z 7991 02:13:11 24.9268317247189 Gooby 1.2.0
|
678
|
+
// points.push(new GLatLng(36.20135,-86.80843)); // (656 of 1207.0) 2005-04-30T14:18:26Z 8002 02:13:22 24.9578402342762 Gooby 1.2.0
|
679
|
+
// points.push(new GLatLng(36.20137,-86.80804)); // (657 of 1207.0) 2005-04-30T14:18:37Z 8013 02:13:33 24.9929032308379 Gooby 1.2.0
|
680
|
+
points.push(new GLatLng(36.20139,-86.80781)); // (658 of 1207.0) 2005-04-30T14:18:44Z 8020 02:13:40 25.0136592223439 25.0 00:05:32 Gooby 1.2.0
|
681
|
+
// points.push(new GLatLng(36.20143,-86.80746)); // (659 of 1207.0) 2005-04-30T14:18:54Z 8030 02:13:50 25.0453760326174 Gooby 1.2.0
|
682
|
+
// points.push(new GLatLng(36.20143,-86.80712)); // (660 of 1207.0) 2005-04-30T14:19:04Z 8040 02:14:00 25.0758821968019 Gooby 1.2.0
|
683
|
+
// points.push(new GLatLng(36.2015,-86.80643)); // (661 of 1207.0) 2005-04-30T14:19:24Z 8060 02:14:20 25.1382790618493 Gooby 1.2.0
|
684
|
+
// points.push(new GLatLng(36.20147,-86.80603)); // (662 of 1207.0) 2005-04-30T14:19:36Z 8072 02:14:32 25.1743232489125 Gooby 1.2.0
|
685
|
+
// points.push(new GLatLng(36.20143,-86.80555)); // (663 of 1207.0) 2005-04-30T14:19:50Z 8086 02:14:46 25.2176197803561 Gooby 1.2.0
|
686
|
+
points.push(new GLatLng(36.20141,-86.80521)); // (664 of 1207.0) 2005-04-30T14:20:00Z 8096 02:14:56 25.2482069272547 Gooby 1.2.0
|
687
|
+
// points.push(new GLatLng(36.20143,-86.80472)); // (665 of 1207.0) 2005-04-30T14:20:15Z 8111 02:15:11 25.2922278741469 Gooby 1.2.0
|
688
|
+
// points.push(new GLatLng(36.20143,-86.80442)); // (666 of 1207.0) 2005-04-30T14:20:24Z 8120 02:15:20 25.3191450471396 Gooby 1.2.0
|
689
|
+
// points.push(new GLatLng(36.20141,-86.80416)); // (667 of 1207.0) 2005-04-30T14:20:32Z 8128 02:15:28 25.3425790974421 Gooby 1.2.0
|
690
|
+
// points.push(new GLatLng(36.20141,-86.80388)); // (668 of 1207.0) 2005-04-30T14:20:40Z 8136 02:15:36 25.3677018655721 Gooby 1.2.0
|
691
|
+
// points.push(new GLatLng(36.20137,-86.80362)); // (669 of 1207.0) 2005-04-30T14:20:48Z 8144 02:15:44 25.3914503014816 Gooby 1.2.0
|
692
|
+
points.push(new GLatLng(36.20135,-86.80332)); // (670 of 1207.0) 2005-04-30T14:20:57Z 8153 02:15:53 25.4184590536226 Gooby 1.2.0
|
693
|
+
// points.push(new GLatLng(36.20128,-86.803)); // (671 of 1207.0) 2005-04-30T14:21:07Z 8163 02:16:03 25.4482069276003 Gooby 1.2.0
|
694
|
+
// points.push(new GLatLng(36.20124,-86.80274)); // (672 of 1207.0) 2005-04-30T14:21:15Z 8171 02:16:11 25.4719551737735 Gooby 1.2.0
|
695
|
+
// points.push(new GLatLng(36.2012,-86.80248)); // (673 of 1207.0) 2005-04-30T14:21:23Z 8179 02:16:19 25.4957034199468 Gooby 1.2.0
|
696
|
+
// points.push(new GLatLng(36.20111,-86.80218)); // (674 of 1207.0) 2005-04-30T14:21:33Z 8189 02:16:29 25.5244208681571 Gooby 1.2.0
|
697
|
+
// points.push(new GLatLng(36.20102,-86.80214)); // (675 of 1207.0) 2005-04-30T14:21:37Z 8193 02:16:33 25.5350522623487 Gooby 1.2.0
|
698
|
+
points.push(new GLatLng(36.20094,-86.80216)); // (676 of 1207.0) 2005-04-30T14:21:41Z 8197 02:16:37 25.5441259717968 Gooby 1.2.0
|
699
|
+
// points.push(new GLatLng(36.20083,-86.80221)); // (677 of 1207.0) 2005-04-30T14:21:45Z 8201 02:16:41 25.5571539824815 Gooby 1.2.0
|
700
|
+
// points.push(new GLatLng(36.20034,-86.80223)); // (678 of 1207.0) 2005-04-30T14:22:01Z 8217 02:16:57 25.6116663788399 Gooby 1.2.0
|
701
|
+
// points.push(new GLatLng(36.20002,-86.80236)); // (679 of 1207.0) 2005-04-30T14:22:13Z 8229 02:17:09 25.6491102649086 Gooby 1.2.0
|
702
|
+
// points.push(new GLatLng(36.19991,-86.80244)); // (680 of 1207.0) 2005-04-30T14:22:18Z 8234 02:17:14 25.6632915307838 Gooby 1.2.0
|
703
|
+
// points.push(new GLatLng(36.19989,-86.80266)); // (681 of 1207.0) 2005-04-30T14:22:24Z 8240 02:17:20 25.683155885391 Gooby 1.2.0
|
704
|
+
points.push(new GLatLng(36.19993,-86.80298)); // (682 of 1207.0) 2005-04-30T14:22:33Z 8249 02:17:29 25.712210582732 Gooby 1.2.0
|
705
|
+
// points.push(new GLatLng(36.19993,-86.80309)); // (683 of 1207.0) 2005-04-30T14:22:36Z 8252 02:17:32 25.7220797268515 Gooby 1.2.0
|
706
|
+
// points.push(new GLatLng(36.19997,-86.80328)); // (684 of 1207.0) 2005-04-30T14:22:41Z 8257 02:17:37 25.7396982668839 Gooby 1.2.0
|
707
|
+
// points.push(new GLatLng(36.20002,-86.80349)); // (685 of 1207.0) 2005-04-30T14:22:48Z 8264 02:17:44 25.7593436534696 Gooby 1.2.0
|
708
|
+
// points.push(new GLatLng(36.20006,-86.80397)); // (686 of 1207.0) 2005-04-30T14:23:02Z 8278 02:17:58 25.8026410174747 Gooby 1.2.0
|
709
|
+
// points.push(new GLatLng(36.20012,-86.80442)); // (687 of 1207.0) 2005-04-30T14:23:16Z 8292 02:18:12 25.8435648615636 Gooby 1.2.0
|
710
|
+
points.push(new GLatLng(36.20014,-86.80493)); // (688 of 1207.0) 2005-04-30T14:23:31Z 8307 02:18:27 25.8893787507894 Gooby 1.2.0
|
711
|
+
// points.push(new GLatLng(36.20008,-86.80521)); // (689 of 1207.0) 2005-04-30T14:23:40Z 8316 02:18:36 25.9153724420607 Gooby 1.2.0
|
712
|
+
// points.push(new GLatLng(36.20002,-86.8056)); // (690 of 1207.0) 2005-04-30T14:23:53Z 8329 02:18:49 25.9509955070163 Gooby 1.2.0
|
713
|
+
// points.push(new GLatLng(36.19995,-86.80585)); // (691 of 1207.0) 2005-04-30T14:24:01Z 8337 02:18:57 25.9747388195141 Gooby 1.2.0
|
714
|
+
// points.push(new GLatLng(36.19989,-86.80605)); // (692 of 1207.0) 2005-04-30T14:24:08Z 8344 02:19:04 25.9938837849877 Gooby 1.2.0
|
715
|
+
points.push(new GLatLng(36.19987,-86.8062)); // (693 of 1207.0) 2005-04-30T14:24:15Z 8351 02:19:11 26.0075251030522 26.0 00:05:31 Gooby 1.2.0
|
716
|
+
// points.push(new GLatLng(36.19978,-86.80641)); // (694 of 1207.0) 2005-04-30T14:24:27Z 8363 02:19:23 26.0288602435566 Gooby 1.2.0
|
717
|
+
// points.push(new GLatLng(36.19963,-86.80676)); // (695 of 1207.0) 2005-04-30T14:24:38Z 8374 02:19:34 26.0644184872267 Gooby 1.2.0
|
718
|
+
// points.push(new GLatLng(36.19941,-86.80721)); // (696 of 1207.0) 2005-04-30T14:24:52Z 8388 02:19:48 26.1116271300618 Gooby 1.2.0
|
719
|
+
// points.push(new GLatLng(36.19924,-86.80755)); // (697 of 1207.0) 2005-04-30T14:25:04Z 8400 02:20:00 26.1475154664346 Gooby 1.2.0
|
720
|
+
// points.push(new GLatLng(36.19901,-86.80802)); // (698 of 1207.0) 2005-04-30T14:25:20Z 8416 02:20:16 26.1968353385912 Gooby 1.2.0
|
721
|
+
points.push(new GLatLng(36.19879,-86.80843)); // (699 of 1207.0) 2005-04-30T14:25:34Z 8430 02:20:30 26.2410137384749 Gooby 1.2.0
|
722
|
+
// points.push(new GLatLng(36.19862,-86.80862)); // (700 of 1207.0) 2005-04-30T14:25:43Z 8439 02:20:39 26.2664682769956 Gooby 1.2.0
|
723
|
+
// points.push(new GLatLng(36.19841,-86.80879)); // (701 of 1207.0) 2005-04-30T14:25:52Z 8448 02:20:48 26.2943590161017 Gooby 1.2.0
|
724
|
+
// points.push(new GLatLng(36.19808,-86.80899)); // (702 of 1207.0) 2005-04-30T14:26:05Z 8461 02:21:01 26.3352048314289 Gooby 1.2.0
|
725
|
+
// points.push(new GLatLng(36.19772,-86.80905)); // (703 of 1207.0) 2005-04-30T14:26:18Z 8474 02:21:14 26.3755933670599 Gooby 1.2.0
|
726
|
+
// points.push(new GLatLng(36.19733,-86.80905)); // (704 of 1207.0) 2005-04-30T14:26:32Z 8488 02:21:28 26.4189572841996 Gooby 1.2.0
|
727
|
+
points.push(new GLatLng(36.19699,-86.80892)); // (705 of 1207.0) 2005-04-30T14:26:45Z 8501 02:21:41 26.4585202854491 Gooby 1.2.0
|
728
|
+
// points.push(new GLatLng(36.19669,-86.80884)); // (706 of 1207.0) 2005-04-30T14:26:56Z 8512 02:21:52 26.4926407196137 Gooby 1.2.0
|
729
|
+
// points.push(new GLatLng(36.19626,-86.80869)); // (707 of 1207.0) 2005-04-30T14:27:12Z 8528 02:22:08 26.5423104518911 Gooby 1.2.0
|
730
|
+
// points.push(new GLatLng(36.19596,-86.80851)); // (708 of 1207.0) 2005-04-30T14:27:23Z 8539 02:22:19 26.5793717543859 Gooby 1.2.0
|
731
|
+
// points.push(new GLatLng(36.19577,-86.80847)); // (709 of 1207.0) 2005-04-30T14:27:30Z 8546 02:22:26 26.6008004612741 Gooby 1.2.0
|
732
|
+
// points.push(new GLatLng(36.1956,-86.80841)); // (710 of 1207.0) 2005-04-30T14:27:37Z 8553 02:22:33 26.6204550202324 Gooby 1.2.0
|
733
|
+
points.push(new GLatLng(36.19529,-86.80821)); // (711 of 1207.0) 2005-04-30T14:27:50Z 8566 02:22:46 26.6593159093558 Gooby 1.2.0
|
734
|
+
// points.push(new GLatLng(36.19506,-86.80794)); // (712 of 1207.0) 2005-04-30T14:28:03Z 8579 02:22:59 26.6945432696228 Gooby 1.2.0
|
735
|
+
// points.push(new GLatLng(36.19491,-86.80774)); // (713 of 1207.0) 2005-04-30T14:28:11Z 8587 02:23:07 26.7190429398883 Gooby 1.2.0
|
736
|
+
// points.push(new GLatLng(36.19472,-86.80753)); // (714 of 1207.0) 2005-04-30T14:28:21Z 8597 02:23:17 26.7473517230511 Gooby 1.2.0
|
737
|
+
// points.push(new GLatLng(36.19448,-86.80733)); // (715 of 1207.0) 2005-04-30T14:28:31Z 8607 02:23:27 26.7795104100281 Gooby 1.2.0
|
738
|
+
// points.push(new GLatLng(36.19431,-86.80723)); // (716 of 1207.0) 2005-04-30T14:28:39Z 8615 02:23:35 26.8004344007057 Gooby 1.2.0
|
739
|
+
points.push(new GLatLng(36.19403,-86.80706)); // (717 of 1207.0) 2005-04-30T14:28:50Z 8626 02:23:46 26.8351036181821 Gooby 1.2.0
|
740
|
+
// points.push(new GLatLng(36.19369,-86.80678)); // (718 of 1207.0) 2005-04-30T14:29:05Z 8641 02:24:01 26.8804957969963 Gooby 1.2.0
|
741
|
+
// points.push(new GLatLng(36.19366,-86.8065)); // (719 of 1207.0) 2005-04-30T14:29:13Z 8649 02:24:09 26.9058417687278 Gooby 1.2.0
|
742
|
+
// points.push(new GLatLng(36.19366,-86.80615)); // (720 of 1207.0) 2005-04-30T14:29:23Z 8659 02:24:19 26.9372484930018 Gooby 1.2.0
|
743
|
+
// points.push(new GLatLng(36.19364,-86.80585)); // (721 of 1207.0) 2005-04-30T14:29:32Z 8668 02:24:28 26.9642600811364 Gooby 1.2.0
|
744
|
+
// points.push(new GLatLng(36.1936,-86.80557)); // (722 of 1207.0) 2005-04-30T14:29:40Z 8676 02:24:36 26.9897761477 Gooby 1.2.0
|
745
|
+
points.push(new GLatLng(36.19356,-86.8053)); // (723 of 1207.0) 2005-04-30T14:29:49Z 8685 02:24:45 27.014409163216 27.0 00:05:34 Gooby 1.2.0
|
746
|
+
// points.push(new GLatLng(36.19351,-86.80493)); // (724 of 1207.0) 2005-04-30T14:30:00Z 8696 02:24:56 27.0480725158309 Gooby 1.2.0
|
747
|
+
// points.push(new GLatLng(36.19349,-86.80476)); // (725 of 1207.0) 2005-04-30T14:30:05Z 8701 02:25:01 27.0634884597731 Gooby 1.2.0
|
748
|
+
// points.push(new GLatLng(36.19343,-86.80442)); // (726 of 1207.0) 2005-04-30T14:30:16Z 8712 02:25:12 27.0947186502548 Gooby 1.2.0
|
749
|
+
// points.push(new GLatLng(36.19339,-86.80409)); // (727 of 1207.0) 2005-04-30T14:30:26Z 8722 02:25:22 27.1246626378154 Gooby 1.2.0
|
750
|
+
// points.push(new GLatLng(36.19334,-86.80362)); // (728 of 1207.0) 2005-04-30T14:30:40Z 8736 02:25:36 27.1672019868818 Gooby 1.2.0
|
751
|
+
points.push(new GLatLng(36.19328,-86.80324)); // (729 of 1207.0) 2005-04-30T14:30:52Z 8748 02:25:48 27.20194702332 Gooby 1.2.0
|
752
|
+
// points.push(new GLatLng(36.19323,-86.80289)); // (730 of 1207.0) 2005-04-30T14:31:03Z 8759 02:25:59 27.2338420535469 Gooby 1.2.0
|
753
|
+
// points.push(new GLatLng(36.19319,-86.80244)); // (731 of 1207.0) 2005-04-30T14:31:17Z 8773 02:26:13 27.2744661953244 Gooby 1.2.0
|
754
|
+
// points.push(new GLatLng(36.19311,-86.80193)); // (732 of 1207.0) 2005-04-30T14:31:33Z 8789 02:26:29 27.3210867534502 Gooby 1.2.0
|
755
|
+
// points.push(new GLatLng(36.19302,-86.80154)); // (733 of 1207.0) 2005-04-30T14:31:45Z 8801 02:26:41 27.3574854783635 Gooby 1.2.0
|
756
|
+
// points.push(new GLatLng(36.19293,-86.80122)); // (734 of 1207.0) 2005-04-30T14:31:55Z 8811 02:26:51 27.3878940007952 Gooby 1.2.0
|
757
|
+
points.push(new GLatLng(36.19281,-86.80096)); // (735 of 1207.0) 2005-04-30T14:32:04Z 8820 02:27:00 27.4147706325739 Gooby 1.2.0
|
758
|
+
// points.push(new GLatLng(36.19272,-86.80077)); // (736 of 1207.0) 2005-04-30T14:32:11Z 8827 02:27:07 27.4345401708886 Gooby 1.2.0
|
759
|
+
// points.push(new GLatLng(36.19257,-86.80045)); // (737 of 1207.0) 2005-04-30T14:32:23Z 8839 02:27:19 27.4677474777731 Gooby 1.2.0
|
760
|
+
// points.push(new GLatLng(36.19238,-86.80012)); // (738 of 1207.0) 2005-04-30T14:32:35Z 8851 02:27:31 27.5041232936987 Gooby 1.2.0
|
761
|
+
// points.push(new GLatLng(36.19223,-86.79993)); // (739 of 1207.0) 2005-04-30T14:32:43Z 8859 02:27:39 27.5279737777997 Gooby 1.2.0
|
762
|
+
// points.push(new GLatLng(36.1921,-86.7998)); // (740 of 1207.0) 2005-04-30T14:32:50Z 8866 02:27:46 27.5465486921776 Gooby 1.2.0
|
763
|
+
points.push(new GLatLng(36.19197,-86.79963)); // (741 of 1207.0) 2005-04-30T14:32:57Z 8873 02:27:53 27.5675642205138 Gooby 1.2.0
|
764
|
+
// points.push(new GLatLng(36.19186,-86.7995)); // (742 of 1207.0) 2005-04-30T14:33:03Z 8879 02:27:59 27.5844661565623 Gooby 1.2.0
|
765
|
+
// points.push(new GLatLng(36.19184,-86.79948)); // (743 of 1207.0) 2005-04-30T14:33:04Z 8880 02:28:00 27.5873235557824 Gooby 1.2.0
|
766
|
+
// points.push(new GLatLng(36.1916,-86.79929)); // (744 of 1207.0) 2005-04-30T14:33:15Z 8891 02:28:11 27.618990745751 Gooby 1.2.0
|
767
|
+
// points.push(new GLatLng(36.19139,-86.79912)); // (745 of 1207.0) 2005-04-30T14:33:26Z 8902 02:28:22 27.6468819695216 Gooby 1.2.0
|
768
|
+
// points.push(new GLatLng(36.19115,-86.79901)); // (746 of 1207.0) 2005-04-30T14:33:36Z 8912 02:28:32 27.6753345956651 Gooby 1.2.0
|
769
|
+
points.push(new GLatLng(36.19094,-86.7989)); // (747 of 1207.0) 2005-04-30T14:33:46Z 8922 02:28:42 27.700685189168 Gooby 1.2.0
|
770
|
+
// points.push(new GLatLng(36.19072,-86.79882)); // (748 of 1207.0) 2005-04-30T14:33:56Z 8932 02:28:52 27.7261786419921 Gooby 1.2.0
|
771
|
+
// points.push(new GLatLng(36.19051,-86.79871)); // (749 of 1207.0) 2005-04-30T14:34:06Z 8942 02:29:02 27.751529235495 Gooby 1.2.0
|
772
|
+
// points.push(new GLatLng(36.19038,-86.79867)); // (750 of 1207.0) 2005-04-30T14:34:12Z 8948 02:29:08 27.766422774981 Gooby 1.2.0
|
773
|
+
// points.push(new GLatLng(36.19025,-86.79862)); // (751 of 1207.0) 2005-04-30T14:34:21Z 8957 02:29:17 27.7815576037107 Gooby 1.2.0
|
774
|
+
// points.push(new GLatLng(36.19006,-86.79858)); // (752 of 1207.0) 2005-04-30T14:34:32Z 8968 02:29:28 27.8029863105989 Gooby 1.2.0
|
775
|
+
points.push(new GLatLng(36.18989,-86.79856)); // (753 of 1207.0) 2005-04-30T14:34:40Z 8976 02:29:36 27.8219736433052 Gooby 1.2.0
|
776
|
+
// points.push(new GLatLng(36.18965,-86.79854)); // (754 of 1207.0) 2005-04-30T14:34:50Z 8986 02:29:46 27.8487195237627 Gooby 1.2.0
|
777
|
+
// points.push(new GLatLng(36.18944,-86.79856)); // (755 of 1207.0) 2005-04-30T14:34:58Z 8994 02:29:54 27.8721383789425 Gooby 1.2.0
|
778
|
+
// points.push(new GLatLng(36.18922,-86.79852)); // (756 of 1207.0) 2005-04-30T14:35:07Z 9003 02:30:03 27.8968621395724 Gooby 1.2.0
|
779
|
+
// points.push(new GLatLng(36.18901,-86.79849)); // (757 of 1207.0) 2005-04-30T14:35:15Z 9011 02:30:11 27.9203664593528 Gooby 1.2.0
|
780
|
+
// points.push(new GLatLng(36.18881,-86.79847)); // (758 of 1207.0) 2005-04-30T14:35:23Z 9019 02:30:19 27.9426765948483 Gooby 1.2.0
|
781
|
+
points.push(new GLatLng(36.18862,-86.79843)); // (759 of 1207.0) 2005-04-30T14:35:31Z 9027 02:30:27 27.9641053017365 Gooby 1.2.0
|
782
|
+
// points.push(new GLatLng(36.18845,-86.79843)); // (760 of 1207.0) 2005-04-30T14:35:38Z 9034 02:30:34 27.9830072474418 Gooby 1.2.0
|
783
|
+
points.push(new GLatLng(36.18819,-86.79843)); // (761 of 1207.0) 2005-04-30T14:35:48Z 9044 02:30:44 28.0119164216253 28.0 00:05:59 Gooby 1.2.0
|
784
|
+
// points.push(new GLatLng(36.18798,-86.79837)); // (762 of 1207.0) 2005-04-30T14:35:56Z 9052 02:30:52 28.0358788636325 Gooby 1.2.0
|
785
|
+
// points.push(new GLatLng(36.18761,-86.79837)); // (763 of 1207.0) 2005-04-30T14:36:11Z 9067 02:31:07 28.0770190428604 Gooby 1.2.0
|
786
|
+
// points.push(new GLatLng(36.18729,-86.79832)); // (764 of 1207.0) 2005-04-30T14:36:22Z 9078 02:31:18 28.1128815057963 Gooby 1.2.0
|
787
|
+
// points.push(new GLatLng(36.18671,-86.79828)); // (765 of 1207.0) 2005-04-30T14:36:46Z 9102 02:31:42 28.1774713172753 Gooby 1.2.0
|
788
|
+
// points.push(new GLatLng(36.18648,-86.79828)); // (766 of 1207.0) 2005-04-30T14:36:55Z 9111 02:31:51 28.2030448878882 Gooby 1.2.0
|
789
|
+
points.push(new GLatLng(36.18626,-86.79828)); // (767 of 1207.0) 2005-04-30T14:37:03Z 9119 02:31:59 28.2275064575739 Gooby 1.2.0
|
790
|
+
// points.push(new GLatLng(36.18607,-86.79824)); // (768 of 1207.0) 2005-04-30T14:37:11Z 9127 02:32:07 28.2489351644621 Gooby 1.2.0
|
791
|
+
// points.push(new GLatLng(36.18583,-86.79821)); // (769 of 1207.0) 2005-04-30T14:37:20Z 9136 02:32:16 28.2757560780127 Gooby 1.2.0
|
792
|
+
// points.push(new GLatLng(36.18566,-86.79819)); // (770 of 1207.0) 2005-04-30T14:37:26Z 9142 02:32:22 28.2947431734056 Gooby 1.2.0
|
793
|
+
// points.push(new GLatLng(36.18542,-86.79813)); // (771 of 1207.0) 2005-04-30T14:37:35Z 9151 02:32:31 28.3219666190756 Gooby 1.2.0
|
794
|
+
// points.push(new GLatLng(36.18525,-86.79811)); // (772 of 1207.0) 2005-04-30T14:37:42Z 9158 02:32:38 28.3409541890924 Gooby 1.2.0
|
795
|
+
points.push(new GLatLng(36.18506,-86.79806)); // (773 of 1207.0) 2005-04-30T14:37:49Z 9165 02:32:45 28.3625517126736 Gooby 1.2.0
|
796
|
+
// points.push(new GLatLng(36.18482,-86.79804)); // (774 of 1207.0) 2005-04-30T14:37:58Z 9174 02:32:54 28.3892975931311 Gooby 1.2.0
|
797
|
+
// points.push(new GLatLng(36.18459,-86.79798)); // (775 of 1207.0) 2005-04-30T14:38:07Z 9183 02:33:03 28.4154316629044 Gooby 1.2.0
|
798
|
+
// points.push(new GLatLng(36.18439,-86.79794)); // (776 of 1207.0) 2005-04-30T14:38:15Z 9191 02:33:11 28.437957267051 Gooby 1.2.0
|
799
|
+
// points.push(new GLatLng(36.18418,-86.79791)); // (777 of 1207.0) 2005-04-30T14:38:23Z 9199 02:33:19 28.4614617785367 Gooby 1.2.0
|
800
|
+
// points.push(new GLatLng(36.18394,-86.79785)); // (778 of 1207.0) 2005-04-30T14:38:32Z 9208 02:33:28 28.48868505869 Gooby 1.2.0
|
801
|
+
points.push(new GLatLng(36.18373,-86.79779)); // (779 of 1207.0) 2005-04-30T14:38:41Z 9217 02:33:37 28.5126478767762 Gooby 1.2.0
|
802
|
+
// points.push(new GLatLng(36.18343,-86.79776)); // (780 of 1207.0) 2005-04-30T14:38:52Z 9228 02:33:48 28.5461133493085 Gooby 1.2.0
|
803
|
+
// points.push(new GLatLng(36.18324,-86.79776)); // (781 of 1207.0) 2005-04-30T14:39:00Z 9236 02:33:56 28.5672392230785 Gooby 1.2.0
|
804
|
+
// points.push(new GLatLng(36.18289,-86.7977)); // (782 of 1207.0) 2005-04-30T14:39:13Z 9249 02:34:09 28.606526440965 Gooby 1.2.0
|
805
|
+
// points.push(new GLatLng(36.18266,-86.79759)); // (783 of 1207.0) 2005-04-30T14:39:22Z 9258 02:34:18 28.6339392407236 Gooby 1.2.0
|
806
|
+
// points.push(new GLatLng(36.18229,-86.79736)); // (784 of 1207.0) 2005-04-30T14:39:37Z 9273 02:34:33 28.6799672353435 Gooby 1.2.0
|
807
|
+
points.push(new GLatLng(36.1821,-86.79725)); // (785 of 1207.0) 2005-04-30T14:39:46Z 9282 02:34:42 28.7032862113705 Gooby 1.2.0
|
808
|
+
// points.push(new GLatLng(36.18191,-86.79714)); // (786 of 1207.0) 2005-04-30T14:39:54Z 9290 02:34:50 28.7266051873975 Gooby 1.2.0
|
809
|
+
// points.push(new GLatLng(36.18169,-86.79699)); // (787 of 1207.0) 2005-04-30T14:40:04Z 9300 02:35:00 28.7545264439295 Gooby 1.2.0
|
810
|
+
// points.push(new GLatLng(36.18135,-86.79678)); // (788 of 1207.0) 2005-04-30T14:40:19Z 9315 02:35:15 28.7967683790248 Gooby 1.2.0
|
811
|
+
// points.push(new GLatLng(36.18107,-86.79658)); // (789 of 1207.0) 2005-04-30T14:40:31Z 9327 02:35:27 28.8327051465371 Gooby 1.2.0
|
812
|
+
// points.push(new GLatLng(36.18075,-86.79635)); // (790 of 1207.0) 2005-04-30T14:40:45Z 9341 02:35:41 28.873839958638 Gooby 1.2.0
|
813
|
+
points.push(new GLatLng(36.1804,-86.79615)); // (791 of 1207.0) 2005-04-30T14:40:59Z 9355 02:35:55 28.9166963210264 Gooby 1.2.0
|
814
|
+
// points.push(new GLatLng(36.18015,-86.79594)); // (792 of 1207.0) 2005-04-30T14:41:10Z 9366 02:36:06 28.9502807420188 Gooby 1.2.0
|
815
|
+
// points.push(new GLatLng(36.17987,-86.79575)); // (793 of 1207.0) 2005-04-30T14:41:21Z 9377 02:36:17 28.9857778543561 Gooby 1.2.0
|
816
|
+
points.push(new GLatLng(36.17954,-86.79555)); // (794 of 1207.0) 2005-04-30T14:41:35Z 9391 02:36:31 29.0266255450017 29.0 00:05:47 Gooby 1.2.0
|
817
|
+
// points.push(new GLatLng(36.17933,-86.79538)); // (795 of 1207.0) 2005-04-30T14:41:44Z 9400 02:36:40 29.0545180611694 Gooby 1.2.0
|
818
|
+
// points.push(new GLatLng(36.17909,-86.79521)); // (796 of 1207.0) 2005-04-30T14:41:54Z 9410 02:36:50 29.0852574467418 Gooby 1.2.0
|
819
|
+
// points.push(new GLatLng(36.17879,-86.79497)); // (797 of 1207.0) 2005-04-30T14:42:07Z 9423 02:37:03 29.1249644873481 Gooby 1.2.0
|
820
|
+
// points.push(new GLatLng(36.17821,-86.79459)); // (798 of 1207.0) 2005-04-30T14:42:33Z 9449 02:37:29 29.1979172559895 Gooby 1.2.0
|
821
|
+
// points.push(new GLatLng(36.17819,-86.79457)); // (799 of 1207.0) 2005-04-30T14:42:34Z 9450 02:37:30 29.2007746552097 Gooby 1.2.0
|
822
|
+
points.push(new GLatLng(36.17783,-86.79435)); // (800 of 1207.0) 2005-04-30T14:42:48Z 9464 02:37:44 29.2454078502477 Gooby 1.2.0
|
823
|
+
// points.push(new GLatLng(36.17733,-86.79403)); // (801 of 1207.0) 2005-04-30T14:43:09Z 9485 02:38:05 29.3079829014525 Gooby 1.2.0
|
824
|
+
// points.push(new GLatLng(36.17688,-86.79377)); // (802 of 1207.0) 2005-04-30T14:43:27Z 9503 02:38:23 29.363192283459 Gooby 1.2.0
|
825
|
+
// points.push(new GLatLng(36.17658,-86.79356)); // (803 of 1207.0) 2005-04-30T14:43:41Z 9517 02:38:37 29.4015057429825 Gooby 1.2.0
|
826
|
+
// points.push(new GLatLng(36.17613,-86.79324)); // (804 of 1207.0) 2005-04-30T14:44:00Z 9536 02:38:56 29.4591981713619 Gooby 1.2.0
|
827
|
+
// points.push(new GLatLng(36.17575,-86.79296)); // (805 of 1207.0) 2005-04-30T14:44:17Z 9553 02:39:13 29.5083590013526 Gooby 1.2.0
|
828
|
+
points.push(new GLatLng(36.17536,-86.79266)); // (806 of 1207.0) 2005-04-30T14:44:34Z 9570 02:39:30 29.5594024350879 Gooby 1.2.0
|
829
|
+
// points.push(new GLatLng(36.17502,-86.79242)); // (807 of 1207.0) 2005-04-30T14:44:49Z 9585 02:39:45 29.6029131357074 Gooby 1.2.0
|
830
|
+
// points.push(new GLatLng(36.17472,-86.79225)); // (808 of 1207.0) 2005-04-30T14:45:02Z 9598 02:39:58 29.6395940063824 Gooby 1.2.0
|
831
|
+
// points.push(new GLatLng(36.17444,-86.79206)); // (809 of 1207.0) 2005-04-30T14:45:14Z 9610 02:40:10 29.6750917534025 Gooby 1.2.0
|
832
|
+
// points.push(new GLatLng(36.17412,-86.79186)); // (810 of 1207.0) 2005-04-30T14:45:27Z 9623 02:40:23 29.7149443479572 Gooby 1.2.0
|
833
|
+
// points.push(new GLatLng(36.17382,-86.79165)); // (811 of 1207.0) 2005-04-30T14:45:40Z 9636 02:40:36 29.7532582779049 Gooby 1.2.0
|
834
|
+
points.push(new GLatLng(36.17354,-86.79148)); // (812 of 1207.0) 2005-04-30T14:45:51Z 9647 02:40:47 29.7879294448607 Gooby 1.2.0
|
835
|
+
// points.push(new GLatLng(36.17332,-86.79131)); // (813 of 1207.0) 2005-04-30T14:46:00Z 9656 02:40:56 29.8167599561776 Gooby 1.2.0
|
836
|
+
// points.push(new GLatLng(36.17334,-86.79113)); // (814 of 1207.0) 2005-04-30T14:46:05Z 9661 02:41:01 29.8330684368005 Gooby 1.2.0
|
837
|
+
// points.push(new GLatLng(36.17341,-86.79088)); // (815 of 1207.0) 2005-04-30T14:46:13Z 9669 02:41:09 29.856818959709 Gooby 1.2.0
|
838
|
+
// points.push(new GLatLng(36.17349,-86.79064)); // (816 of 1207.0) 2005-04-30T14:46:20Z 9676 02:41:16 29.8801247924035 Gooby 1.2.0
|
839
|
+
// points.push(new GLatLng(36.17358,-86.79025)); // (817 of 1207.0) 2005-04-30T14:46:32Z 9688 02:41:28 29.9165316867643 Gooby 1.2.0
|
840
|
+
points.push(new GLatLng(36.17367,-86.78982)); // (818 of 1207.0) 2005-04-30T14:46:45Z 9701 02:41:41 29.9564029326307 Gooby 1.2.0
|
841
|
+
points.push(new GLatLng(36.17382,-86.78931)); // (819 of 1207.0) 2005-04-30T14:47:01Z 9717 02:41:57 30.0051221012567 30.0 00:05:26 Gooby 1.2.0
|
842
|
+
// points.push(new GLatLng(36.17388,-86.78914)); // (820 of 1207.0) 2005-04-30T14:47:07Z 9723 02:42:03 30.0217753434338 Gooby 1.2.0
|
843
|
+
// points.push(new GLatLng(36.17394,-86.78903)); // (821 of 1207.0) 2005-04-30T14:47:11Z 9727 02:42:07 30.0336913246269 Gooby 1.2.0
|
844
|
+
// points.push(new GLatLng(36.17394,-86.78888)); // (822 of 1207.0) 2005-04-30T14:47:15Z 9731 02:42:11 30.047154764834 Gooby 1.2.0
|
845
|
+
// points.push(new GLatLng(36.17377,-86.78854)); // (823 of 1207.0) 2005-04-30T14:47:27Z 9743 02:42:23 30.083051637859 Gooby 1.2.0
|
846
|
+
// points.push(new GLatLng(36.17341,-86.78832)); // (824 of 1207.0) 2005-04-30T14:47:40Z 9756 02:42:36 30.12768543862 Gooby 1.2.0
|
847
|
+
points.push(new GLatLng(36.17306,-86.78819)); // (825 of 1207.0) 2005-04-30T14:47:53Z 9769 02:42:49 30.1683133514121 Gooby 1.2.0
|
848
|
+
// points.push(new GLatLng(36.17279,-86.78798)); // (826 of 1207.0) 2005-04-30T14:48:05Z 9781 02:43:01 30.2037613048201 Gooby 1.2.0
|
849
|
+
// points.push(new GLatLng(36.17261,-86.78785)); // (827 of 1207.0) 2005-04-30T14:48:13Z 9789 02:43:09 30.2269284878471 Gooby 1.2.0
|
850
|
+
// points.push(new GLatLng(36.17253,-86.78777)); // (828 of 1207.0) 2005-04-30T14:48:22Z 9798 02:43:18 30.2383596615502 Gooby 1.2.0
|
851
|
+
// points.push(new GLatLng(36.1724,-86.7877)); // (829 of 1207.0) 2005-04-30T14:48:34Z 9810 02:43:30 30.2541204501423 Gooby 1.2.0
|
852
|
+
// points.push(new GLatLng(36.17225,-86.78757)); // (830 of 1207.0) 2005-04-30T14:48:45Z 9821 02:43:41 30.274475511465 Gooby 1.2.0
|
853
|
+
points.push(new GLatLng(36.17212,-86.78749)); // (831 of 1207.0) 2005-04-30T14:48:55Z 9831 02:43:51 30.2906154108191 Gooby 1.2.0
|
854
|
+
// points.push(new GLatLng(36.17199,-86.78742)); // (832 of 1207.0) 2005-04-30T14:49:06Z 9842 02:44:02 30.3063764853031 Gooby 1.2.0
|
855
|
+
// points.push(new GLatLng(36.17182,-86.78727)); // (833 of 1207.0) 2005-04-30T14:49:17Z 9853 02:44:13 30.3295835057355 Gooby 1.2.0
|
856
|
+
// points.push(new GLatLng(36.17152,-86.78712)); // (834 of 1207.0) 2005-04-30T14:49:30Z 9866 02:44:26 30.3655551133137 Gooby 1.2.0
|
857
|
+
// points.push(new GLatLng(36.17118,-86.78693)); // (835 of 1207.0) 2005-04-30T14:49:43Z 9879 02:44:39 30.4070282189797 Gooby 1.2.0
|
858
|
+
// points.push(new GLatLng(36.17081,-86.78671)); // (836 of 1207.0) 2005-04-30T14:49:58Z 9894 02:44:54 30.4526621627011 Gooby 1.2.0
|
859
|
+
points.push(new GLatLng(36.17049,-86.78648)); // (837 of 1207.0) 2005-04-30T14:50:12Z 9908 02:45:08 30.4937983988019 Gooby 1.2.0
|
860
|
+
// points.push(new GLatLng(36.1698,-86.78603)); // (838 of 1207.0) 2005-04-30T14:50:40Z 9936 02:45:36 30.5805024345471 Gooby 1.2.0
|
861
|
+
// points.push(new GLatLng(36.16965,-86.78581)); // (839 of 1207.0) 2005-04-30T14:50:50Z 9946 02:45:46 30.6063504530586 Gooby 1.2.0
|
862
|
+
// points.push(new GLatLng(36.1697,-86.78568)); // (840 of 1207.0) 2005-04-30T14:50:54Z 9950 02:45:50 30.6192760311323 Gooby 1.2.0
|
863
|
+
// points.push(new GLatLng(36.16985,-86.78536)); // (841 of 1207.0) 2005-04-30T14:51:04Z 9960 02:46:00 30.6524903931823 Gooby 1.2.0
|
864
|
+
// points.push(new GLatLng(36.16995,-86.78508)); // (842 of 1207.0) 2005-04-30T14:51:13Z 9969 02:46:09 30.6799727986864 Gooby 1.2.0
|
865
|
+
points.push(new GLatLng(36.17004,-86.78476)); // (843 of 1207.0) 2005-04-30T14:51:23Z 9979 02:46:19 30.7103894699026 Gooby 1.2.0
|
866
|
+
// points.push(new GLatLng(36.16982,-86.78446)); // (844 of 1207.0) 2005-04-30T14:51:35Z 9991 02:46:31 30.7467693733534 Gooby 1.2.0
|
867
|
+
// points.push(new GLatLng(36.16942,-86.78405)); // (845 of 1207.0) 2005-04-30T14:51:55Z 10011 02:46:51 30.8044970152053 Gooby 1.2.0
|
868
|
+
// points.push(new GLatLng(36.1694,-86.78403)); // (846 of 1207.0) 2005-04-30T14:51:56Z 10012 02:46:52 30.8073575665492 Gooby 1.2.0
|
869
|
+
// points.push(new GLatLng(36.1689,-86.78375)); // (847 of 1207.0) 2005-04-30T14:52:17Z 10033 02:47:13 30.868369451801 Gooby 1.2.0
|
870
|
+
// points.push(new GLatLng(36.16875,-86.78367)); // (848 of 1207.0) 2005-04-30T14:52:24Z 10040 02:47:20 30.8865280405555 Gooby 1.2.0
|
871
|
+
points.push(new GLatLng(36.16879,-86.78356)); // (849 of 1207.0) 2005-04-30T14:52:29Z 10045 02:47:25 30.8973572196931 Gooby 1.2.0
|
872
|
+
// points.push(new GLatLng(36.16882,-86.78349)); // (850 of 1207.0) 2005-04-30T14:52:31Z 10047 02:47:27 30.90447132636 Gooby 1.2.0
|
873
|
+
// points.push(new GLatLng(36.16877,-86.78337)); // (851 of 1207.0) 2005-04-30T14:52:35Z 10051 02:47:31 30.9165927577148 Gooby 1.2.0
|
874
|
+
// points.push(new GLatLng(36.16871,-86.78326)); // (852 of 1207.0) 2005-04-30T14:52:39Z 10055 02:47:35 30.928509495166 Gooby 1.2.0
|
875
|
+
// points.push(new GLatLng(36.16854,-86.78268)); // (853 of 1207.0) 2005-04-30T14:53:00Z 10076 02:47:56 30.9838964310693 Gooby 1.2.0
|
876
|
+
points.push(new GLatLng(36.16839,-86.78236)); // (854 of 1207.0) 2005-04-30T14:53:12Z 10088 02:48:08 31.0171112001024 31.0 00:06:11 Gooby 1.2.0
|
877
|
+
// points.push(new GLatLng(36.16819,-86.78201)); // (855 of 1207.0) 2005-04-30T14:53:24Z 10100 02:48:20 31.055602070295 Gooby 1.2.0
|
878
|
+
// points.push(new GLatLng(36.16789,-86.78165)); // (856 of 1207.0) 2005-04-30T14:53:40Z 10116 02:48:36 31.1020444501621 Gooby 1.2.0
|
879
|
+
// points.push(new GLatLng(36.16766,-86.78137)); // (857 of 1207.0) 2005-04-30T14:53:52Z 10128 02:48:48 31.1379011329845 Gooby 1.2.0
|
880
|
+
// points.push(new GLatLng(36.16731,-86.78109)); // (858 of 1207.0) 2005-04-30T14:54:07Z 10143 02:49:03 31.184227913078 Gooby 1.2.0
|
881
|
+
// points.push(new GLatLng(36.16704,-86.78083)); // (859 of 1207.0) 2005-04-30T14:54:21Z 10157 02:49:17 31.2222535663394 Gooby 1.2.0
|
882
|
+
points.push(new GLatLng(36.16712,-86.78053)); // (860 of 1207.0) 2005-04-30T14:54:29Z 10165 02:49:25 31.2506135560749 Gooby 1.2.0
|
883
|
+
// points.push(new GLatLng(36.16699,-86.78019)); // (861 of 1207.0) 2005-04-30T14:54:40Z 10176 02:49:36 31.2843830202859 Gooby 1.2.0
|
884
|
+
// points.push(new GLatLng(36.16701,-86.77987)); // (862 of 1207.0) 2005-04-30T14:54:50Z 10186 02:49:46 31.313193363133 Gooby 1.2.0
|
885
|
+
// points.push(new GLatLng(36.16697,-86.77959)); // (863 of 1207.0) 2005-04-30T14:54:59Z 10195 02:49:55 31.3387175516153 Gooby 1.2.0
|
886
|
+
// points.push(new GLatLng(36.16682,-86.77938)); // (864 of 1207.0) 2005-04-30T14:55:08Z 10204 02:50:04 31.3638869091329 Gooby 1.2.0
|
887
|
+
// points.push(new GLatLng(36.16654,-86.77914)); // (865 of 1207.0) 2005-04-30T14:55:23Z 10219 02:50:19 31.4017467793425 Gooby 1.2.0
|
888
|
+
points.push(new GLatLng(36.16616,-86.77886)); // (866 of 1207.0) 2005-04-30T14:55:41Z 10237 02:50:37 31.4509091674732 Gooby 1.2.0
|
889
|
+
// points.push(new GLatLng(36.16575,-86.7786)); // (867 of 1207.0) 2005-04-30T14:56:00Z 10256 02:50:56 31.5021237467233 Gooby 1.2.0
|
890
|
+
// points.push(new GLatLng(36.16575,-86.77858)); // (868 of 1207.0) 2005-04-30T14:56:01Z 10257 02:50:57 31.5039199204369 Gooby 1.2.0
|
891
|
+
// points.push(new GLatLng(36.16577,-86.77847)); // (869 of 1207.0) 2005-04-30T14:56:05Z 10261 02:51:01 31.5140415131015 Gooby 1.2.0
|
892
|
+
// points.push(new GLatLng(36.16594,-86.77817)); // (870 of 1207.0) 2005-04-30T14:56:14Z 10270 02:51:10 31.5469427842265 Gooby 1.2.0
|
893
|
+
// points.push(new GLatLng(36.16616,-86.77768)); // (871 of 1207.0) 2005-04-30T14:56:30Z 10286 02:51:26 31.5972720100897 Gooby 1.2.0
|
894
|
+
points.push(new GLatLng(36.16635,-86.77734)); // (872 of 1207.0) 2005-04-30T14:56:43Z 10299 02:51:39 31.6343904113094 Gooby 1.2.0
|
895
|
+
// points.push(new GLatLng(36.16658,-86.77723)); // (873 of 1207.0) 2005-04-30T14:56:53Z 10309 02:51:49 31.6618038685517 Gooby 1.2.0
|
896
|
+
// points.push(new GLatLng(36.16701,-86.77719)); // (874 of 1207.0) 2005-04-30T14:57:08Z 10324 02:52:04 31.7097499964919 Gooby 1.2.0
|
897
|
+
// points.push(new GLatLng(36.16714,-86.77697)); // (875 of 1207.0) 2005-04-30T14:57:16Z 10332 02:52:12 31.734222984168 Gooby 1.2.0
|
898
|
+
// points.push(new GLatLng(36.16725,-86.77678)); // (876 of 1207.0) 2005-04-30T14:57:23Z 10339 02:52:19 31.7552104061092 Gooby 1.2.0
|
899
|
+
// points.push(new GLatLng(36.16736,-86.77652)); // (877 of 1207.0) 2005-04-30T14:57:32Z 10348 02:52:28 31.7815594560181 Gooby 1.2.0
|
900
|
+
points.push(new GLatLng(36.16746,-86.77631)); // (878 of 1207.0) 2005-04-30T14:57:39Z 10355 02:52:35 31.8034446442459 Gooby 1.2.0
|
901
|
+
// points.push(new GLatLng(36.16755,-86.77607)); // (879 of 1207.0) 2005-04-30T14:57:47Z 10363 02:52:43 31.8271983921558 Gooby 1.2.0
|
902
|
+
// points.push(new GLatLng(36.16764,-86.77586)); // (880 of 1207.0) 2005-04-30T14:57:55Z 10371 02:52:51 31.8485398676354 Gooby 1.2.0
|
903
|
+
// points.push(new GLatLng(36.16774,-86.7756)); // (881 of 1207.0) 2005-04-30T14:58:04Z 10380 02:53:00 31.8743915466851 Gooby 1.2.0
|
904
|
+
// points.push(new GLatLng(36.16785,-86.77534)); // (882 of 1207.0) 2005-04-30T14:58:13Z 10389 02:53:09 31.900740596594 Gooby 1.2.0
|
905
|
+
// points.push(new GLatLng(36.16796,-86.7751)); // (883 of 1207.0) 2005-04-30T14:58:21Z 10397 02:53:17 31.9255135160315 Gooby 1.2.0
|
906
|
+
points.push(new GLatLng(36.16807,-86.77487)); // (884 of 1207.0) 2005-04-30T14:58:29Z 10405 02:53:25 31.9495097815493 Gooby 1.2.0
|
907
|
+
// points.push(new GLatLng(36.16824,-86.77446)); // (885 of 1207.0) 2005-04-30T14:58:43Z 10419 02:53:39 31.9908825935613 Gooby 1.2.0
|
908
|
+
points.push(new GLatLng(36.16839,-86.77414)); // (886 of 1207.0) 2005-04-30T14:58:54Z 10430 02:53:50 32.0240974982543 32.0 00:05:42 Gooby 1.2.0
|
909
|
+
// points.push(new GLatLng(36.16854,-86.77373)); // (887 of 1207.0) 2005-04-30T14:59:08Z 10444 02:54:04 32.0645026535579 Gooby 1.2.0
|
910
|
+
// points.push(new GLatLng(36.16869,-86.77335)); // (888 of 1207.0) 2005-04-30T14:59:21Z 10457 02:54:17 32.1024712670325 Gooby 1.2.0
|
911
|
+
// points.push(new GLatLng(36.16877,-86.77309)); // (889 of 1207.0) 2005-04-30T14:59:29Z 10465 02:54:25 32.1274468909576 Gooby 1.2.0
|
912
|
+
// points.push(new GLatLng(36.1689,-86.77279)); // (890 of 1207.0) 2005-04-30T14:59:39Z 10475 02:54:35 32.1580095739117 Gooby 1.2.0
|
913
|
+
// points.push(new GLatLng(36.16903,-86.77244)); // (891 of 1207.0) 2005-04-30T14:59:51Z 10487 02:54:47 32.1925917328533 Gooby 1.2.0
|
914
|
+
points.push(new GLatLng(36.16914,-86.77217)); // (892 of 1207.0) 2005-04-30T15:00:00Z 10496 02:54:56 32.2197386023303 Gooby 1.2.0
|
915
|
+
// points.push(new GLatLng(36.16929,-86.77178)); // (893 of 1207.0) 2005-04-30T15:00:13Z 10509 02:55:09 32.2585152203495 Gooby 1.2.0
|
916
|
+
// points.push(new GLatLng(36.16942,-86.77146)); // (894 of 1207.0) 2005-04-30T15:00:24Z 10520 02:55:20 32.2906705443852 Gooby 1.2.0
|
917
|
+
// points.push(new GLatLng(36.16952,-86.77111)); // (895 of 1207.0) 2005-04-30T15:00:36Z 10532 02:55:32 32.3239963691113 Gooby 1.2.0
|
918
|
+
// points.push(new GLatLng(36.16965,-86.77079)); // (896 of 1207.0) 2005-04-30T15:00:47Z 10543 02:55:43 32.3561518332766 Gooby 1.2.0
|
919
|
+
// points.push(new GLatLng(36.1698,-86.77045)); // (897 of 1207.0) 2005-04-30T15:00:59Z 10555 02:55:55 32.3909304419978 Gooby 1.2.0
|
920
|
+
points.push(new GLatLng(36.16987,-86.77019)); // (898 of 1207.0) 2005-04-30T15:01:08Z 10564 02:56:04 32.415531608487 Gooby 1.2.0
|
921
|
+
// points.push(new GLatLng(36.16989,-86.77015)); // (899 of 1207.0) 2005-04-30T15:01:10Z 10566 02:56:06 32.419754692489 Gooby 1.2.0
|
922
|
+
// points.push(new GLatLng(36.16997,-86.76989)); // (900 of 1207.0) 2005-04-30T15:01:19Z 10575 02:56:15 32.4447301360007 Gooby 1.2.0
|
923
|
+
// points.push(new GLatLng(36.17008,-86.76963)); // (901 of 1207.0) 2005-04-30T15:01:28Z 10584 02:56:24 32.4710781598363 Gooby 1.2.0
|
924
|
+
// points.push(new GLatLng(36.17015,-86.76942)); // (902 of 1207.0) 2005-04-30T15:01:35Z 10591 02:56:31 32.4914717024965 Gooby 1.2.0
|
925
|
+
// points.push(new GLatLng(36.17021,-86.76918)); // (903 of 1207.0) 2005-04-30T15:01:43Z 10599 02:56:39 32.5140234960767 Gooby 1.2.0
|
926
|
+
points.push(new GLatLng(36.1703,-86.76897)); // (904 of 1207.0) 2005-04-30T15:01:51Z 10607 02:56:47 32.5353647604208 Gooby 1.2.0
|
927
|
+
// points.push(new GLatLng(36.17038,-86.76869)); // (905 of 1207.0) 2005-04-30T15:02:00Z 10616 02:56:56 32.5620250889398 Gooby 1.2.0
|
928
|
+
// points.push(new GLatLng(36.17051,-86.76832)); // (906 of 1207.0) 2005-04-30T15:02:12Z 10628 02:57:08 32.5982453614983 Gooby 1.2.0
|
929
|
+
// points.push(new GLatLng(36.17066,-86.76802)); // (907 of 1207.0) 2005-04-30T15:02:22Z 10638 02:57:18 32.6299198074214 Gooby 1.2.0
|
930
|
+
// points.push(new GLatLng(36.17096,-86.76734)); // (908 of 1207.0) 2005-04-30T15:02:47Z 10663 02:57:43 32.6994761179371 Gooby 1.2.0
|
931
|
+
// points.push(new GLatLng(36.17109,-86.76695)); // (909 of 1207.0) 2005-04-30T15:03:01Z 10677 02:57:57 32.7373489586444 Gooby 1.2.0
|
932
|
+
points.push(new GLatLng(36.17113,-86.76672)); // (910 of 1207.0) 2005-04-30T15:03:09Z 10685 02:58:05 32.7584671526055 Gooby 1.2.0
|
933
|
+
// points.push(new GLatLng(36.1712,-86.76648)); // (911 of 1207.0) 2005-04-30T15:03:17Z 10693 02:58:13 32.7813722284399 Gooby 1.2.0
|
934
|
+
// points.push(new GLatLng(36.17128,-86.7662)); // (912 of 1207.0) 2005-04-30T15:03:27Z 10703 02:58:23 32.8080323879461 Gooby 1.2.0
|
935
|
+
// points.push(new GLatLng(36.17139,-86.7659)); // (913 of 1207.0) 2005-04-30T15:03:38Z 10714 02:58:34 32.8376076910191 Gooby 1.2.0
|
936
|
+
// points.push(new GLatLng(36.17148,-86.76566)); // (914 of 1207.0) 2005-04-30T15:03:46Z 10722 02:58:42 32.8613604904447 Gooby 1.2.0
|
937
|
+
// points.push(new GLatLng(36.17154,-86.76545)); // (915 of 1207.0) 2005-04-30T15:03:54Z 10730 02:58:50 32.8813553002142 Gooby 1.2.0
|
938
|
+
points.push(new GLatLng(36.17163,-86.76526)); // (916 of 1207.0) 2005-04-30T15:04:01Z 10737 02:58:57 32.9011282570703 Gooby 1.2.0
|
939
|
+
// points.push(new GLatLng(36.17173,-86.76498)); // (917 of 1207.0) 2005-04-30T15:04:11Z 10747 02:59:07 32.9286101707001 Gooby 1.2.0
|
940
|
+
// points.push(new GLatLng(36.17176,-86.76489)); // (918 of 1207.0) 2005-04-30T15:04:14Z 10750 02:59:10 32.9373499868521 Gooby 1.2.0
|
941
|
+
// points.push(new GLatLng(36.17163,-86.76463)); // (919 of 1207.0) 2005-04-30T15:04:24Z 10760 02:59:20 32.9648008946389 Gooby 1.2.0
|
942
|
+
points.push(new GLatLng(36.17124,-86.76442)); // (920 of 1207.0) 2005-04-30T15:04:40Z 10776 02:59:36 33.0120842133874 33.0 00:05:46 Gooby 1.2.0
|
943
|
+
// points.push(new GLatLng(36.17094,-86.76423)); // (921 of 1207.0) 2005-04-30T15:04:53Z 10789 02:59:49 33.0495478296874 Gooby 1.2.0
|
944
|
+
// points.push(new GLatLng(36.17066,-86.7641)); // (922 of 1207.0) 2005-04-30T15:05:04Z 10800 03:00:00 33.0827956833288 Gooby 1.2.0
|
945
|
+
// points.push(new GLatLng(36.17055,-86.76401)); // (923 of 1207.0) 2005-04-30T15:05:11Z 10807 03:00:07 33.0974528774542 Gooby 1.2.0
|
946
|
+
// points.push(new GLatLng(36.17047,-86.76397)); // (924 of 1207.0) 2005-04-30T15:05:14Z 10810 03:00:10 33.1070451098939 Gooby 1.2.0
|
947
|
+
// points.push(new GLatLng(36.17028,-86.76388)); // (925 of 1207.0) 2005-04-30T15:05:22Z 10818 03:00:18 33.1296629416626 Gooby 1.2.0
|
948
|
+
points.push(new GLatLng(36.17019,-86.76384)); // (926 of 1207.0) 2005-04-30T15:05:29Z 10825 03:00:25 33.1402943358542 Gooby 1.2.0
|
949
|
+
// points.push(new GLatLng(36.16995,-86.76367)); // (927 of 1207.0) 2005-04-30T15:05:43Z 10839 03:00:39 33.1710346009218 Gooby 1.2.0
|
950
|
+
// points.push(new GLatLng(36.16961,-86.76345)); // (928 of 1207.0) 2005-04-30T15:05:58Z 10854 03:00:54 33.2136858699476 Gooby 1.2.0
|
951
|
+
// points.push(new GLatLng(36.1692,-86.7632)); // (929 of 1207.0) 2005-04-30T15:06:14Z 10870 03:01:10 33.2644972275532 Gooby 1.2.0
|
952
|
+
// points.push(new GLatLng(36.16873,-86.7629)); // (930 of 1207.0) 2005-04-30T15:06:33Z 10889 03:01:29 33.323286258533 Gooby 1.2.0
|
953
|
+
// points.push(new GLatLng(36.16826,-86.7626)); // (931 of 1207.0) 2005-04-30T15:06:52Z 10908 03:01:48 33.3820752895127 Gooby 1.2.0
|
954
|
+
points.push(new GLatLng(36.16783,-86.76234)); // (932 of 1207.0) 2005-04-30T15:07:10Z 10926 03:02:06 33.4352788615302 Gooby 1.2.0
|
955
|
+
// points.push(new GLatLng(36.16751,-86.76217)); // (933 of 1207.0) 2005-04-30T15:07:24Z 10940 03:02:20 33.4739938434868 Gooby 1.2.0
|
956
|
+
// points.push(new GLatLng(36.16708,-86.76195)); // (934 of 1207.0) 2005-04-30T15:07:41Z 10957 03:02:37 33.5257231656179 Gooby 1.2.0
|
957
|
+
// points.push(new GLatLng(36.16665,-86.76174)); // (935 of 1207.0) 2005-04-30T15:07:59Z 10975 03:02:55 33.5771163871326 Gooby 1.2.0
|
958
|
+
// points.push(new GLatLng(36.16626,-86.76152)); // (936 of 1207.0) 2005-04-30T15:08:15Z 10991 03:03:11 33.624765278427 Gooby 1.2.0
|
959
|
+
// points.push(new GLatLng(36.16579,-86.76122)); // (937 of 1207.0) 2005-04-30T15:08:36Z 11012 03:03:32 33.6835547692786 Gooby 1.2.0
|
960
|
+
points.push(new GLatLng(36.16545,-86.76103)); // (938 of 1207.0) 2005-04-30T15:08:53Z 11029 03:03:49 33.7250283095297 Gooby 1.2.0
|
961
|
+
// points.push(new GLatLng(36.16513,-86.76084)); // (939 of 1207.0) 2005-04-30T15:09:07Z 11043 03:04:03 33.764485477155 Gooby 1.2.0
|
962
|
+
// points.push(new GLatLng(36.16489,-86.76071)); // (940 of 1207.0) 2005-04-30T15:09:17Z 11053 03:04:13 33.7936108069945 Gooby 1.2.0
|
963
|
+
// points.push(new GLatLng(36.16463,-86.76058)); // (941 of 1207.0) 2005-04-30T15:09:28Z 11064 03:04:24 33.8247864115699 Gooby 1.2.0
|
964
|
+
// points.push(new GLatLng(36.16433,-86.76041)); // (942 of 1207.0) 2005-04-30T15:09:41Z 11077 03:04:37 33.8614681421232 Gooby 1.2.0
|
965
|
+
// points.push(new GLatLng(36.16414,-86.7603)); // (943 of 1207.0) 2005-04-30T15:09:49Z 11085 03:04:45 33.8847880842793 Gooby 1.2.0
|
966
|
+
points.push(new GLatLng(36.16397,-86.76021)); // (944 of 1207.0) 2005-04-30T15:09:56Z 11092 03:04:52 33.9053446977734 Gooby 1.2.0
|
967
|
+
// points.push(new GLatLng(36.16362,-86.76)); // (945 of 1207.0) 2005-04-30T15:10:10Z 11106 03:05:06 33.9485864531183 Gooby 1.2.0
|
968
|
+
// points.push(new GLatLng(36.16328,-86.75981)); // (946 of 1207.0) 2005-04-30T15:10:24Z 11120 03:05:20 33.9900602106602 Gooby 1.2.0
|
969
|
+
points.push(new GLatLng(36.16298,-86.75963)); // (947 of 1207.0) 2005-04-30T15:10:37Z 11133 03:05:33 34.0271246741063 34.0 00:05:57 Gooby 1.2.0
|
970
|
+
// points.push(new GLatLng(36.16279,-86.75953)); // (948 of 1207.0) 2005-04-30T15:10:45Z 11141 03:05:41 34.0500788776403 Gooby 1.2.0
|
971
|
+
// points.push(new GLatLng(36.16251,-86.75931)); // (949 of 1207.0) 2005-04-30T15:10:58Z 11154 03:05:54 34.0869474607142 Gooby 1.2.0
|
972
|
+
// points.push(new GLatLng(36.16216,-86.75914)); // (950 of 1207.0) 2005-04-30T15:11:12Z 11168 03:06:08 34.1287489012046 Gooby 1.2.0
|
973
|
+
// points.push(new GLatLng(36.16184,-86.75893)); // (951 of 1207.0) 2005-04-30T15:11:27Z 11183 03:06:23 34.1690150885293 Gooby 1.2.0
|
974
|
+
// points.push(new GLatLng(36.16154,-86.75873)); // (952 of 1207.0) 2005-04-30T15:11:41Z 11197 03:06:37 34.2068967323646 Gooby 1.2.0
|
975
|
+
points.push(new GLatLng(36.16124,-86.75854)); // (953 of 1207.0) 2005-04-30T15:11:54Z 11210 03:06:50 34.2443613108491 Gooby 1.2.0
|
976
|
+
// points.push(new GLatLng(36.16109,-86.75839)); // (954 of 1207.0) 2005-04-30T15:12:01Z 11217 03:06:57 34.2657969556899 Gooby 1.2.0
|
977
|
+
// points.push(new GLatLng(36.16109,-86.75826)); // (955 of 1207.0) 2005-04-30T15:12:05Z 11221 03:07:01 34.2774668734494 Gooby 1.2.0
|
978
|
+
// points.push(new GLatLng(36.16109,-86.75802)); // (956 of 1207.0) 2005-04-30T15:12:12Z 11228 03:07:08 34.2990115486248 Gooby 1.2.0
|
979
|
+
// points.push(new GLatLng(36.16113,-86.75772)); // (957 of 1207.0) 2005-04-30T15:12:22Z 11238 03:07:18 34.3263073941263 Gooby 1.2.0
|
980
|
+
// points.push(new GLatLng(36.1612,-86.75736)); // (958 of 1207.0) 2005-04-30T15:12:34Z 11250 03:07:30 34.3595486063699 Gooby 1.2.0
|
981
|
+
points.push(new GLatLng(36.16128,-86.75691)); // (959 of 1207.0) 2005-04-30T15:12:48Z 11264 03:07:44 34.400912922513 Gooby 1.2.0
|
982
|
+
// points.push(new GLatLng(36.16133,-86.7565)); // (960 of 1207.0) 2005-04-30T15:13:00Z 11276 03:07:56 34.4381359386472 Gooby 1.2.0
|
983
|
+
// points.push(new GLatLng(36.16135,-86.75614)); // (961 of 1207.0) 2005-04-30T15:13:11Z 11287 03:08:07 34.4705294421476 Gooby 1.2.0
|
984
|
+
// points.push(new GLatLng(36.16137,-86.75592)); // (962 of 1207.0) 2005-04-30T15:13:18Z 11294 03:08:14 34.4904037749685 Gooby 1.2.0
|
985
|
+
// points.push(new GLatLng(36.16156,-86.75556)); // (963 of 1207.0) 2005-04-30T15:13:30Z 11306 03:08:26 34.5290133996919 Gooby 1.2.0
|
986
|
+
// points.push(new GLatLng(36.16148,-86.75519)); // (964 of 1207.0) 2005-04-30T15:13:41Z 11317 03:08:37 34.563398510669 Gooby 1.2.0
|
987
|
+
points.push(new GLatLng(36.1615,-86.75491)); // (965 of 1207.0) 2005-04-30T15:13:50Z 11326 03:08:46 34.5886322345628 Gooby 1.2.0
|
988
|
+
// points.push(new GLatLng(36.16152,-86.75468)); // (966 of 1207.0) 2005-04-30T15:13:57Z 11333 03:08:53 34.6093984268003 Gooby 1.2.0
|
989
|
+
// points.push(new GLatLng(36.16156,-86.75431)); // (967 of 1207.0) 2005-04-30T15:14:09Z 11345 03:09:05 34.6429096469904 Gooby 1.2.0
|
990
|
+
// points.push(new GLatLng(36.16161,-86.75397)); // (968 of 1207.0) 2005-04-30T15:14:20Z 11356 03:09:16 34.6739335558413 Gooby 1.2.0
|
991
|
+
// points.push(new GLatLng(36.16165,-86.75369)); // (969 of 1207.0) 2005-04-30T15:14:29Z 11365 03:09:25 34.6994593330924 Gooby 1.2.0
|
992
|
+
// points.push(new GLatLng(36.16169,-86.75341)); // (970 of 1207.0) 2005-04-30T15:14:38Z 11374 03:09:34 34.7249852868673 Gooby 1.2.0
|
993
|
+
points.push(new GLatLng(36.16174,-86.75315)); // (971 of 1207.0) 2005-04-30T15:14:46Z 11382 03:09:42 34.7489781721797 Gooby 1.2.0
|
994
|
+
// points.push(new GLatLng(36.1618,-86.7529)); // (972 of 1207.0) 2005-04-30T15:14:55Z 11391 03:09:51 34.7723908695668 Gooby 1.2.0
|
995
|
+
// points.push(new GLatLng(36.16184,-86.75264)); // (973 of 1207.0) 2005-04-30T15:15:03Z 11399 03:09:59 34.796150876524 Gooby 1.2.0
|
996
|
+
// points.push(new GLatLng(36.16191,-86.75234)); // (974 of 1207.0) 2005-04-30T15:15:13Z 11409 03:10:09 34.8241835853139 Gooby 1.2.0
|
997
|
+
// points.push(new GLatLng(36.16199,-86.752)); // (975 of 1207.0) 2005-04-30T15:15:24Z 11420 03:10:20 34.8559747516966 Gooby 1.2.0
|
998
|
+
// points.push(new GLatLng(36.16206,-86.75167)); // (976 of 1207.0) 2005-04-30T15:15:35Z 11431 03:10:31 34.8866037072612 Gooby 1.2.0
|
999
|
+
points.push(new GLatLng(36.1621,-86.75133)); // (977 of 1207.0) 2005-04-30T15:15:47Z 11443 03:10:43 34.9174472845182 Gooby 1.2.0
|
1000
|
+
// points.push(new GLatLng(36.16216,-86.75105)); // (978 of 1207.0) 2005-04-30T15:15:56Z 11452 03:10:52 34.9434527606968 Gooby 1.2.0
|
1001
|
+
// points.push(new GLatLng(36.16223,-86.75081)); // (979 of 1207.0) 2005-04-30T15:16:04Z 11460 03:11:00 34.966360197068 Gooby 1.2.0
|
1002
|
+
// points.push(new GLatLng(36.16229,-86.75049)); // (980 of 1207.0) 2005-04-30T15:16:15Z 11471 03:11:11 34.9958508223354 Gooby 1.2.0
|
1003
|
+
points.push(new GLatLng(36.16238,-86.75017)); // (981 of 1207.0) 2005-04-30T15:16:26Z 11482 03:11:22 35.0262698636973 35.0 00:05:49 Gooby 1.2.0
|
1004
|
+
// points.push(new GLatLng(36.16244,-86.74985)); // (982 of 1207.0) 2005-04-30T15:16:37Z 11493 03:11:33 35.0557601833798 Gooby 1.2.0
|
1005
|
+
// points.push(new GLatLng(36.16251,-86.74948)); // (983 of 1207.0) 2005-04-30T15:16:49Z 11505 03:11:45 35.0898742781074 Gooby 1.2.0
|
1006
|
+
// points.push(new GLatLng(36.16257,-86.74912)); // (984 of 1207.0) 2005-04-30T15:17:02Z 11518 03:11:58 35.1228722328177 Gooby 1.2.0
|
1007
|
+
// points.push(new GLatLng(36.16257,-86.7491)); // (985 of 1207.0) 2005-04-30T15:17:03Z 11519 03:11:59 35.1246684065313 Gooby 1.2.0
|
1008
|
+
// points.push(new GLatLng(36.16259,-86.74901)); // (986 of 1207.0) 2005-04-30T15:17:09Z 11525 03:12:05 35.1330481610234 Gooby 1.2.0
|
1009
|
+
points.push(new GLatLng(36.16264,-86.74884)); // (987 of 1207.0) 2005-04-30T15:17:18Z 11534 03:12:14 35.1492899184997 Gooby 1.2.0
|
1010
|
+
// points.push(new GLatLng(36.16264,-86.74867)); // (988 of 1207.0) 2005-04-30T15:17:24Z 11540 03:12:20 35.1645504578861 Gooby 1.2.0
|
1011
|
+
// points.push(new GLatLng(36.16268,-86.74841)); // (989 of 1207.0) 2005-04-30T15:17:33Z 11549 03:12:29 35.1883104648434 Gooby 1.2.0
|
1012
|
+
// points.push(new GLatLng(36.16279,-86.74805)); // (990 of 1207.0) 2005-04-30T15:17:45Z 11561 03:12:41 35.2228642075517 Gooby 1.2.0
|
1013
|
+
// points.push(new GLatLng(36.16285,-86.7477)); // (991 of 1207.0) 2005-04-30T15:17:56Z 11572 03:12:52 35.2549836383044 Gooby 1.2.0
|
1014
|
+
// points.push(new GLatLng(36.16294,-86.74736)); // (992 of 1207.0) 2005-04-30T15:18:07Z 11583 03:13:03 35.2871033496288 Gooby 1.2.0
|
1015
|
+
points.push(new GLatLng(36.163,-86.7471)); // (993 of 1207.0) 2005-04-30T15:18:15Z 11591 03:13:11 35.311377788979 Gooby 1.2.0
|
1016
|
+
// points.push(new GLatLng(36.16304,-86.7468)); // (994 of 1207.0) 2005-04-30T15:18:25Z 11601 03:13:21 35.3386729741637 Gooby 1.2.0
|
1017
|
+
// points.push(new GLatLng(36.16313,-86.74652)); // (995 of 1207.0) 2005-04-30T15:18:34Z 11610 03:13:30 35.3657267334217 Gooby 1.2.0
|
1018
|
+
// points.push(new GLatLng(36.16319,-86.74612)); // (996 of 1207.0) 2005-04-30T15:18:47Z 11623 03:13:43 35.4022483016774 Gooby 1.2.0
|
1019
|
+
// points.push(new GLatLng(36.16326,-86.74571)); // (997 of 1207.0) 2005-04-30T15:19:00Z 11636 03:13:56 35.4398671116008 Gooby 1.2.0
|
1020
|
+
// points.push(new GLatLng(36.16324,-86.74536)); // (998 of 1207.0) 2005-04-30T15:19:11Z 11647 03:14:07 35.4713645214407 Gooby 1.2.0
|
1021
|
+
points.push(new GLatLng(36.16319,-86.74519)); // (999 of 1207.0) 2005-04-30T15:19:17Z 11653 03:14:13 35.487606278917 Gooby 1.2.0
|
1022
|
+
// points.push(new GLatLng(36.16313,-86.74496)); // (1000 of 1207.0) 2005-04-30T15:19:25Z 11661 03:14:21 35.5093037144745 Gooby 1.2.0
|
1023
|
+
// points.push(new GLatLng(36.16311,-86.74464)); // (1001 of 1207.0) 2005-04-30T15:19:36Z 11672 03:14:32 35.5381154648823 Gooby 1.2.0
|
1024
|
+
// points.push(new GLatLng(36.16319,-86.74429)); // (1002 of 1207.0) 2005-04-30T15:19:47Z 11683 03:14:43 35.570769152443 Gooby 1.2.0
|
1025
|
+
// points.push(new GLatLng(36.16337,-86.74393)); // (1003 of 1207.0) 2005-04-30T15:20:01Z 11697 03:14:57 35.6087810575793 Gooby 1.2.0
|
1026
|
+
// points.push(new GLatLng(36.16345,-86.74358)); // (1004 of 1207.0) 2005-04-30T15:20:12Z 11708 03:15:08 35.6414344691564 Gooby 1.2.0
|
1027
|
+
points.push(new GLatLng(36.16354,-86.7433)); // (1005 of 1207.0) 2005-04-30T15:20:22Z 11718 03:15:18 35.6684882284144 Gooby 1.2.0
|
1028
|
+
// points.push(new GLatLng(36.1636,-86.74298)); // (1006 of 1207.0) 2005-04-30T15:20:32Z 11728 03:15:28 35.6979782425087 Gooby 1.2.0
|
1029
|
+
// points.push(new GLatLng(36.16364,-86.74266)); // (1007 of 1207.0) 2005-04-30T15:20:43Z 11739 03:15:39 35.7270456539648 Gooby 1.2.0
|
1030
|
+
// points.push(new GLatLng(36.16371,-86.74225)); // (1008 of 1207.0) 2005-04-30T15:20:56Z 11752 03:15:52 35.7646641045512 Gooby 1.2.0
|
1031
|
+
// points.push(new GLatLng(36.16371,-86.74206)); // (1009 of 1207.0) 2005-04-30T15:21:02Z 11758 03:15:58 35.7817202273028 Gooby 1.2.0
|
1032
|
+
// points.push(new GLatLng(36.16377,-86.7418)); // (1010 of 1207.0) 2005-04-30T15:21:11Z 11767 03:16:07 35.8059944810281 Gooby 1.2.0
|
1033
|
+
points.push(new GLatLng(36.16382,-86.74152)); // (1011 of 1207.0) 2005-04-30T15:21:20Z 11776 03:16:16 35.8317366426263 Gooby 1.2.0
|
1034
|
+
// points.push(new GLatLng(36.16388,-86.74131)); // (1012 of 1207.0) 2005-04-30T15:21:27Z 11783 03:16:23 35.8517334804841 Gooby 1.2.0
|
1035
|
+
// points.push(new GLatLng(36.16395,-86.74094)); // (1013 of 1207.0) 2005-04-30T15:21:39Z 11795 03:16:35 35.885846914786 Gooby 1.2.0
|
1036
|
+
// points.push(new GLatLng(36.16399,-86.74071)); // (1014 of 1207.0) 2005-04-30T15:21:47Z 11803 03:16:43 35.9069668156126 Gooby 1.2.0
|
1037
|
+
// points.push(new GLatLng(36.16403,-86.74049)); // (1015 of 1207.0) 2005-04-30T15:21:54Z 11810 03:16:50 35.9272100009419 Gooby 1.2.0
|
1038
|
+
// points.push(new GLatLng(36.1641,-86.74026)); // (1016 of 1207.0) 2005-04-30T15:22:02Z 11818 03:16:58 35.9492748109061 Gooby 1.2.0
|
1039
|
+
points.push(new GLatLng(36.16418,-86.73994)); // (1017 of 1207.0) 2005-04-30T15:22:13Z 11829 03:17:09 35.9793459835231 Gooby 1.2.0
|
1040
|
+
points.push(new GLatLng(36.16425,-86.73966)); // (1018 of 1207.0) 2005-04-30T15:22:22Z 11838 03:17:18 36.0056582408328 36.0 00:05:56 Gooby 1.2.0
|
1041
|
+
// points.push(new GLatLng(36.16431,-86.73927)); // (1019 of 1207.0) 2005-04-30T15:22:35Z 11851 03:17:31 36.0412971133918 Gooby 1.2.0
|
1042
|
+
// points.push(new GLatLng(36.16433,-86.73895)); // (1020 of 1207.0) 2005-04-30T15:22:45Z 11861 03:17:41 36.0701083946203 Gooby 1.2.0
|
1043
|
+
// points.push(new GLatLng(36.16437,-86.73843)); // (1021 of 1207.0) 2005-04-30T15:23:02Z 11878 03:17:58 36.1169983140361 Gooby 1.2.0
|
1044
|
+
// points.push(new GLatLng(36.1644,-86.73813)); // (1022 of 1207.0) 2005-04-30T15:23:11Z 11887 03:18:07 36.1441338943144 Gooby 1.2.0
|
1045
|
+
// points.push(new GLatLng(36.1644,-86.73792)); // (1023 of 1207.0) 2005-04-30T15:23:18Z 11894 03:18:14 36.1629847568123 Gooby 1.2.0
|
1046
|
+
points.push(new GLatLng(36.16435,-86.7376)); // (1024 of 1207.0) 2005-04-30T15:23:29Z 11905 03:18:25 36.1922431410372 Gooby 1.2.0
|
1047
|
+
// points.push(new GLatLng(36.16435,-86.73736)); // (1025 of 1207.0) 2005-04-30T15:23:36Z 11912 03:18:32 36.2137869796236 Gooby 1.2.0
|
1048
|
+
// points.push(new GLatLng(36.1644,-86.73706)); // (1026 of 1207.0) 2005-04-30T15:23:46Z 11922 03:18:42 36.2412847927291 Gooby 1.2.0
|
1049
|
+
// points.push(new GLatLng(36.16444,-86.73672)); // (1027 of 1207.0) 2005-04-30T15:23:57Z 11933 03:18:53 36.2721277856227 Gooby 1.2.0
|
1050
|
+
// points.push(new GLatLng(36.16448,-86.73631)); // (1028 of 1207.0) 2005-04-30T15:24:10Z 11946 03:19:06 36.3091996640888 Gooby 1.2.0
|
1051
|
+
// points.push(new GLatLng(36.16455,-86.73605)); // (1029 of 1207.0) 2005-04-30T15:24:19Z 11955 03:19:15 36.3338022958053 Gooby 1.2.0
|
1052
|
+
points.push(new GLatLng(36.16461,-86.73584)); // (1030 of 1207.0) 2005-04-30T15:24:27Z 11963 03:19:23 36.3537989083301 Gooby 1.2.0
|
1053
|
+
// points.push(new GLatLng(36.16472,-86.73554)); // (1031 of 1207.0) 2005-04-30T15:24:37Z 11973 03:19:33 36.3833761919415 Gooby 1.2.0
|
1054
|
+
// points.push(new GLatLng(36.1648,-86.73513)); // (1032 of 1207.0) 2005-04-30T15:24:51Z 11987 03:19:47 36.4212398704643 Gooby 1.2.0
|
1055
|
+
// points.push(new GLatLng(36.1648,-86.73479)); // (1033 of 1207.0) 2005-04-30T15:25:03Z 11999 03:19:59 36.451760358699 Gooby 1.2.0
|
1056
|
+
// points.push(new GLatLng(36.16491,-86.73444)); // (1034 of 1207.0) 2005-04-30T15:25:14Z 12010 03:20:10 36.4854750714698 Gooby 1.2.0
|
1057
|
+
// points.push(new GLatLng(36.16495,-86.73412)); // (1035 of 1207.0) 2005-04-30T15:25:25Z 12021 03:20:21 36.5145424829259 Gooby 1.2.0
|
1058
|
+
points.push(new GLatLng(36.16504,-86.73373)); // (1036 of 1207.0) 2005-04-30T15:25:38Z 12034 03:20:34 36.550953337571 Gooby 1.2.0
|
1059
|
+
// points.push(new GLatLng(36.16519,-86.73339)); // (1037 of 1207.0) 2005-04-30T15:25:51Z 12047 03:20:47 36.5857335009793 Gooby 1.2.0
|
1060
|
+
// points.push(new GLatLng(36.1656,-86.73346)); // (1038 of 1207.0) 2005-04-30T15:26:04Z 12060 03:21:00 36.6317521946112 Gooby 1.2.0
|
1061
|
+
// points.push(new GLatLng(36.16588,-86.7335)); // (1039 of 1207.0) 2005-04-30T15:26:15Z 12071 03:21:11 36.6630917030122 Gooby 1.2.0
|
1062
|
+
// points.push(new GLatLng(36.1662,-86.73341)); // (1040 of 1207.0) 2005-04-30T15:26:28Z 12084 03:21:24 36.6995779683813 Gooby 1.2.0
|
1063
|
+
// points.push(new GLatLng(36.16639,-86.73326)); // (1041 of 1207.0) 2005-04-30T15:26:38Z 12094 03:21:34 36.7246297906762 Gooby 1.2.0
|
1064
|
+
points.push(new GLatLng(36.16661,-86.73296)); // (1042 of 1207.0) 2005-04-30T15:26:52Z 12108 03:21:48 36.7610105611187 Gooby 1.2.0
|
1065
|
+
// points.push(new GLatLng(36.16682,-86.73266)); // (1043 of 1207.0) 2005-04-30T15:27:05Z 12121 03:22:01 36.7966532264594 Gooby 1.2.0
|
1066
|
+
// points.push(new GLatLng(36.16704,-86.73238)); // (1044 of 1207.0) 2005-04-30T15:27:17Z 12133 03:22:13 36.8317256029467 Gooby 1.2.0
|
1067
|
+
// points.push(new GLatLng(36.16729,-86.73204)); // (1045 of 1207.0) 2005-04-30T15:27:32Z 12148 03:22:28 36.8730068290083 Gooby 1.2.0
|
1068
|
+
// points.push(new GLatLng(36.16761,-86.73172)); // (1046 of 1207.0) 2005-04-30T15:27:48Z 12164 03:22:44 36.9187350712887 Gooby 1.2.0
|
1069
|
+
// points.push(new GLatLng(36.16804,-86.7315)); // (1047 of 1207.0) 2005-04-30T15:28:09Z 12185 03:23:05 36.9704643934199 Gooby 1.2.0
|
1070
|
+
points.push(new GLatLng(36.16811,-86.73146)); // (1048 of 1207.0) 2005-04-30T15:28:13Z 12189 03:23:09 36.9790360654206 Gooby 1.2.0
|
1071
|
+
points.push(new GLatLng(36.16858,-86.73268)); // (1049 of 1207.0) 2005-04-30T15:28:34Z 12210 03:23:30 37.1003758107361 37.0 00:06:12 Gooby 1.2.0
|
1072
|
+
// points.push(new GLatLng(36.16862,-86.73273)); // (1050 of 1207.0) 2005-04-30T15:28:36Z 12212 03:23:32 37.1066935203934 Gooby 1.2.0
|
1073
|
+
// points.push(new GLatLng(36.16886,-86.73273)); // (1051 of 1207.0) 2005-04-30T15:28:46Z 12222 03:23:42 37.1333788510001 Gooby 1.2.0
|
1074
|
+
// points.push(new GLatLng(36.16899,-86.73249)); // (1052 of 1207.0) 2005-04-30T15:28:55Z 12231 03:23:51 37.1593211808917 Gooby 1.2.0
|
1075
|
+
// points.push(new GLatLng(36.16907,-86.7318)); // (1053 of 1207.0) 2005-04-30T15:29:08Z 12244 03:24:04 37.2218918394372 Gooby 1.2.0
|
1076
|
+
// points.push(new GLatLng(36.16937,-86.73152)); // (1054 of 1207.0) 2005-04-30T15:29:23Z 12259 03:24:19 37.2636573692812 Gooby 1.2.0
|
1077
|
+
points.push(new GLatLng(36.16972,-86.73137)); // (1055 of 1207.0) 2005-04-30T15:29:38Z 12274 03:24:34 37.3048371778565 Gooby 1.2.0
|
1078
|
+
// points.push(new GLatLng(36.17019,-86.73129)); // (1056 of 1207.0) 2005-04-30T15:29:56Z 12292 03:24:52 37.3575874096003 Gooby 1.2.0
|
1079
|
+
// points.push(new GLatLng(36.17066,-86.73116)); // (1057 of 1207.0) 2005-04-30T15:30:14Z 12310 03:25:10 37.4111333908974 Gooby 1.2.0
|
1080
|
+
// points.push(new GLatLng(36.17109,-86.73101)); // (1058 of 1207.0) 2005-04-30T15:30:31Z 12327 03:25:27 37.4608043932058 Gooby 1.2.0
|
1081
|
+
// points.push(new GLatLng(36.17141,-86.73107)); // (1059 of 1207.0) 2005-04-30T15:30:44Z 12340 03:25:40 37.4967902779654 Gooby 1.2.0
|
1082
|
+
// points.push(new GLatLng(36.17178,-86.73127)); // (1060 of 1207.0) 2005-04-30T15:30:59Z 12355 03:25:55 37.5416763543191 Gooby 1.2.0
|
1083
|
+
points.push(new GLatLng(36.17208,-86.7315)); // (1061 of 1207.0) 2005-04-30T15:31:14Z 12370 03:26:10 37.5809046911879 Gooby 1.2.0
|
1084
|
+
// points.push(new GLatLng(36.17246,-86.73189)); // (1062 of 1207.0) 2005-04-30T15:31:36Z 12392 03:26:32 37.6357736679949 Gooby 1.2.0
|
1085
|
+
// points.push(new GLatLng(36.17276,-86.73198)); // (1063 of 1207.0) 2005-04-30T15:31:50Z 12406 03:26:46 37.6700946392135 Gooby 1.2.0
|
1086
|
+
// points.push(new GLatLng(36.17289,-86.73187)); // (1064 of 1207.0) 2005-04-30T15:31:57Z 12413 03:26:53 37.6875995158528 Gooby 1.2.0
|
1087
|
+
// points.push(new GLatLng(36.17259,-86.73045)); // (1065 of 1207.0) 2005-04-30T15:32:26Z 12442 03:27:22 37.8193469200941 Gooby 1.2.0
|
1088
|
+
points.push(new GLatLng(36.16875,-86.72951)); // (1066 of 1207.0) 2005-04-30T15:35:09Z 12605 03:30:05 38.2545716569535 38.0 00:06:35 Gooby 1.2.0
|
1089
|
+
// points.push(new GLatLng(36.1686,-86.7291)); // (1067 of 1207.0) 2005-04-30T15:35:21Z 12617 03:30:17 38.2949765892195 Gooby 1.2.0
|
1090
|
+
// points.push(new GLatLng(36.16847,-86.72863)); // (1068 of 1207.0) 2005-04-30T15:35:41Z 12637 03:30:37 38.3395720112917 Gooby 1.2.0
|
1091
|
+
// points.push(new GLatLng(36.16824,-86.72826)); // (1069 of 1207.0) 2005-04-30T15:35:57Z 12653 03:30:53 38.3814890620837 Gooby 1.2.0
|
1092
|
+
// points.push(new GLatLng(36.16787,-86.72801)); // (1070 of 1207.0) 2005-04-30T15:36:13Z 12669 03:31:09 38.428351490057 Gooby 1.2.0
|
1093
|
+
// points.push(new GLatLng(36.16749,-86.72792)); // (1071 of 1207.0) 2005-04-30T15:36:27Z 12683 03:31:23 38.4713690444847 Gooby 1.2.0
|
1094
|
+
points.push(new GLatLng(36.16719,-86.72798)); // (1072 of 1207.0) 2005-04-30T15:36:36Z 12692 03:31:32 38.5051579841286 Gooby 1.2.0
|
1095
|
+
// points.push(new GLatLng(36.16663,-86.72811)); // (1073 of 1207.0) 2005-04-30T15:36:55Z 12711 03:31:51 38.5685080851506 Gooby 1.2.0
|
1096
|
+
// points.push(new GLatLng(36.16622,-86.72818)); // (1074 of 1207.0) 2005-04-30T15:37:10Z 12726 03:32:06 38.6145266808674 Gooby 1.2.0
|
1097
|
+
// points.push(new GLatLng(36.16588,-86.72841)); // (1075 of 1207.0) 2005-04-30T15:37:26Z 12742 03:32:22 38.6576013887079 Gooby 1.2.0
|
1098
|
+
// points.push(new GLatLng(36.16566,-86.72876)); // (1076 of 1207.0) 2005-04-30T15:37:40Z 12756 03:32:36 38.6974191441057 Gooby 1.2.0
|
1099
|
+
// points.push(new GLatLng(36.16558,-86.72891)); // (1077 of 1207.0) 2005-04-30T15:37:45Z 12761 03:32:41 38.7135568098728 Gooby 1.2.0
|
1100
|
+
points.push(new GLatLng(36.16547,-86.72912)); // (1078 of 1207.0) 2005-04-30T15:37:52Z 12768 03:32:48 38.7360277379548 Gooby 1.2.0
|
1101
|
+
// points.push(new GLatLng(36.16534,-86.72946)); // (1079 of 1207.0) 2005-04-30T15:38:04Z 12780 03:33:00 38.7697977358889 Gooby 1.2.0
|
1102
|
+
// points.push(new GLatLng(36.1653,-86.72976)); // (1080 of 1207.0) 2005-04-30T15:38:15Z 12791 03:33:11 38.7970920956552 Gooby 1.2.0
|
1103
|
+
// points.push(new GLatLng(36.16532,-86.73019)); // (1081 of 1207.0) 2005-04-30T15:38:28Z 12804 03:33:24 38.8357551341501 Gooby 1.2.0
|
1104
|
+
// points.push(new GLatLng(36.16521,-86.73062)); // (1082 of 1207.0) 2005-04-30T15:38:42Z 12818 03:33:38 38.8762457337894 Gooby 1.2.0
|
1105
|
+
// points.push(new GLatLng(36.16513,-86.73105)); // (1083 of 1207.0) 2005-04-30T15:38:56Z 12832 03:33:52 38.9158566546829 Gooby 1.2.0
|
1106
|
+
points.push(new GLatLng(36.16508,-86.73163)); // (1084 of 1207.0) 2005-04-30T15:39:14Z 12850 03:34:10 38.968216611109 Gooby 1.2.0
|
1107
|
+
points.push(new GLatLng(36.16506,-86.73206)); // (1085 of 1207.0) 2005-04-30T15:39:29Z 12865 03:34:25 39.0068798826899 39.0 00:04:20 Gooby 1.2.0
|
1108
|
+
// points.push(new GLatLng(36.16506,-86.73213)); // (1086 of 1207.0) 2005-04-30T15:39:31Z 12867 03:34:27 39.0131625473298 Gooby 1.2.0
|
1109
|
+
// points.push(new GLatLng(36.16504,-86.73236)); // (1087 of 1207.0) 2005-04-30T15:39:39Z 12875 03:34:35 39.033927871615 Gooby 1.2.0
|
1110
|
+
// points.push(new GLatLng(36.16502,-86.73262)); // (1088 of 1207.0) 2005-04-30T15:39:47Z 12883 03:34:43 39.0573724949854 Gooby 1.2.0
|
1111
|
+
// points.push(new GLatLng(36.16502,-86.7329)); // (1089 of 1207.0) 2005-04-30T15:39:57Z 12893 03:34:53 39.0825067392848 Gooby 1.2.0
|
1112
|
+
// points.push(new GLatLng(36.16504,-86.73341)); // (1090 of 1207.0) 2005-04-30T15:40:13Z 12909 03:35:09 39.128341179625 Gooby 1.2.0
|
1113
|
+
points.push(new GLatLng(36.16498,-86.73401)); // (1091 of 1207.0) 2005-04-30T15:40:31Z 12927 03:35:27 39.1826120080763 Gooby 1.2.0
|
1114
|
+
// points.push(new GLatLng(36.16491,-86.73449)); // (1092 of 1207.0) 2005-04-30T15:40:47Z 12943 03:35:43 39.2263968973077 Gooby 1.2.0
|
1115
|
+
// points.push(new GLatLng(36.1648,-86.73485)); // (1093 of 1207.0) 2005-04-30T15:41:00Z 12956 03:35:56 39.2609495967739 Gooby 1.2.0
|
1116
|
+
// points.push(new GLatLng(36.16472,-86.73528)); // (1094 of 1207.0) 2005-04-30T15:41:15Z 12971 03:36:11 39.3005606314218 Gooby 1.2.0
|
1117
|
+
// points.push(new GLatLng(36.16463,-86.73567)); // (1095 of 1207.0) 2005-04-30T15:41:28Z 12984 03:36:24 39.3369714860669 Gooby 1.2.0
|
1118
|
+
// points.push(new GLatLng(36.1645,-86.73612)); // (1096 of 1207.0) 2005-04-30T15:41:42Z 12998 03:36:38 39.3798745052582 Gooby 1.2.0
|
1119
|
+
points.push(new GLatLng(36.16437,-86.73667)); // (1097 of 1207.0) 2005-04-30T15:42:02Z 13018 03:36:58 39.4313183782 Gooby 1.2.0
|
1120
|
+
// points.push(new GLatLng(36.16433,-86.73725)); // (1098 of 1207.0) 2005-04-30T15:42:21Z 13037 03:37:17 39.4835725502153 Gooby 1.2.0
|
1121
|
+
// points.push(new GLatLng(36.16433,-86.73768)); // (1099 of 1207.0) 2005-04-30T15:42:34Z 13050 03:37:30 39.5221721370361 Gooby 1.2.0
|
1122
|
+
// points.push(new GLatLng(36.16435,-86.738)); // (1100 of 1207.0) 2005-04-30T15:42:44Z 13060 03:37:40 39.5509832618698 Gooby 1.2.0
|
1123
|
+
// points.push(new GLatLng(36.16437,-86.7385)); // (1101 of 1207.0) 2005-04-30T15:43:01Z 13077 03:37:57 39.595921608757 Gooby 1.2.0
|
1124
|
+
// points.push(new GLatLng(36.16431,-86.7388)); // (1102 of 1207.0) 2005-04-30T15:43:11Z 13087 03:38:07 39.6236654294337 Gooby 1.2.0
|
1125
|
+
points.push(new GLatLng(36.16427,-86.73921)); // (1103 of 1207.0) 2005-04-30T15:43:25Z 13101 03:38:21 39.6607374294451 Gooby 1.2.0
|
1126
|
+
// points.push(new GLatLng(36.1642,-86.73976)); // (1104 of 1207.0) 2005-04-30T15:43:42Z 13118 03:38:38 39.710718706997 Gooby 1.2.0
|
1127
|
+
// points.push(new GLatLng(36.1641,-86.74015)); // (1105 of 1207.0) 2005-04-30T15:43:54Z 13130 03:38:50 39.7474508894002 Gooby 1.2.0
|
1128
|
+
// points.push(new GLatLng(36.16399,-86.74052)); // (1106 of 1207.0) 2005-04-30T15:44:07Z 13143 03:39:03 39.782845032856 Gooby 1.2.0
|
1129
|
+
// points.push(new GLatLng(36.1639,-86.7409)); // (1107 of 1207.0) 2005-04-30T15:44:20Z 13156 03:39:16 39.8183940248012 Gooby 1.2.0
|
1130
|
+
// points.push(new GLatLng(36.16384,-86.74137)); // (1108 of 1207.0) 2005-04-30T15:44:35Z 13171 03:39:31 39.8611086341952 Gooby 1.2.0
|
1131
|
+
points.push(new GLatLng(36.16375,-86.7418)); // (1109 of 1207.0) 2005-04-30T15:44:50Z 13186 03:39:46 39.9009845132767 Gooby 1.2.0
|
1132
|
+
// points.push(new GLatLng(36.16369,-86.74225)); // (1110 of 1207.0) 2005-04-30T15:45:05Z 13201 03:40:01 39.941926850835 Gooby 1.2.0
|
1133
|
+
// points.push(new GLatLng(36.1636,-86.74266)); // (1111 of 1207.0) 2005-04-30T15:45:19Z 13215 03:40:15 39.9800675091662 Gooby 1.2.0
|
1134
|
+
points.push(new GLatLng(36.16354,-86.74303)); // (1112 of 1207.0) 2005-04-30T15:45:31Z 13227 03:40:27 40.0139447477574 40.0 00:06:02 Gooby 1.2.0
|
1135
|
+
// points.push(new GLatLng(36.16343,-86.74341)); // (1113 of 1207.0) 2005-04-30T15:45:44Z 13240 03:40:40 40.0501826812803 Gooby 1.2.0
|
1136
|
+
// points.push(new GLatLng(36.16332,-86.74382)); // (1114 of 1207.0) 2005-04-30T15:45:58Z 13254 03:40:54 40.0889665031563 Gooby 1.2.0
|
1137
|
+
// points.push(new GLatLng(36.16317,-86.74425)); // (1115 of 1207.0) 2005-04-30T15:46:13Z 13269 03:41:09 40.1310157806581 Gooby 1.2.0
|
1138
|
+
// points.push(new GLatLng(36.16307,-86.74457)); // (1116 of 1207.0) 2005-04-30T15:46:25Z 13281 03:41:21 40.1618184257036 Gooby 1.2.0
|
1139
|
+
// points.push(new GLatLng(36.163,-86.74496)); // (1117 of 1207.0) 2005-04-30T15:46:37Z 13293 03:41:33 40.1976826476196 Gooby 1.2.0
|
1140
|
+
points.push(new GLatLng(36.16309,-86.74528)); // (1118 of 1207.0) 2005-04-30T15:46:48Z 13304 03:41:44 40.2281015408527 Gooby 1.2.0
|
1141
|
+
// points.push(new GLatLng(36.16317,-86.74551)); // (1119 of 1207.0) 2005-04-30T15:46:56Z 13312 03:41:52 40.2505824928132 Gooby 1.2.0
|
1142
|
+
// points.push(new GLatLng(36.16322,-86.74564)); // (1120 of 1207.0) 2005-04-30T15:47:01Z 13317 03:41:57 40.2635091166597 Gooby 1.2.0
|
1143
|
+
// points.push(new GLatLng(36.16313,-86.74622)); // (1121 of 1207.0) 2005-04-30T15:47:19Z 13335 03:42:15 40.3165273984971 Gooby 1.2.0
|
1144
|
+
// points.push(new GLatLng(36.16311,-86.74629)); // (1122 of 1207.0) 2005-04-30T15:47:21Z 13337 03:42:17 40.3231928608935 Gooby 1.2.0
|
1145
|
+
// points.push(new GLatLng(36.16304,-86.74657)); // (1123 of 1207.0) 2005-04-30T15:47:32Z 13348 03:42:28 40.3495052894506 Gooby 1.2.0
|
1146
|
+
points.push(new GLatLng(36.16296,-86.74689)); // (1124 of 1207.0) 2005-04-30T15:47:44Z 13360 03:42:40 40.3795766119092 Gooby 1.2.0
|
1147
|
+
// points.push(new GLatLng(36.16294,-86.74717)); // (1125 of 1207.0) 2005-04-30T15:47:54Z 13370 03:42:50 40.4048096215231 Gooby 1.2.0
|
1148
|
+
// points.push(new GLatLng(36.16292,-86.74734)); // (1126 of 1207.0) 2005-04-30T15:48:01Z 13377 03:42:57 40.4202311179699 Gooby 1.2.0
|
1149
|
+
// points.push(new GLatLng(36.16283,-86.7477)); // (1127 of 1207.0) 2005-04-30T15:48:14Z 13390 03:43:10 40.4540613723847 Gooby 1.2.0
|
1150
|
+
// points.push(new GLatLng(36.16272,-86.74813)); // (1128 of 1207.0) 2005-04-30T15:48:30Z 13406 03:43:26 40.4945530848404 Gooby 1.2.0
|
1151
|
+
// points.push(new GLatLng(36.16261,-86.74848)); // (1129 of 1207.0) 2005-04-30T15:48:43Z 13419 03:43:39 40.5282685994928 Gooby 1.2.0
|
1152
|
+
points.push(new GLatLng(36.16255,-86.74878)); // (1130 of 1207.0) 2005-04-30T15:48:56Z 13432 03:43:52 40.5560130698088 Gooby 1.2.0
|
1153
|
+
// points.push(new GLatLng(36.16249,-86.7491)); // (1131 of 1207.0) 2005-04-30T15:49:06Z 13442 03:44:02 40.5855033894913 Gooby 1.2.0
|
1154
|
+
// points.push(new GLatLng(36.16244,-86.74942)); // (1132 of 1207.0) 2005-04-30T15:49:16Z 13452 03:44:12 40.6147622357259 Gooby 1.2.0
|
1155
|
+
// points.push(new GLatLng(36.16238,-86.74978)); // (1133 of 1207.0) 2005-04-30T15:49:27Z 13463 03:44:23 40.6477604635381 Gooby 1.2.0
|
1156
|
+
// points.push(new GLatLng(36.16227,-86.75024)); // (1134 of 1207.0) 2005-04-30T15:49:41Z 13477 03:44:37 40.690827429755 Gooby 1.2.0
|
1157
|
+
// points.push(new GLatLng(36.16216,-86.75066)); // (1135 of 1207.0) 2005-04-30T15:49:55Z 13491 03:44:51 40.7304646192353 Gooby 1.2.0
|
1158
|
+
points.push(new GLatLng(36.1621,-86.75092)); // (1136 of 1207.0) 2005-04-30T15:50:03Z 13499 03:44:59 40.7547394298309 Gooby 1.2.0
|
1159
|
+
// points.push(new GLatLng(36.16206,-86.75116)); // (1137 of 1207.0) 2005-04-30T15:50:11Z 13507 03:45:07 40.7767379752699 Gooby 1.2.0
|
1160
|
+
// points.push(new GLatLng(36.16199,-86.7515)); // (1138 of 1207.0) 2005-04-30T15:50:23Z 13519 03:45:19 40.8082361003861 Gooby 1.2.0
|
1161
|
+
// points.push(new GLatLng(36.16193,-86.75195)); // (1139 of 1207.0) 2005-04-30T15:50:37Z 13533 03:45:33 40.8491795384828 Gooby 1.2.0
|
1162
|
+
// points.push(new GLatLng(36.16186,-86.75227)); // (1140 of 1207.0) 2005-04-30T15:50:48Z 13544 03:45:44 40.8789414958722 Gooby 1.2.0
|
1163
|
+
// points.push(new GLatLng(36.16176,-86.75277)); // (1141 of 1207.0) 2005-04-30T15:51:04Z 13560 03:46:00 40.9251827994346 Gooby 1.2.0
|
1164
|
+
points.push(new GLatLng(36.16167,-86.75318)); // (1142 of 1207.0) 2005-04-30T15:51:18Z 13574 03:46:14 40.9633244028708 Gooby 1.2.0
|
1165
|
+
points.push(new GLatLng(36.16156,-86.75365)); // (1143 of 1207.0) 2005-04-30T15:51:33Z 13589 03:46:29 41.0072531304423 41.0 00:06:02 Gooby 1.2.0
|
1166
|
+
// points.push(new GLatLng(36.16154,-86.75386)); // (1144 of 1207.0) 2005-04-30T15:51:40Z 13596 03:46:36 41.0262352415667 Gooby 1.2.0
|
1167
|
+
// points.push(new GLatLng(36.16152,-86.75408)); // (1145 of 1207.0) 2005-04-30T15:51:47Z 13603 03:46:43 41.0461095743877 Gooby 1.2.0
|
1168
|
+
// points.push(new GLatLng(36.16148,-86.75431)); // (1146 of 1207.0) 2005-04-30T15:51:55Z 13611 03:46:51 41.0672299019092 Gooby 1.2.0
|
1169
|
+
// points.push(new GLatLng(36.16146,-86.75461)); // (1147 of 1207.0) 2005-04-30T15:52:05Z 13621 03:47:01 41.0942523308042 Gooby 1.2.0
|
1170
|
+
// points.push(new GLatLng(36.16143,-86.75485)); // (1148 of 1207.0) 2005-04-30T15:52:13Z 13629 03:47:09 41.1160535611231 Gooby 1.2.0
|
1171
|
+
points.push(new GLatLng(36.16141,-86.75508)); // (1149 of 1207.0) 2005-04-30T15:52:21Z 13637 03:47:17 41.1368197533606 Gooby 1.2.0
|
1172
|
+
// points.push(new GLatLng(36.16135,-86.75551)); // (1150 of 1207.0) 2005-04-30T15:52:35Z 13651 03:47:31 41.1759930317581 Gooby 1.2.0
|
1173
|
+
// points.push(new GLatLng(36.16131,-86.75579)); // (1151 of 1207.0) 2005-04-30T15:52:44Z 13660 03:47:40 41.201518985533 Gooby 1.2.0
|
1174
|
+
// points.push(new GLatLng(36.16128,-86.75609)); // (1152 of 1207.0) 2005-04-30T15:52:54Z 13670 03:47:50 41.2286558941961 Gooby 1.2.0
|
1175
|
+
// points.push(new GLatLng(36.16122,-86.75648)); // (1153 of 1207.0) 2005-04-30T15:53:07Z 13683 03:48:03 41.2642960310605 Gooby 1.2.0
|
1176
|
+
// points.push(new GLatLng(36.16118,-86.75684)); // (1154 of 1207.0) 2005-04-30T15:53:19Z 13695 03:48:15 41.2969179652042 Gooby 1.2.0
|
1177
|
+
points.push(new GLatLng(36.16113,-86.75717)); // (1155 of 1207.0) 2005-04-30T15:53:30Z 13706 03:48:26 41.3270593317494 Gooby 1.2.0
|
1178
|
+
// points.push(new GLatLng(36.16107,-86.75762)); // (1156 of 1207.0) 2005-04-30T15:53:44Z 13720 03:48:40 41.3680029899502 Gooby 1.2.0
|
1179
|
+
// points.push(new GLatLng(36.16103,-86.75809)); // (1157 of 1207.0) 2005-04-30T15:53:59Z 13735 03:48:55 41.4104286369417 Gooby 1.2.0
|
1180
|
+
// points.push(new GLatLng(36.16096,-86.75856)); // (1158 of 1207.0) 2005-04-30T15:54:14Z 13750 03:49:10 41.4533324963307 Gooby 1.2.0
|
1181
|
+
// points.push(new GLatLng(36.16094,-86.75888)); // (1159 of 1207.0) 2005-04-30T15:54:24Z 13760 03:49:20 41.482144872299 Gooby 1.2.0
|
1182
|
+
// points.push(new GLatLng(36.16098,-86.75938)); // (1160 of 1207.0) 2005-04-30T15:54:40Z 13776 03:49:36 41.5272497581619 Gooby 1.2.0
|
1183
|
+
points.push(new GLatLng(36.16103,-86.76006)); // (1161 of 1207.0) 2005-04-30T15:55:02Z 13798 03:49:58 41.5885460537945 Gooby 1.2.0
|
1184
|
+
// points.push(new GLatLng(36.16107,-86.76075)); // (1162 of 1207.0) 2005-04-30T15:55:24Z 13820 03:50:20 41.6506470066946 Gooby 1.2.0
|
1185
|
+
// points.push(new GLatLng(36.16107,-86.76111)); // (1163 of 1207.0) 2005-04-30T15:55:35Z 13831 03:50:31 41.6829641937431 Gooby 1.2.0
|
1186
|
+
// points.push(new GLatLng(36.16109,-86.76137)); // (1164 of 1207.0) 2005-04-30T15:55:43Z 13839 03:50:39 41.7064099702506 Gooby 1.2.0
|
1187
|
+
// points.push(new GLatLng(36.16111,-86.76163)); // (1165 of 1207.0) 2005-04-30T15:55:51Z 13847 03:50:47 41.7298557467581 Gooby 1.2.0
|
1188
|
+
// points.push(new GLatLng(36.16116,-86.76204)); // (1166 of 1207.0) 2005-04-30T15:56:04Z 13860 03:51:00 41.7670790049957 Gooby 1.2.0
|
1189
|
+
points.push(new GLatLng(36.16116,-86.76242)); // (1167 of 1207.0) 2005-04-30T15:56:16Z 13872 03:51:12 41.80119151468 Gooby 1.2.0
|
1190
|
+
// points.push(new GLatLng(36.1612,-86.76287)); // (1168 of 1207.0) 2005-04-30T15:56:31Z 13887 03:51:27 41.8418321797811 Gooby 1.2.0
|
1191
|
+
// points.push(new GLatLng(36.1612,-86.76335)); // (1169 of 1207.0) 2005-04-30T15:56:45Z 13901 03:51:41 41.8849217392745 Gooby 1.2.0
|
1192
|
+
// points.push(new GLatLng(36.16124,-86.76375)); // (1170 of 1207.0) 2005-04-30T15:56:58Z 13914 03:51:54 41.9211041734624 Gooby 1.2.0
|
1193
|
+
// points.push(new GLatLng(36.16126,-86.76382)); // (1171 of 1207.0) 2005-04-30T15:57:00Z 13916 03:51:56 41.9277696358588 Gooby 1.2.0
|
1194
|
+
// points.push(new GLatLng(36.16128,-86.76408)); // (1172 of 1207.0) 2005-04-30T15:57:08Z 13924 03:52:04 41.9512154123663 Gooby 1.2.0
|
1195
|
+
points.push(new GLatLng(36.16131,-86.76429)); // (1173 of 1207.0) 2005-04-30T15:57:15Z 13931 03:52:11 41.9703601424804 Gooby 1.2.0
|
1196
|
+
// points.push(new GLatLng(36.16135,-86.76459)); // (1174 of 1207.0) 2005-04-30T15:57:25Z 13941 03:52:21 41.9976559879819 Gooby 1.2.0
|
1197
|
+
points.push(new GLatLng(36.16139,-86.76491)); // (1175 of 1207.0) 2005-04-30T15:57:35Z 13951 03:52:31 42.0267246395417 42.0 00:06:02 Gooby 1.2.0
|
1198
|
+
// points.push(new GLatLng(36.16143,-86.76526)); // (1176 of 1207.0) 2005-04-30T15:57:46Z 13962 03:52:42 42.0584573573643 Gooby 1.2.0
|
1199
|
+
// points.push(new GLatLng(36.16148,-86.76551)); // (1177 of 1207.0) 2005-04-30T15:57:55Z 13971 03:52:51 42.0815780091455 Gooby 1.2.0
|
1200
|
+
// points.push(new GLatLng(36.16152,-86.76586)); // (1178 of 1207.0) 2005-04-30T15:58:06Z 13982 03:53:02 42.1133105849717 Gooby 1.2.0
|
1201
|
+
// points.push(new GLatLng(36.16154,-86.76611)); // (1179 of 1207.0) 2005-04-30T15:58:14Z 13990 03:53:10 42.1358629779537 Gooby 1.2.0
|
1202
|
+
// points.push(new GLatLng(36.16161,-86.76644)); // (1180 of 1207.0) 2005-04-30T15:58:24Z 14000 03:53:20 42.1664922277431 Gooby 1.2.0
|
1203
|
+
points.push(new GLatLng(36.16165,-86.76667)); // (1181 of 1207.0) 2005-04-30T15:58:31Z 14007 03:53:27 42.1876125552646 Gooby 1.2.0
|
1204
|
+
// points.push(new GLatLng(36.16171,-86.76708)); // (1182 of 1207.0) 2005-04-30T15:58:43Z 14019 03:53:39 42.2250176724317 Gooby 1.2.0
|
1205
|
+
// points.push(new GLatLng(36.1618,-86.76732)); // (1183 of 1207.0) 2005-04-30T15:58:51Z 14027 03:53:47 42.2487729378379 Gooby 1.2.0
|
1206
|
+
// points.push(new GLatLng(36.16186,-86.76757)); // (1184 of 1207.0) 2005-04-30T15:58:59Z 14035 03:53:55 42.272185635225 Gooby 1.2.0
|
1207
|
+
// points.push(new GLatLng(36.16193,-86.76783)); // (1185 of 1207.0) 2005-04-30T15:59:07Z 14043 03:54:03 42.2967893658046 Gooby 1.2.0
|
1208
|
+
// points.push(new GLatLng(36.16206,-86.76809)); // (1186 of 1207.0) 2005-04-30T15:59:16Z 14052 03:54:12 42.3242428997814 Gooby 1.2.0
|
1209
|
+
points.push(new GLatLng(36.16227,-86.76832)); // (1187 of 1207.0) 2005-04-30T15:59:27Z 14063 03:54:23 42.3554117105382 Gooby 1.2.0
|
1210
|
+
// points.push(new GLatLng(36.16246,-86.76845)); // (1188 of 1207.0) 2005-04-30T15:59:35Z 14071 03:54:31 42.3795469036543 Gooby 1.2.0
|
1211
|
+
// points.push(new GLatLng(36.16272,-86.7686)); // (1189 of 1207.0) 2005-04-30T15:59:45Z 14081 03:54:41 42.4114382605593 Gooby 1.2.0
|
1212
|
+
// points.push(new GLatLng(36.16309,-86.76893)); // (1190 of 1207.0) 2005-04-30T16:00:01Z 14097 03:54:57 42.4621339371946 Gooby 1.2.0
|
1213
|
+
// points.push(new GLatLng(36.16345,-86.76908)); // (1191 of 1207.0) 2005-04-30T16:00:13Z 14109 03:55:09 42.5043662709528 Gooby 1.2.0
|
1214
|
+
// points.push(new GLatLng(36.16364,-86.76918)); // (1192 of 1207.0) 2005-04-30T16:00:19Z 14115 03:55:15 42.5273202781855 Gooby 1.2.0
|
1215
|
+
points.push(new GLatLng(36.1639,-86.76933)); // (1193 of 1207.0) 2005-04-30T16:00:27Z 14123 03:55:23 42.5592114938004 Gooby 1.2.0
|
1216
|
+
// points.push(new GLatLng(36.1642,-86.7695)); // (1194 of 1207.0) 2005-04-30T16:00:37Z 14133 03:55:33 42.5958933471918 Gooby 1.2.0
|
1217
|
+
// points.push(new GLatLng(36.16461,-86.76972)); // (1195 of 1207.0) 2005-04-30T16:00:51Z 14147 03:55:47 42.6455748713651 Gooby 1.2.0
|
1218
|
+
// points.push(new GLatLng(36.16491,-86.76996)); // (1196 of 1207.0) 2005-04-30T16:01:02Z 14158 03:55:58 42.685284068017 Gooby 1.2.0
|
1219
|
+
// points.push(new GLatLng(36.16495,-86.77004)); // (1197 of 1207.0) 2005-04-30T16:01:05Z 14161 03:56:01 42.693731302928 Gooby 1.2.0
|
1220
|
+
// points.push(new GLatLng(36.16491,-86.77023)); // (1198 of 1207.0) 2005-04-30T16:01:11Z 14167 03:56:07 42.7113572581174 Gooby 1.2.0
|
1221
|
+
points.push(new GLatLng(36.16476,-86.77051)); // (1199 of 1207.0) 2005-04-30T16:01:19Z 14175 03:56:15 42.7415219365479 Gooby 1.2.0
|
1222
|
+
// points.push(new GLatLng(36.16461,-86.7709)); // (1200 of 1207.0) 2005-04-30T16:01:29Z 14185 03:56:25 42.7803006461472 Gooby 1.2.0
|
1223
|
+
// points.push(new GLatLng(36.16444,-86.77137)); // (1201 of 1207.0) 2005-04-30T16:01:41Z 14197 03:56:37 42.8265315220625 Gooby 1.2.0
|
1224
|
+
// points.push(new GLatLng(36.16425,-86.77182)); // (1202 of 1207.0) 2005-04-30T16:01:53Z 14209 03:56:49 42.8721172549171 Gooby 1.2.0
|
1225
|
+
// points.push(new GLatLng(36.16422,-86.77191)); // (1203 of 1207.0) 2005-04-30T16:01:59Z 14215 03:56:55 42.8808581021334 Gooby 1.2.0
|
1226
|
+
// points.push(new GLatLng(36.1642,-86.77195)); // (1204 of 1207.0) 2005-04-30T16:02:03Z 14219 03:56:59 42.8850822529749 Gooby 1.2.0
|
1227
|
+
points.push(new GLatLng(36.16416,-86.77202)); // (1205 of 1207.0) 2005-04-30T16:02:12Z 14228 03:57:08 42.8927792562775 Gooby 1.2.0
|
1228
|
+
// points.push(new GLatLng(36.16416,-86.77204)); // (1206 of 1207.0) 2005-04-30T16:02:22Z 14238 03:57:18 42.8945704057192 Gooby 1.2.0
|
1229
|
+
points.push(new GLatLng(36.16416,-86.7721)); // (1207 of 1207.0) 2005-04-30T16:02:31Z 14247 03:57:27 42.8999547441992 Gooby 1.2.0
|
1230
1230
|
|
1231
1231
|
var routePolyline = new GPolyline(points);
|
1232
1232
|
map.addOverlay(routePolyline);
|
@@ -1246,250 +1246,394 @@
|
|
1246
1246
|
var pStart = new GPoint(-86.80903, 36.14661);
|
1247
1247
|
var mStart = new GMarker(pStart, iconStart);
|
1248
1248
|
GEvent.addListener(mStart, "click", function() {
|
1249
|
-
mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance
|
1249
|
+
mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance:</td><td>0.0 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:05:04Z</td></tr><tr><td>Elapsed Time:</td><td>00:00:00</td></tr><tr><td>Average Pace:</td><td></td></tr><tr><td>Lat/Lng:</td><td>36.14661 , -86.80903</td></tr><tr><td>Altitude:</td><td>157.794</td></tr></table>");
|
1250
1250
|
});
|
1251
1251
|
map.addOverlay(mStart);
|
1252
1252
|
|
1253
1253
|
var icon1 = new GIcon(baseIcon);
|
1254
1254
|
icon1.image = "http://www.joakim-systems.com/gicons/marker1.png";
|
1255
|
-
var p1 = new GPoint(-86.
|
1255
|
+
var p1 = new GPoint(-86.79931, 36.15129);
|
1256
1256
|
var m1 = new GMarker(p1, icon1);
|
1257
1257
|
GEvent.addListener(m1, "click", function() {
|
1258
|
-
m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1258
|
+
m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 1</b></td></tr><tr><td>Distance:</td><td>1.02010795135251 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:10:19Z</td></tr><tr><td>Elapsed Time:</td><td>00:05:15</td></tr><tr><td>Average Pace:</td><td>5:08.790 per km</td></tr><tr><td>Lat/Lng:</td><td>36.15129 , -86.79931</td></tr><tr><td>Altitude:</td><td>153.948</td></tr></table>");
|
1259
1259
|
});
|
1260
1260
|
map.addOverlay(m1);
|
1261
1261
|
|
1262
1262
|
var icon2 = new GIcon(baseIcon);
|
1263
1263
|
icon2.image = "http://www.joakim-systems.com/gicons/marker2.png";
|
1264
|
-
var p2 = new GPoint(-86.
|
1264
|
+
var p2 = new GPoint(-86.78974, 36.15558);
|
1265
1265
|
var m2 = new GMarker(p2, icon2);
|
1266
1266
|
GEvent.addListener(m2, "click", function() {
|
1267
|
-
m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1267
|
+
m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 2</b></td></tr><tr><td>Distance:</td><td>2.00550196328843 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:15:30Z</td></tr><tr><td>Elapsed Time:</td><td>00:10:26</td></tr><tr><td>Average Pace:</td><td>5:12.141 per km</td></tr><tr><td>Lat/Lng:</td><td>36.15558 , -86.78974</td></tr><tr><td>Altitude:</td><td>148.18</td></tr></table>");
|
1268
1268
|
});
|
1269
1269
|
map.addOverlay(m2);
|
1270
1270
|
|
1271
1271
|
var icon3 = new GIcon(baseIcon);
|
1272
1272
|
icon3.image = "http://www.joakim-systems.com/gicons/marker3.png";
|
1273
|
-
var p3 = new GPoint(-86.
|
1273
|
+
var p3 = new GPoint(-86.79154, 36.15225);
|
1274
1274
|
var m3 = new GMarker(p3, icon3);
|
1275
1275
|
GEvent.addListener(m3, "click", function() {
|
1276
|
-
m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1276
|
+
m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 3</b></td></tr><tr><td>Distance:</td><td>3.01123801632288 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:21:00Z</td></tr><tr><td>Elapsed Time:</td><td>00:15:56</td></tr><tr><td>Average Pace:</td><td>5:17.477 per km</td></tr><tr><td>Lat/Lng:</td><td>36.15225 , -86.79154</td></tr><tr><td>Altitude:</td><td>169.81</td></tr></table>");
|
1277
1277
|
});
|
1278
1278
|
map.addOverlay(m3);
|
1279
1279
|
|
1280
1280
|
var icon4 = new GIcon(baseIcon);
|
1281
1281
|
icon4.image = "http://www.joakim-systems.com/gicons/marker4.png";
|
1282
|
-
var p4 = new GPoint(-86.
|
1282
|
+
var p4 = new GPoint(-86.79431, 36.14433);
|
1283
1283
|
var m4 = new GMarker(p4, icon4);
|
1284
1284
|
GEvent.addListener(m4, "click", function() {
|
1285
|
-
m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1285
|
+
m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 4</b></td></tr><tr><td>Distance:</td><td>4.03033580459287 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:26:13Z</td></tr><tr><td>Elapsed Time:</td><td>00:21:09</td></tr><tr><td>Average Pace:</td><td>5:14.862 per km</td></tr><tr><td>Lat/Lng:</td><td>36.14433 , -86.79431</td></tr><tr><td>Altitude:</td><td>169.329</td></tr></table>");
|
1286
1286
|
});
|
1287
1287
|
map.addOverlay(m4);
|
1288
1288
|
|
1289
1289
|
var icon5 = new GIcon(baseIcon);
|
1290
1290
|
icon5.image = "http://www.joakim-systems.com/gicons/marker5.png";
|
1291
|
-
var p5 = new GPoint(-86.
|
1291
|
+
var p5 = new GPoint(-86.79682, 36.13581);
|
1292
1292
|
var m5 = new GMarker(p5, icon5);
|
1293
1293
|
GEvent.addListener(m5, "click", function() {
|
1294
|
-
m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1294
|
+
m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 5</b></td></tr><tr><td>Distance:</td><td>5.02608835794093 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:31:48Z</td></tr><tr><td>Elapsed Time:</td><td>00:26:44</td></tr><tr><td>Average Pace:</td><td>5:19.134 per km</td></tr><tr><td>Lat/Lng:</td><td>36.13581 , -86.79682</td></tr><tr><td>Altitude:</td><td>191.92</td></tr></table>");
|
1295
1295
|
});
|
1296
1296
|
map.addOverlay(m5);
|
1297
1297
|
|
1298
1298
|
var icon6 = new GIcon(baseIcon);
|
1299
1299
|
icon6.image = "http://www.joakim-systems.com/gicons/marker6.png";
|
1300
|
-
var p6 = new GPoint(-86.
|
1300
|
+
var p6 = new GPoint(-86.79515, 36.12848);
|
1301
1301
|
var m6 = new GMarker(p6, icon6);
|
1302
1302
|
GEvent.addListener(m6, "click", function() {
|
1303
|
-
m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1303
|
+
m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 6</b></td></tr><tr><td>Distance:</td><td>6.00792106627951 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:37:01Z</td></tr><tr><td>Elapsed Time:</td><td>00:31:57</td></tr><tr><td>Average Pace:</td><td>5:19.078 per km</td></tr><tr><td>Lat/Lng:</td><td>36.12848 , -86.79515</td></tr><tr><td>Altitude:</td><td>192.401</td></tr></table>");
|
1304
1304
|
});
|
1305
1305
|
map.addOverlay(m6);
|
1306
1306
|
|
1307
1307
|
var icon7 = new GIcon(baseIcon);
|
1308
1308
|
icon7.image = "http://www.joakim-systems.com/gicons/marker7.png";
|
1309
|
-
var p7 = new GPoint(-86.
|
1309
|
+
var p7 = new GPoint(-86.79553, 36.11974);
|
1310
1310
|
var m7 = new GMarker(p7, icon7);
|
1311
1311
|
GEvent.addListener(m7, "click", function() {
|
1312
|
-
m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1312
|
+
m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 7</b></td></tr><tr><td>Distance:</td><td>7.02299072191637 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:42:24Z</td></tr><tr><td>Elapsed Time:</td><td>00:37:20</td></tr><tr><td>Average Pace:</td><td>5:18.952 per km</td></tr><tr><td>Lat/Lng:</td><td>36.11974 , -86.79553</td></tr><tr><td>Altitude:</td><td>180.865</td></tr></table>");
|
1313
1313
|
});
|
1314
1314
|
map.addOverlay(m7);
|
1315
1315
|
|
1316
1316
|
var icon8 = new GIcon(baseIcon);
|
1317
1317
|
icon8.image = "http://www.joakim-systems.com/gicons/marker8.png";
|
1318
|
-
var p8 = new GPoint(-86.
|
1318
|
+
var p8 = new GPoint(-86.7962, 36.11386);
|
1319
1319
|
var m8 = new GMarker(p8, icon8);
|
1320
1320
|
GEvent.addListener(m8, "click", function() {
|
1321
|
-
m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1321
|
+
m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 8</b></td></tr><tr><td>Distance:</td><td>8.03853691446787 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:47:41Z</td></tr><tr><td>Elapsed Time:</td><td>00:42:37</td></tr><tr><td>Average Pace:</td><td>5:18.092 per km</td></tr><tr><td>Lat/Lng:</td><td>36.11386 , -86.7962</td></tr><tr><td>Altitude:</td><td>178.943</td></tr></table>");
|
1322
1322
|
});
|
1323
1323
|
map.addOverlay(m8);
|
1324
1324
|
|
1325
1325
|
var icon9 = new GIcon(baseIcon);
|
1326
1326
|
icon9.image = "http://www.joakim-systems.com/gicons/marker9.png";
|
1327
|
-
var p9 = new GPoint(-86.
|
1327
|
+
var p9 = new GPoint(-86.78678, 36.11479);
|
1328
1328
|
var m9 = new GMarker(p9, icon9);
|
1329
1329
|
GEvent.addListener(m9, "click", function() {
|
1330
|
-
m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1330
|
+
m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 9</b></td></tr><tr><td>Distance:</td><td>9.03906851730323 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:52:52Z</td></tr><tr><td>Elapsed Time:</td><td>00:47:48</td></tr><tr><td>Average Pace:</td><td>5:17.289 per km</td></tr><tr><td>Lat/Lng:</td><td>36.11479 , -86.78678</td></tr><tr><td>Altitude:</td><td>174.617</td></tr></table>");
|
1331
1331
|
});
|
1332
1332
|
map.addOverlay(m9);
|
1333
1333
|
|
1334
1334
|
var icon10 = new GIcon(baseIcon);
|
1335
1335
|
icon10.image = "http://www.joakim-systems.com/gicons/marker10.png";
|
1336
|
-
var p10 = new GPoint(-86.
|
1336
|
+
var p10 = new GPoint(-86.79744, 36.11556);
|
1337
1337
|
var m10 = new GMarker(p10, icon10);
|
1338
1338
|
GEvent.addListener(m10, "click", function() {
|
1339
|
-
m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1339
|
+
m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 10</b></td></tr><tr><td>Distance:</td><td>10.007493871396 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T12:58:07Z</td></tr><tr><td>Elapsed Time:</td><td>00:53:03</td></tr><tr><td>Average Pace:</td><td>5:18.061 per km</td></tr><tr><td>Lat/Lng:</td><td>36.11556 , -86.79744</td></tr><tr><td>Altitude:</td><td>170.771</td></tr></table>");
|
1340
1340
|
});
|
1341
1341
|
map.addOverlay(m10);
|
1342
1342
|
|
1343
1343
|
var icon11 = new GIcon(baseIcon);
|
1344
1344
|
icon11.image = "http://www.joakim-systems.com/gicons/marker11.png";
|
1345
|
-
var p11 = new GPoint(-86.
|
1345
|
+
var p11 = new GPoint(-86.7945, 36.12335);
|
1346
1346
|
var m11 = new GMarker(p11, icon11);
|
1347
1347
|
GEvent.addListener(m11, "click", function() {
|
1348
|
-
m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1348
|
+
m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 11</b></td></tr><tr><td>Distance:</td><td>11.0355123895513 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:03:40Z</td></tr><tr><td>Elapsed Time:</td><td>00:58:36</td></tr><tr><td>Average Pace:</td><td>5:18.607 per km</td></tr><tr><td>Lat/Lng:</td><td>36.12335 , -86.7945</td></tr><tr><td>Altitude:</td><td>178.462</td></tr></table>");
|
1349
1349
|
});
|
1350
1350
|
map.addOverlay(m11);
|
1351
1351
|
|
1352
1352
|
var icon12 = new GIcon(baseIcon);
|
1353
1353
|
icon12.image = "http://www.joakim-systems.com/gicons/marker12.png";
|
1354
|
-
var p12 = new GPoint(-86.
|
1354
|
+
var p12 = new GPoint(-86.79553, 36.13193);
|
1355
1355
|
var m12 = new GMarker(p12, icon12);
|
1356
1356
|
GEvent.addListener(m12, "click", function() {
|
1357
|
-
m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1357
|
+
m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 12</b></td></tr><tr><td>Distance:</td><td>12.0307451292449 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:09:08Z</td></tr><tr><td>Elapsed Time:</td><td>01:04:04</td></tr><tr><td>Average Pace:</td><td>5:19.514 per km</td></tr><tr><td>Lat/Lng:</td><td>36.13193 , -86.79553</td></tr><tr><td>Altitude:</td><td>190.478</td></tr></table>");
|
1358
1358
|
});
|
1359
1359
|
map.addOverlay(m12);
|
1360
1360
|
|
1361
1361
|
var icon13 = new GIcon(baseIcon);
|
1362
1362
|
icon13.image = "http://www.joakim-systems.com/gicons/marker13.png";
|
1363
|
-
var p13 = new GPoint(-86.
|
1363
|
+
var p13 = new GPoint(-86.79405, 36.13869);
|
1364
1364
|
var m13 = new GMarker(p13, icon13);
|
1365
1365
|
GEvent.addListener(m13, "click", function() {
|
1366
|
-
m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1366
|
+
m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 13</b></td></tr><tr><td>Distance:</td><td>13.0174650604009 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:14:21Z</td></tr><tr><td>Elapsed Time:</td><td>01:09:17</td></tr><tr><td>Average Pace:</td><td>5:19.340 per km</td></tr><tr><td>Lat/Lng:</td><td>36.13869 , -86.79405</td></tr><tr><td>Altitude:</td><td>189.036</td></tr></table>");
|
1367
1367
|
});
|
1368
1368
|
map.addOverlay(m13);
|
1369
1369
|
|
1370
1370
|
var icon14 = new GIcon(baseIcon);
|
1371
1371
|
icon14.image = "http://www.joakim-systems.com/gicons/marker14.png";
|
1372
|
-
var p14 = new GPoint(-86.
|
1372
|
+
var p14 = new GPoint(-86.79236, 36.14796);
|
1373
1373
|
var m14 = new GMarker(p14, icon14);
|
1374
1374
|
GEvent.addListener(m14, "click", function() {
|
1375
|
-
m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1375
|
+
m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 14</b></td></tr><tr><td>Distance:</td><td>14.0601740981045 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:19:47Z</td></tr><tr><td>Elapsed Time:</td><td>01:14:43</td></tr><tr><td>Average Pace:</td><td>5:18.843 per km</td></tr><tr><td>Lat/Lng:</td><td>36.14796 , -86.79236</td></tr><tr><td>Altitude:</td><td>161.639</td></tr></table>");
|
1376
1376
|
});
|
1377
1377
|
map.addOverlay(m14);
|
1378
1378
|
|
1379
1379
|
var icon15 = new GIcon(baseIcon);
|
1380
1380
|
icon15.image = "http://www.joakim-systems.com/gicons/marker15.png";
|
1381
|
-
var p15 = new GPoint(-86.
|
1381
|
+
var p15 = new GPoint(-86.78611, 36.15129);
|
1382
1382
|
var m15 = new GMarker(p15, icon15);
|
1383
1383
|
GEvent.addListener(m15, "click", function() {
|
1384
|
-
m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1384
|
+
m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 15</b></td></tr><tr><td>Distance:</td><td>15.0083821776965 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:24:52Z</td></tr><tr><td>Elapsed Time:</td><td>01:19:48</td></tr><tr><td>Average Pace:</td><td>5:19.021 per km</td></tr><tr><td>Lat/Lng:</td><td>36.15129 , -86.78611</td></tr><tr><td>Altitude:</td><td>155.39</td></tr></table>");
|
1385
1385
|
});
|
1386
1386
|
map.addOverlay(m15);
|
1387
1387
|
|
1388
1388
|
var icon16 = new GIcon(baseIcon);
|
1389
1389
|
icon16.image = "http://www.joakim-systems.com/gicons/marker16.png";
|
1390
|
-
var p16 = new GPoint(-86.
|
1390
|
+
var p16 = new GPoint(-86.78691, 36.15807);
|
1391
1391
|
var m16 = new GMarker(p16, icon16);
|
1392
1392
|
GEvent.addListener(m16, "click", function() {
|
1393
|
-
m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1393
|
+
m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 16</b></td></tr><tr><td>Distance:</td><td>16.0167337026276 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:30:05Z</td></tr><tr><td>Elapsed Time:</td><td>01:25:01</td></tr><tr><td>Average Pace:</td><td>5:18.479 per km</td></tr><tr><td>Lat/Lng:</td><td>36.15807 , -86.78691</td></tr><tr><td>Altitude:</td><td>135.203</td></tr></table>");
|
1394
1394
|
});
|
1395
1395
|
map.addOverlay(m16);
|
1396
1396
|
|
1397
1397
|
var icon17 = new GIcon(baseIcon);
|
1398
1398
|
icon17.image = "http://www.joakim-systems.com/gicons/marker17.png";
|
1399
|
-
var p17 = new GPoint(-86.
|
1399
|
+
var p17 = new GPoint(-86.78875, 36.16482);
|
1400
1400
|
var m17 = new GMarker(p17, icon17);
|
1401
1401
|
GEvent.addListener(m17, "click", function() {
|
1402
|
-
m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1402
|
+
m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 17</b></td></tr><tr><td>Distance:</td><td>17.0159216960944 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:35:27Z</td></tr><tr><td>Elapsed Time:</td><td>01:30:23</td></tr><tr><td>Average Pace:</td><td>5:18.701 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16482 , -86.78875</td></tr><tr><td>Altitude:</td><td>127.512</td></tr></table>");
|
1403
1403
|
});
|
1404
1404
|
map.addOverlay(m17);
|
1405
1405
|
|
1406
1406
|
var icon18 = new GIcon(baseIcon);
|
1407
1407
|
icon18.image = "http://www.joakim-systems.com/gicons/marker18.png";
|
1408
|
-
var p18 = new GPoint(-86.
|
1408
|
+
var p18 = new GPoint(-86.79126, 36.17283);
|
1409
1409
|
var m18 = new GMarker(p18, icon18);
|
1410
1410
|
GEvent.addListener(m18, "click", function() {
|
1411
|
-
m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1411
|
+
m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 18</b></td></tr><tr><td>Distance:</td><td>18.0175361186383 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:40:52Z</td></tr><tr><td>Elapsed Time:</td><td>01:35:48</td></tr><tr><td>Average Pace:</td><td>5:19.022 per km</td></tr><tr><td>Lat/Lng:</td><td>36.17283 , -86.79126</td></tr><tr><td>Altitude:</td><td>127.512</td></tr></table>");
|
1412
1412
|
});
|
1413
1413
|
map.addOverlay(m18);
|
1414
1414
|
|
1415
1415
|
var icon19 = new GIcon(baseIcon);
|
1416
1416
|
icon19.image = "http://www.joakim-systems.com/gicons/marker19.png";
|
1417
|
-
var p19 = new GPoint(-86.
|
1417
|
+
var p19 = new GPoint(-86.79652, 36.18083);
|
1418
1418
|
var m19 = new GMarker(p19, icon19);
|
1419
1419
|
GEvent.addListener(m19, "click", function() {
|
1420
|
-
m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1420
|
+
m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 19</b></td></tr><tr><td>Distance:</td><td>19.0419765719939 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:46:24Z</td></tr><tr><td>Elapsed Time:</td><td>01:41:20</td></tr><tr><td>Average Pace:</td><td>5:19.294 per km</td></tr><tr><td>Lat/Lng:</td><td>36.18083 , -86.79652</td></tr><tr><td>Altitude:</td><td>142.412</td></tr></table>");
|
1421
1421
|
});
|
1422
1422
|
map.addOverlay(m19);
|
1423
1423
|
|
1424
1424
|
var icon20 = new GIcon(baseIcon);
|
1425
1425
|
icon20.image = "http://www.joakim-systems.com/gicons/marker20.png";
|
1426
|
-
var p20 = new GPoint(-86.
|
1426
|
+
var p20 = new GPoint(-86.80068, 36.18738);
|
1427
1427
|
var m20 = new GMarker(p20, icon20);
|
1428
1428
|
GEvent.addListener(m20, "click", function() {
|
1429
|
-
m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1429
|
+
m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 20</b></td></tr><tr><td>Distance:</td><td>20.0441940556088 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:51:47Z</td></tr><tr><td>Elapsed Time:</td><td>01:46:43</td></tr><tr><td>Average Pace:</td><td>5:19.444 per km</td></tr><tr><td>Lat/Lng:</td><td>36.18738 , -86.80068</td></tr><tr><td>Altitude:</td><td>150.103</td></tr></table>");
|
1430
1430
|
});
|
1431
1431
|
map.addOverlay(m20);
|
1432
1432
|
|
1433
1433
|
var icon21 = new GIcon(baseIcon);
|
1434
1434
|
icon21.image = "http://www.joakim-systems.com/gicons/marker21.png";
|
1435
|
-
var p21 = new GPoint(-86.
|
1435
|
+
var p21 = new GPoint(-86.80652, 36.19188);
|
1436
1436
|
var m21 = new GMarker(p21, icon21);
|
1437
1437
|
GEvent.addListener(m21, "click", function() {
|
1438
|
-
m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1438
|
+
m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 21</b></td></tr><tr><td>Distance:</td><td>21.0299085787628 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T13:56:57Z</td></tr><tr><td>Elapsed Time:</td><td>01:51:53</td></tr><tr><td>Average Pace:</td><td>5:19.212 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19188 , -86.80652</td></tr><tr><td>Altitude:</td><td>121.264</td></tr></table>");
|
1439
1439
|
});
|
1440
1440
|
map.addOverlay(m21);
|
1441
1441
|
|
1442
1442
|
var icon22 = new GIcon(baseIcon);
|
1443
1443
|
icon22.image = "http://www.joakim-systems.com/gicons/marker22.png";
|
1444
|
-
var p22 = new GPoint(-86.
|
1444
|
+
var p22 = new GPoint(-86.81542, 36.19263);
|
1445
1445
|
var m22 = new GMarker(p22, icon22);
|
1446
1446
|
GEvent.addListener(m22, "click", function() {
|
1447
|
-
m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1447
|
+
m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 22</b></td></tr><tr><td>Distance:</td><td>22.0102035282447 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:02:15Z</td></tr><tr><td>Elapsed Time:</td><td>01:57:11</td></tr><tr><td>Average Pace:</td><td>5:19.442 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19263 , -86.81542</td></tr><tr><td>Altitude:</td><td>135.683</td></tr></table>");
|
1448
1448
|
});
|
1449
1449
|
map.addOverlay(m22);
|
1450
1450
|
|
1451
1451
|
var icon23 = new GIcon(baseIcon);
|
1452
1452
|
icon23.image = "http://www.joakim-systems.com/gicons/marker23.png";
|
1453
|
-
var p23 = new GPoint(-86.
|
1453
|
+
var p23 = new GPoint(-86.82409, 36.19266);
|
1454
1454
|
var m23 = new GMarker(p23, icon23);
|
1455
1455
|
GEvent.addListener(m23, "click", function() {
|
1456
|
-
m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1456
|
+
m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 23</b></td></tr><tr><td>Distance:</td><td>23.0153830297525 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:07:44Z</td></tr><tr><td>Elapsed Time:</td><td>02:02:40</td></tr><tr><td>Average Pace:</td><td>5:19.786 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19266 , -86.82409</td></tr><tr><td>Altitude:</td><td>125.589</td></tr></table>");
|
1457
1457
|
});
|
1458
1458
|
map.addOverlay(m23);
|
1459
1459
|
|
1460
1460
|
var icon24 = new GIcon(baseIcon);
|
1461
1461
|
icon24.image = "http://www.joakim-systems.com/gicons/marker24.png";
|
1462
|
-
var p24 = new GPoint(-86.
|
1462
|
+
var p24 = new GPoint(-86.81815, 36.19834);
|
1463
1463
|
var m24 = new GMarker(p24, icon24);
|
1464
1464
|
GEvent.addListener(m24, "click", function() {
|
1465
|
-
m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1465
|
+
m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 24</b></td></tr><tr><td>Distance:</td><td>24.005286878173 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:13:12Z</td></tr><tr><td>Elapsed Time:</td><td>02:08:08</td></tr><tr><td>Average Pace:</td><td>5:20.262 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19834 , -86.81815</td></tr><tr><td>Altitude:</td><td>127.512</td></tr></table>");
|
1466
1466
|
});
|
1467
1467
|
map.addOverlay(m24);
|
1468
1468
|
|
1469
1469
|
var icon25 = new GIcon(baseIcon);
|
1470
1470
|
icon25.image = "http://www.joakim-systems.com/gicons/marker25.png";
|
1471
|
-
var p25 = new GPoint(-86.
|
1471
|
+
var p25 = new GPoint(-86.80781, 36.20139);
|
1472
1472
|
var m25 = new GMarker(p25, icon25);
|
1473
1473
|
GEvent.addListener(m25, "click", function() {
|
1474
|
-
m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1474
|
+
m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 25</b></td></tr><tr><td>Distance:</td><td>25.0136592223439 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:18:44Z</td></tr><tr><td>Elapsed Time:</td><td>02:13:40</td></tr><tr><td>Average Pace:</td><td>5:20.624 per km</td></tr><tr><td>Lat/Lng:</td><td>36.20139 , -86.80781</td></tr><tr><td>Altitude:</td><td>127.512</td></tr></table>");
|
1475
1475
|
});
|
1476
1476
|
map.addOverlay(m25);
|
1477
1477
|
|
1478
1478
|
var icon26 = new GIcon(baseIcon);
|
1479
1479
|
icon26.image = "http://www.joakim-systems.com/gicons/marker26.png";
|
1480
|
-
var p26 = new GPoint(-86.
|
1480
|
+
var p26 = new GPoint(-86.8062, 36.19987);
|
1481
1481
|
var m26 = new GMarker(p26, icon26);
|
1482
1482
|
GEvent.addListener(m26, "click", function() {
|
1483
|
-
m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>
|
1483
|
+
m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 26</b></td></tr><tr><td>Distance:</td><td>26.0075251030522 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:24:15Z</td></tr><tr><td>Elapsed Time:</td><td>02:19:11</td></tr><tr><td>Average Pace:</td><td>5:21.099 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19987 , -86.8062</td></tr><tr><td>Altitude:</td><td>127.512</td></tr></table>");
|
1484
1484
|
});
|
1485
1485
|
map.addOverlay(m26);
|
1486
1486
|
|
1487
|
+
var icon27 = new GIcon(baseIcon);
|
1488
|
+
icon27.image = "http://www.joakim-systems.com/gicons/marker27.png";
|
1489
|
+
var p27 = new GPoint(-86.8053, 36.19356);
|
1490
|
+
var m27 = new GMarker(p27, icon27);
|
1491
|
+
GEvent.addListener(m27, "click", function() {
|
1492
|
+
m27.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 27</b></td></tr><tr><td>Distance:</td><td>27.014409163216 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:29:49Z</td></tr><tr><td>Elapsed Time:</td><td>02:24:45</td></tr><tr><td>Average Pace:</td><td>5:21.495 per km</td></tr><tr><td>Lat/Lng:</td><td>36.19356 , -86.8053</td></tr><tr><td>Altitude:</td><td>122.225</td></tr></table>");
|
1493
|
+
});
|
1494
|
+
map.addOverlay(m27);
|
1495
|
+
|
1496
|
+
var icon28 = new GIcon(baseIcon);
|
1497
|
+
icon28.image = "http://www.joakim-systems.com/gicons/marker28.png";
|
1498
|
+
var p28 = new GPoint(-86.79843, 36.18819);
|
1499
|
+
var m28 = new GMarker(p28, icon28);
|
1500
|
+
GEvent.addListener(m28, "click", function() {
|
1501
|
+
m28.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 28</b></td></tr><tr><td>Distance:</td><td>28.0119164216253 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:35:48Z</td></tr><tr><td>Elapsed Time:</td><td>02:30:44</td></tr><tr><td>Average Pace:</td><td>5:22.862 per km</td></tr><tr><td>Lat/Lng:</td><td>36.18819 , -86.79843</td></tr><tr><td>Altitude:</td><td>149.142</td></tr></table>");
|
1502
|
+
});
|
1503
|
+
map.addOverlay(m28);
|
1504
|
+
|
1505
|
+
var icon29 = new GIcon(baseIcon);
|
1506
|
+
icon29.image = "http://www.joakim-systems.com/gicons/marker29.png";
|
1507
|
+
var p29 = new GPoint(-86.79555, 36.17954);
|
1508
|
+
var m29 = new GMarker(p29, icon29);
|
1509
|
+
GEvent.addListener(m29, "click", function() {
|
1510
|
+
m29.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 29</b></td></tr><tr><td>Distance:</td><td>29.0266255450017 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:41:35Z</td></tr><tr><td>Elapsed Time:</td><td>02:36:31</td></tr><tr><td>Average Pace:</td><td>5:23.530 per km</td></tr><tr><td>Lat/Lng:</td><td>36.17954 , -86.79555</td></tr><tr><td>Altitude:</td><td>144.816</td></tr></table>");
|
1511
|
+
});
|
1512
|
+
map.addOverlay(m29);
|
1513
|
+
|
1514
|
+
var icon30 = new GIcon(baseIcon);
|
1515
|
+
icon30.image = "http://www.joakim-systems.com/gicons/marker30.png";
|
1516
|
+
var p30 = new GPoint(-86.78931, 36.17382);
|
1517
|
+
var m30 = new GMarker(p30, icon30);
|
1518
|
+
GEvent.addListener(m30, "click", function() {
|
1519
|
+
m30.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 30</b></td></tr><tr><td>Distance:</td><td>30.0051221012567 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:47:01Z</td></tr><tr><td>Elapsed Time:</td><td>02:41:57</td></tr><tr><td>Average Pace:</td><td>5:23.844 per km</td></tr><tr><td>Lat/Lng:</td><td>36.17382 , -86.78931</td></tr><tr><td>Altitude:</td><td>130.396</td></tr></table>");
|
1520
|
+
});
|
1521
|
+
map.addOverlay(m30);
|
1522
|
+
|
1523
|
+
var icon31 = new GIcon(baseIcon);
|
1524
|
+
icon31.image = "http://www.joakim-systems.com/gicons/marker31.png";
|
1525
|
+
var p31 = new GPoint(-86.78236, 36.16839);
|
1526
|
+
var m31 = new GMarker(p31, icon31);
|
1527
|
+
GEvent.addListener(m31, "click", function() {
|
1528
|
+
m31.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 31</b></td></tr><tr><td>Distance:</td><td>31.0171112001024 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:53:12Z</td></tr><tr><td>Elapsed Time:</td><td>02:48:08</td></tr><tr><td>Average Pace:</td><td>5:25.239 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16839 , -86.78236</td></tr><tr><td>Altitude:</td><td>128.954</td></tr></table>");
|
1529
|
+
});
|
1530
|
+
map.addOverlay(m31);
|
1531
|
+
|
1532
|
+
var icon32 = new GIcon(baseIcon);
|
1533
|
+
icon32.image = "http://www.joakim-systems.com/gicons/marker32.png";
|
1534
|
+
var p32 = new GPoint(-86.77414, 36.16839);
|
1535
|
+
var m32 = new GMarker(p32, icon32);
|
1536
|
+
GEvent.addListener(m32, "click", function() {
|
1537
|
+
m32.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 32</b></td></tr><tr><td>Distance:</td><td>32.0240974982543 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T14:58:54Z</td></tr><tr><td>Elapsed Time:</td><td>02:53:50</td></tr><tr><td>Average Pace:</td><td>5:25.692 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16839 , -86.77414</td></tr><tr><td>Altitude:</td><td>137.125</td></tr></table>");
|
1538
|
+
});
|
1539
|
+
map.addOverlay(m32);
|
1540
|
+
|
1541
|
+
var icon33 = new GIcon(baseIcon);
|
1542
|
+
icon33.image = "http://www.joakim-systems.com/gicons/marker33.png";
|
1543
|
+
var p33 = new GPoint(-86.76442, 36.17124);
|
1544
|
+
var m33 = new GMarker(p33, icon33);
|
1545
|
+
GEvent.addListener(m33, "click", function() {
|
1546
|
+
m33.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 33</b></td></tr><tr><td>Distance:</td><td>33.0120842133874 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:04:40Z</td></tr><tr><td>Elapsed Time:</td><td>02:59:36</td></tr><tr><td>Average Pace:</td><td>5:26.425 per km</td></tr><tr><td>Lat/Lng:</td><td>36.17124 , -86.76442</td></tr><tr><td>Altitude:</td><td>140.97</td></tr></table>");
|
1547
|
+
});
|
1548
|
+
map.addOverlay(m33);
|
1549
|
+
|
1550
|
+
var icon34 = new GIcon(baseIcon);
|
1551
|
+
icon34.image = "http://www.joakim-systems.com/gicons/marker34.png";
|
1552
|
+
var p34 = new GPoint(-86.75963, 36.16298);
|
1553
|
+
var m34 = new GMarker(p34, icon34);
|
1554
|
+
GEvent.addListener(m34, "click", function() {
|
1555
|
+
m34.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 34</b></td></tr><tr><td>Distance:</td><td>34.0271246741063 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:10:37Z</td></tr><tr><td>Elapsed Time:</td><td>03:05:33</td></tr><tr><td>Average Pace:</td><td>5:27.180 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16298 , -86.75963</td></tr><tr><td>Altitude:</td><td>130.877</td></tr></table>");
|
1556
|
+
});
|
1557
|
+
map.addOverlay(m34);
|
1558
|
+
|
1559
|
+
var icon35 = new GIcon(baseIcon);
|
1560
|
+
icon35.image = "http://www.joakim-systems.com/gicons/marker35.png";
|
1561
|
+
var p35 = new GPoint(-86.75017, 36.16238);
|
1562
|
+
var m35 = new GMarker(p35, icon35);
|
1563
|
+
GEvent.addListener(m35, "click", function() {
|
1564
|
+
m35.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 35</b></td></tr><tr><td>Distance:</td><td>35.0262698636973 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:16:26Z</td></tr><tr><td>Elapsed Time:</td><td>03:11:22</td></tr><tr><td>Average Pace:</td><td>5:27.811 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16238 , -86.75017</td></tr><tr><td>Altitude:</td><td>130.877</td></tr></table>");
|
1565
|
+
});
|
1566
|
+
map.addOverlay(m35);
|
1567
|
+
|
1568
|
+
var icon36 = new GIcon(baseIcon);
|
1569
|
+
icon36.image = "http://www.joakim-systems.com/gicons/marker36.png";
|
1570
|
+
var p36 = new GPoint(-86.73966, 36.16425);
|
1571
|
+
var m36 = new GMarker(p36, icon36);
|
1572
|
+
GEvent.addListener(m36, "click", function() {
|
1573
|
+
m36.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 36</b></td></tr><tr><td>Distance:</td><td>36.0056582408328 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:22:22Z</td></tr><tr><td>Elapsed Time:</td><td>03:17:18</td></tr><tr><td>Average Pace:</td><td>5:28.781 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16425 , -86.73966</td></tr><tr><td>Altitude:</td><td>130.396</td></tr></table>");
|
1574
|
+
});
|
1575
|
+
map.addOverlay(m36);
|
1576
|
+
|
1577
|
+
var icon37 = new GIcon(baseIcon);
|
1578
|
+
icon37.image = "http://www.joakim-systems.com/gicons/marker37.png";
|
1579
|
+
var p37 = new GPoint(-86.73268, 36.16858);
|
1580
|
+
var m37 = new GMarker(p37, icon37);
|
1581
|
+
GEvent.addListener(m37, "click", function() {
|
1582
|
+
m37.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 37</b></td></tr><tr><td>Distance:</td><td>37.1003758107361 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:28:34Z</td></tr><tr><td>Elapsed Time:</td><td>03:23:30</td></tr><tr><td>Average Pace:</td><td>5:29.107 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16858 , -86.73268</td></tr><tr><td>Altitude:</td><td>132.799</td></tr></table>");
|
1583
|
+
});
|
1584
|
+
map.addOverlay(m37);
|
1585
|
+
|
1586
|
+
var icon38 = new GIcon(baseIcon);
|
1587
|
+
icon38.image = "http://www.joakim-systems.com/gicons/marker38.png";
|
1588
|
+
var p38 = new GPoint(-86.72951, 36.16875);
|
1589
|
+
var m38 = new GMarker(p38, icon38);
|
1590
|
+
GEvent.addListener(m38, "click", function() {
|
1591
|
+
m38.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 38</b></td></tr><tr><td>Distance:</td><td>38.2545716569535 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:35:09Z</td></tr><tr><td>Elapsed Time:</td><td>03:30:05</td></tr><tr><td>Average Pace:</td><td>5:29.503 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16875 , -86.72951</td></tr><tr><td>Altitude:</td><td>139.528</td></tr></table>");
|
1592
|
+
});
|
1593
|
+
map.addOverlay(m38);
|
1594
|
+
|
1595
|
+
var icon39 = new GIcon(baseIcon);
|
1596
|
+
icon39.image = "http://www.joakim-systems.com/gicons/marker39.png";
|
1597
|
+
var p39 = new GPoint(-86.73206, 36.16506);
|
1598
|
+
var m39 = new GMarker(p39, icon39);
|
1599
|
+
GEvent.addListener(m39, "click", function() {
|
1600
|
+
m39.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 39</b></td></tr><tr><td>Distance:</td><td>39.0068798826899 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:39:29Z</td></tr><tr><td>Elapsed Time:</td><td>03:34:25</td></tr><tr><td>Average Pace:</td><td>5:29.813 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16506 , -86.73206</td></tr><tr><td>Altitude:</td><td>125.589</td></tr></table>");
|
1601
|
+
});
|
1602
|
+
map.addOverlay(m39);
|
1603
|
+
|
1604
|
+
var icon40 = new GIcon(baseIcon);
|
1605
|
+
icon40.image = "http://www.joakim-systems.com/gicons/marker40.png";
|
1606
|
+
var p40 = new GPoint(-86.74303, 36.16354);
|
1607
|
+
var m40 = new GMarker(p40, icon40);
|
1608
|
+
GEvent.addListener(m40, "click", function() {
|
1609
|
+
m40.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 40</b></td></tr><tr><td>Distance:</td><td>40.0139447477574 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:45:31Z</td></tr><tr><td>Elapsed Time:</td><td>03:40:27</td></tr><tr><td>Average Pace:</td><td>5:30.559 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16354 , -86.74303</td></tr><tr><td>Altitude:</td><td>133.28</td></tr></table>");
|
1610
|
+
});
|
1611
|
+
map.addOverlay(m40);
|
1612
|
+
|
1613
|
+
var icon41 = new GIcon(baseIcon);
|
1614
|
+
icon41.image = "http://www.joakim-systems.com/gicons/marker41.png";
|
1615
|
+
var p41 = new GPoint(-86.75365, 36.16156);
|
1616
|
+
var m41 = new GMarker(p41, icon41);
|
1617
|
+
GEvent.addListener(m41, "click", function() {
|
1618
|
+
m41.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 41</b></td></tr><tr><td>Distance:</td><td>41.0072531304423 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:51:33Z</td></tr><tr><td>Elapsed Time:</td><td>03:46:29</td></tr><tr><td>Average Pace:</td><td>5:31.380 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16156 , -86.75365</td></tr><tr><td>Altitude:</td><td>128.473</td></tr></table>");
|
1619
|
+
});
|
1620
|
+
map.addOverlay(m41);
|
1621
|
+
|
1622
|
+
var icon42 = new GIcon(baseIcon);
|
1623
|
+
icon42.image = "http://www.joakim-systems.com/gicons/marker42.png";
|
1624
|
+
var p42 = new GPoint(-86.76491, 36.16139);
|
1625
|
+
var m42 = new GMarker(p42, icon42);
|
1626
|
+
GEvent.addListener(m42, "click", function() {
|
1627
|
+
m42.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Kilometer 42</b></td></tr><tr><td>Distance:</td><td>42.0267246395417 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T15:57:35Z</td></tr><tr><td>Elapsed Time:</td><td>03:52:31</td></tr><tr><td>Average Pace:</td><td>5:31.955 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16139 , -86.76491</td></tr><tr><td>Altitude:</td><td>126.551</td></tr></table>");
|
1628
|
+
});
|
1629
|
+
map.addOverlay(m42);
|
1630
|
+
|
1487
1631
|
var iconFinish = new GIcon(baseIcon);
|
1488
1632
|
iconFinish.image = "http://www.joakim-systems.com/gicons/dd-end.png";
|
1489
1633
|
var pFinish = new GPoint(-86.7721, 36.16416);
|
1490
1634
|
var mFinish = new GMarker(pFinish, iconFinish);
|
1491
1635
|
GEvent.addListener(mFinish, "click", function() {
|
1492
|
-
mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance
|
1636
|
+
mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance:</td><td>42.8999547441992 km</td></tr><tr><td>Time of Day:</td><td>2005-04-30T16:02:31Z</td></tr><tr><td>Elapsed Time:</td><td>03:57:27</td></tr><tr><td>Average Pace:</td><td>5:32.098 per km</td></tr><tr><td>Lat/Lng:</td><td>36.16416 , -86.7721</td></tr><tr><td>Altitude:</td><td>126.07</td></tr></table>");
|
1493
1637
|
});
|
1494
1638
|
map.addOverlay(mFinish);
|
1495
1639
|
|
@@ -1515,8 +1659,8 @@
|
|
1515
1659
|
</head>
|
1516
1660
|
<body onload="load()" onunload="GUnload()">
|
1517
1661
|
<center>
|
1518
|
-
<h3>
|
1519
|
-
<h5> Generated by Gooby Sun
|
1662
|
+
<h3> </h3>
|
1663
|
+
<h5> Generated by Gooby Sun Jul 22 09:48:40 EDT 2007 <br> Gooby = Google APIs + Ruby </h5>
|
1520
1664
|
<div id="map" style="width: 900px; height: 600px"></div>
|
1521
1665
|
<div id="messages"></div>
|
1522
1666
|
</center>
|