gooby 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data/README +144 -180
  2. data/bin/example_usage.txt +55 -0
  3. data/bin/gooby_been_there.rb +35 -0
  4. data/bin/gooby_config.rb +16 -0
  5. data/bin/gooby_gen_gmap.rb +16 -0
  6. data/bin/gooby_parser.rb +19 -0
  7. data/bin/gooby_splitter.rb +18 -0
  8. data/bin/gooby_version.rb +16 -0
  9. data/bin/run_all.sh +23 -0
  10. data/bin/run_been_there.sh +16 -0
  11. data/bin/run_db_gen.sh +11 -0
  12. data/bin/run_db_load.sh +11 -0
  13. data/bin/run_gen_gmaps.sh +20 -0
  14. data/bin/run_parse.sh +43 -0
  15. data/bin/run_parse_named.sh +19 -0
  16. data/bin/run_split.sh +23 -0
  17. data/config/gooby_config.yaml +137 -0
  18. data/data/20050305_corporate_cup_hm.csv +251 -251
  19. data/data/20050430_nashville_marathon.csv +1208 -1208
  20. data/data/20060115_phoenix_marathon.csv +1280 -1280
  21. data/data/davidson_11m_20070101.csv +251 -0
  22. data/data/davidson_11m_20070101.xml +2020 -0
  23. data/data/davidson_5K_20070505.csv +286 -0
  24. data/data/davidson_5K_20070505.xml +2875 -0
  25. data/lib/gooby.rb +889 -361
  26. data/samples/20050305_corporate_cup_hm.html +270 -270
  27. data/samples/20050430_nashville_marathon.html +1240 -1240
  28. data/samples/20060115_phoenix_marathon.html +1312 -1312
  29. data/samples/been_there.txt +744 -0
  30. data/samples/davidson_11m_20070101.html +432 -0
  31. data/samples/davidson_5K_20070505.html +395 -0
  32. data/sql/gooby.ddl +56 -0
  33. data/sql/gooby_load.dml +35 -0
  34. metadata +30 -32
  35. data/bin/20050305_corporate_cup_hm_to_csv.rb +0 -9
  36. data/bin/20050430_nashville_marathon_to_csv.rb +0 -9
  37. data/bin/20060115_phoenix_marathon_to_csv.rb +0 -9
  38. data/bin/activity_2007_03_10_13_02_32.xml_to_csv.rb +0 -9
  39. data/bin/example_usage.rb +0 -46
  40. data/bin/example_usage.sh +0 -52
  41. data/bin/gen_gap_phx.rb +0 -10
  42. data/bin/gen_gmap_cc_2005.rb +0 -10
  43. data/bin/gen_gmap_cc_2007.rb +0 -10
  44. data/bin/gen_gmap_nashville.rb +0 -10
  45. data/bin/gen_gmap_phx.rb +0 -10
  46. data/bin/phx_to_csv.rb +0 -47
  47. data/bin/split_forerunner_logbook_2007.rb +0 -10
  48. data/bin/split_training_center_2007.rb +0 -8
  49. data/data/2007_03_10.tcx +0 -28445
  50. data/data/activity_2007_03_10_13_02_32.csv +0 -1168
  51. data/data/activity_2007_03_10_13_02_32.xml +0 -11695
  52. data/data/forerunner_2007.xml +0 -31872
  53. data/data/geo_data.txt +0 -171
  54. data/pkg/code_header.txt +0 -21
  55. data/pkg/pkg.rb +0 -238
  56. data/pkg/test_header.txt +0 -19
  57. data/samples/20070310_corporate_cup_hm.html +0 -1367
  58. data/samples/gps_point_capture.html +0 -54
  59. data/samples/phoenix_marathon.html +0 -1596
  60. data/tests/ts_gooby.rb +0 -1109
  61. data/tests/ts_gooby_min.rb +0 -550
@@ -1,54 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml">
4
- <head>
5
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6
- <title> Google Map by Gooby </title>
7
- <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xQg0TO_bCqGOTsRH2RbuhBZnI0wvRQW0Q92mw1taN1NJCk2cxlQQutfuA" type="text/javascript"></script>
8
- <script type="text/javascript">
9
- //<![CDATA[
10
- function load() {
11
- if (GBrowserIsCompatible()) {
12
- var map = new GMap2(document.getElementById("map"));
13
- map.addControl(new GLargeMapControl());
14
- map.addControl(new GMapTypeControl());
15
-
16
- var centerPoint = new GLatLng(35.4992424404918,-80.84839940071106);
17
- map.setCenter(centerPoint, 13);
18
-
19
- GEvent.addListener(map, "click", function(overlay, point) {
20
- if (point) {
21
- var dialogResponse = confirm("Add a marker here?");
22
- if (dialogResponse) {
23
- var marker = new GMarker(point);
24
- map.addOverlay(marker);
25
- GEvent.addListener(marker, "click", function() {
26
- marker.openInfoWindowHtml("" + point.toString());
27
- });
28
- }
29
- var curr_messages = document.getElementById("messages").innerHTML;
30
- var new_messages = curr_messages + '<br/>' + point.toString();
31
- document.getElementById("messages").innerHTML = new_messages;
32
- }
33
- });
34
- }
35
- }
36
- function resetMapInfo() {
37
- document.getElementById("messages").innerHTML = '';
38
- }
39
- //]]>
40
-
41
- </script>
42
- </head>
43
- <body onload="load()" onunload="GUnload()">
44
- <center>
45
- <h3> Click to Capture GPS Coordinates </h3>
46
- <div id="map" style="width: 900px; height: 500px"></div>
47
- <div id="messages"> </div>
48
- <form name='button_form' id='button_form' method='get'>
49
- <input type='button' id='reset_button' value='Reset' onClick='resetMapInfo()'>
50
- </form>
51
- </center>
52
-
53
- </body>
54
- </html>
@@ -1,1596 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml">
4
- <head>
5
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
6
- <meta name="description" content="Google Map generated with Gooby 1.0.0">
7
- <meta name="keywords" content="Google Map Gooby 1.0.0 GPS">
8
- <title> Google Map by Gooby </title>
9
- <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xQg0TO_bCqGOTsRH2RbuhBZnI0wvRQW0Q92mw1taN1NJCk2cxlQQutfuA" type="text/javascript"></script>
10
- <script type="text/javascript">
11
- //<![CDATA[
12
- function load() {
13
- if (GBrowserIsCompatible()) {
14
- var map = new GMap2(document.getElementById("map"));
15
- map.addControl(new GLargeMapControl());
16
- map.addControl(new GMapTypeControl());
17
-
18
- var centerPoint = new GLatLng(33.469305, -111.99993); // Gooby 1.0.0
19
- map.setCenter(centerPoint, 12);
20
-
21
-
22
- var points = new Array();
23
- points.push(new GLatLng(33.4482,-112.09089)); // (1 of 1279.0) 2006-01-15T14:41:44Z 0 00:00:00 0.0 Gooby 1.0.0
24
- // points.push(new GLatLng(33.4482,-112.09085)); // (2 of 1279.0) 2006-01-15T14:41:46Z 2 00:00:02 0.00230503464009024 Gooby 1.0.0
25
- // points.push(new GLatLng(33.44818,-112.09059)); // (3 of 1279.0) 2006-01-15T14:41:55Z 11 00:00:11 0.0173570663795861 Gooby 1.0.0
26
- // points.push(new GLatLng(33.44818,-112.09029)); // (4 of 1279.0) 2006-01-15T14:42:05Z 21 00:00:21 0.034651290742203 Gooby 1.0.0
27
- // points.push(new GLatLng(33.44815,-112.08994)); // (5 of 1279.0) 2006-01-15T14:42:17Z 33 00:00:33 0.0549342335319808 Gooby 1.0.0
28
- // points.push(new GLatLng(33.44818,-112.08958)); // (6 of 1279.0) 2006-01-15T14:42:28Z 44 00:00:44 0.0757907002815861 Gooby 1.0.0
29
- points.push(new GLatLng(33.44818,-112.08924)); // (7 of 1279.0) 2006-01-15T14:42:39Z 55 00:00:55 0.0953907967670094 Gooby 1.0.0
30
- // points.push(new GLatLng(33.44818,-112.08906)); // (8 of 1279.0) 2006-01-15T14:42:44Z 60 00:01:00 0.10576718384134 Gooby 1.0.0
31
- // points.push(new GLatLng(33.44813,-112.08894)); // (9 of 1279.0) 2006-01-15T14:42:49Z 65 00:01:05 0.113499236358949 Gooby 1.0.0
32
- // points.push(new GLatLng(33.44813,-112.08885)); // (10 of 1279.0) 2006-01-15T14:42:51Z 67 00:01:07 0.118687094557358 Gooby 1.0.0
33
- // points.push(new GLatLng(33.44813,-112.08855)); // (11 of 1279.0) 2006-01-15T14:43:01Z 77 00:01:17 0.135981318919975 Gooby 1.0.0
34
- // points.push(new GLatLng(33.44813,-112.08816)); // (12 of 1279.0) 2006-01-15T14:43:13Z 89 00:01:29 0.158463809043744 Gooby 1.0.0
35
- points.push(new GLatLng(33.44818,-112.0878)); // (13 of 1279.0) 2006-01-15T14:43:24Z 100 00:01:40 0.179502492731457 Gooby 1.0.0
36
- // points.push(new GLatLng(33.44818,-112.08726)); // (14 of 1279.0) 2006-01-15T14:43:40Z 116 00:01:56 0.210632212829365 Gooby 1.0.0
37
- // points.push(new GLatLng(33.4482,-112.08685)); // (15 of 1279.0) 2006-01-15T14:43:53Z 129 00:02:09 0.234308069820142 Gooby 1.0.0
38
- // points.push(new GLatLng(33.4482,-112.08653)); // (16 of 1279.0) 2006-01-15T14:44:03Z 139 00:02:19 0.252755232833059 Gooby 1.0.0
39
- // points.push(new GLatLng(33.44818,-112.08612)); // (17 of 1279.0) 2006-01-15T14:44:15Z 151 00:02:31 0.276431089823836 Gooby 1.0.0
40
- // points.push(new GLatLng(33.4482,-112.08591)); // (18 of 1279.0) 2006-01-15T14:44:22Z 158 00:02:38 0.288615628225312 Gooby 1.0.0
41
- points.push(new GLatLng(33.4482,-112.08552)); // (19 of 1279.0) 2006-01-15T14:44:34Z 170 00:02:50 0.311098118349081 Gooby 1.0.0
42
- // points.push(new GLatLng(33.44822,-112.08509)); // (20 of 1279.0) 2006-01-15T14:44:48Z 184 00:03:04 0.335925082262689 Gooby 1.0.0
43
- // points.push(new GLatLng(33.4482,-112.08464)); // (21 of 1279.0) 2006-01-15T14:45:01Z 197 00:03:17 0.361903311651538 Gooby 1.0.0
44
- // points.push(new GLatLng(33.44822,-112.08424)); // (22 of 1279.0) 2006-01-15T14:45:13Z 209 00:03:29 0.385003719701365 Gooby 1.0.0
45
- // points.push(new GLatLng(33.44822,-112.08379)); // (23 of 1279.0) 2006-01-15T14:45:26Z 222 00:03:42 0.410945223906349 Gooby 1.0.0
46
- // points.push(new GLatLng(33.4482,-112.08346)); // (24 of 1279.0) 2006-01-15T14:45:35Z 231 00:03:51 0.430018995229154 Gooby 1.0.0
47
- points.push(new GLatLng(33.44822,-112.08316)); // (25 of 1279.0) 2006-01-15T14:45:44Z 240 00:04:00 0.447368459689232 Gooby 1.0.0
48
- // points.push(new GLatLng(33.44826,-112.08278)); // (26 of 1279.0) 2006-01-15T14:45:56Z 252 00:04:12 0.469448283523296 Gooby 1.0.0
49
- // points.push(new GLatLng(33.44828,-112.08261)); // (27 of 1279.0) 2006-01-15T14:46:01Z 257 00:04:17 0.479345136928382 Gooby 1.0.0
50
- // points.push(new GLatLng(33.44843,-112.08256)); // (28 of 1279.0) 2006-01-15T14:46:06Z 262 00:04:22 0.490102019160044 Gooby 1.0.0
51
- // points.push(new GLatLng(33.44854,-112.08254)); // (29 of 1279.0) 2006-01-15T14:46:09Z 265 00:04:25 0.497788939068669 Gooby 1.0.0
52
- // points.push(new GLatLng(33.44891,-112.08252)); // (30 of 1279.0) 2006-01-15T14:46:21Z 277 00:04:37 0.52337824559994 Gooby 1.0.0
53
- points.push(new GLatLng(33.44929,-112.0825)); // (31 of 1279.0) 2006-01-15T14:46:34Z 290 00:04:50 0.549657698128419 Gooby 1.0.0
54
- // points.push(new GLatLng(33.44955,-112.0825)); // (32 of 1279.0) 2006-01-15T14:46:43Z 299 00:04:59 0.567621123007002 Gooby 1.0.0
55
- // points.push(new GLatLng(33.44979,-112.08252)); // (33 of 1279.0) 2006-01-15T14:46:51Z 307 00:05:07 0.584242754846286 Gooby 1.0.0
56
- // points.push(new GLatLng(33.45019,-112.08252)); // (34 of 1279.0) 2006-01-15T14:47:05Z 321 00:05:21 0.611878755871284 Gooby 1.0.0
57
- // points.push(new GLatLng(33.45054,-112.0825)); // (35 of 1279.0) 2006-01-15T14:47:17Z 333 00:05:33 0.636087674878957 Gooby 1.0.0
58
- // points.push(new GLatLng(33.4509,-112.08248)); // (36 of 1279.0) 2006-01-15T14:47:30Z 346 00:05:46 0.660986781162017 Gooby 1.0.0
59
- points.push(new GLatLng(33.45129,-112.08248)); // (37 of 1279.0) 2006-01-15T14:47:43Z 359 00:05:59 0.687931870055199 Gooby 1.0.0
60
- // points.push(new GLatLng(33.45157,-112.08252)); // (38 of 1279.0) 2006-01-15T14:47:53Z 369 00:06:09 0.707413912440215 Gooby 1.0.0
61
- // points.push(new GLatLng(33.45187,-112.08252)); // (39 of 1279.0) 2006-01-15T14:48:04Z 380 00:06:20 0.728140850256684 Gooby 1.0.0
62
- // points.push(new GLatLng(33.45232,-112.0825)); // (40 of 1279.0) 2006-01-15T14:48:19Z 395 00:06:35 0.759252681380044 Gooby 1.0.0
63
- // points.push(new GLatLng(33.45258,-112.0825)); // (41 of 1279.0) 2006-01-15T14:48:28Z 404 00:06:44 0.77721600940901 Gooby 1.0.0
64
- // points.push(new GLatLng(33.45279,-112.08252)); // (42 of 1279.0) 2006-01-15T14:48:36Z 412 00:06:52 0.791770441353522 Gooby 1.0.0
65
- points.push(new GLatLng(33.45309,-112.08254)); // (43 of 1279.0) 2006-01-15T14:48:47Z 423 00:07:03 0.812529418141741 Gooby 1.0.0
66
- // points.push(new GLatLng(33.45341,-112.0825)); // (44 of 1279.0) 2006-01-15T14:48:59Z 435 00:07:15 0.834758132406898 Gooby 1.0.0
67
- // points.push(new GLatLng(33.45382,-112.0825)); // (45 of 1279.0) 2006-01-15T14:49:13Z 449 00:07:29 0.863084960525042 Gooby 1.0.0
68
- // points.push(new GLatLng(33.45408,-112.08252)); // (46 of 1279.0) 2006-01-15T14:49:22Z 458 00:07:38 0.881085247187268 Gooby 1.0.0
69
- // points.push(new GLatLng(33.45438,-112.08252)); // (47 of 1279.0) 2006-01-15T14:49:32Z 468 00:07:48 0.901812185003736 Gooby 1.0.0
70
- // points.push(new GLatLng(33.4547,-112.08256)); // (48 of 1279.0) 2006-01-15T14:49:44Z 480 00:08:00 0.924040899268892 Gooby 1.0.0
71
- points.push(new GLatLng(33.45502,-112.08256)); // (49 of 1279.0) 2006-01-15T14:49:55Z 491 00:08:11 0.946149700088875 Gooby 1.0.0
72
- // points.push(new GLatLng(33.45534,-112.08258)); // (50 of 1279.0) 2006-01-15T14:50:06Z 502 00:08:22 0.968288540161104 Gooby 1.0.0
73
- // points.push(new GLatLng(33.4556,-112.08256)); // (51 of 1279.0) 2006-01-15T14:50:16Z 512 00:08:32 0.986288923474094 Gooby 1.0.0
74
- points.push(new GLatLng(33.4559,-112.08258)); // (52 of 1279.0) 2006-01-15T14:50:26Z 522 00:08:42 1.0070480678755 1.0 00:08:42 Gooby 1.0.0
75
- // points.push(new GLatLng(33.45627,-112.08256)); // (53 of 1279.0) 2006-01-15T14:50:39Z 535 00:08:55 1.03263737440677 Gooby 1.0.0
76
- // points.push(new GLatLng(33.45654,-112.0825)); // (54 of 1279.0) 2006-01-15T14:50:49Z 545 00:09:05 1.0516095391901 Gooby 1.0.0
77
- // points.push(new GLatLng(33.45682,-112.08254)); // (55 of 1279.0) 2006-01-15T14:50:59Z 555 00:09:15 1.07109158157512 Gooby 1.0.0
78
- // points.push(new GLatLng(33.45708,-112.08256)); // (56 of 1279.0) 2006-01-15T14:51:08Z 564 00:09:24 1.08909196488811 Gooby 1.0.0
79
- // points.push(new GLatLng(33.4574,-112.08256)); // (57 of 1279.0) 2006-01-15T14:51:19Z 575 00:09:35 1.11120076570809 Gooby 1.0.0
80
- points.push(new GLatLng(33.45777,-112.08254)); // (58 of 1279.0) 2006-01-15T14:51:32Z 588 00:09:48 1.13679007223936 Gooby 1.0.0
81
- // points.push(new GLatLng(33.45803,-112.08254)); // (59 of 1279.0) 2006-01-15T14:51:41Z 597 00:09:57 1.15475340026832 Gooby 1.0.0
82
- // points.push(new GLatLng(33.45845,-112.08252)); // (60 of 1279.0) 2006-01-15T14:51:56Z 612 00:10:12 1.18379404998089 Gooby 1.0.0
83
- // points.push(new GLatLng(33.45876,-112.08248)); // (61 of 1279.0) 2006-01-15T14:52:07Z 623 00:10:23 1.20533561461125 Gooby 1.0.0
84
- // points.push(new GLatLng(33.4591,-112.08248)); // (62 of 1279.0) 2006-01-15T14:52:19Z 635 00:10:35 1.22882615993639 Gooby 1.0.0
85
- // points.push(new GLatLng(33.45938,-112.08246)); // (63 of 1279.0) 2006-01-15T14:52:30Z 646 00:10:46 1.24820568410098 Gooby 1.0.0
86
- points.push(new GLatLng(33.45966,-112.08246)); // (64 of 1279.0) 2006-01-15T14:52:40Z 656 00:10:56 1.26755079488658 Gooby 1.0.0
87
- // points.push(new GLatLng(33.45994,-112.08248)); // (65 of 1279.0) 2006-01-15T14:52:50Z 666 00:11:06 1.28693022927857 Gooby 1.0.0
88
- // points.push(new GLatLng(33.46032,-112.08252)); // (66 of 1279.0) 2006-01-15T14:53:04Z 680 00:11:20 1.31328543983236 Gooby 1.0.0
89
- // points.push(new GLatLng(33.46064,-112.08252)); // (67 of 1279.0) 2006-01-15T14:53:16Z 692 00:11:32 1.33539424065234 Gooby 1.0.0
90
- // points.push(new GLatLng(33.46107,-112.08254)); // (68 of 1279.0) 2006-01-15T14:53:31Z 707 00:11:47 1.36512532160391 Gooby 1.0.0
91
- // points.push(new GLatLng(33.46144,-112.08256)); // (69 of 1279.0) 2006-01-15T14:53:44Z 720 00:12:00 1.39071462813518 Gooby 1.0.0
92
- points.push(new GLatLng(33.46178,-112.08256)); // (70 of 1279.0) 2006-01-15T14:53:56Z 732 00:12:12 1.41420517346032 Gooby 1.0.0
93
- // points.push(new GLatLng(33.46212,-112.08258)); // (71 of 1279.0) 2006-01-15T14:54:08Z 744 00:12:24 1.43772399328017 Gooby 1.0.0
94
- // points.push(new GLatLng(33.46262,-112.08258)); // (72 of 1279.0) 2006-01-15T14:54:25Z 761 00:12:41 1.47226895679013 Gooby 1.0.0
95
- // points.push(new GLatLng(33.46294,-112.08258)); // (73 of 1279.0) 2006-01-15T14:54:37Z 773 00:12:53 1.49437775761012 Gooby 1.0.0
96
- // points.push(new GLatLng(33.46324,-112.08258)); // (74 of 1279.0) 2006-01-15T14:54:47Z 783 00:13:03 1.51510469542659 Gooby 1.0.0
97
- // points.push(new GLatLng(33.46345,-112.08258)); // (75 of 1279.0) 2006-01-15T14:54:55Z 791 00:13:11 1.52961363343617 Gooby 1.0.0
98
- points.push(new GLatLng(33.4638,-112.08263)); // (76 of 1279.0) 2006-01-15T14:55:07Z 803 00:13:23 1.55396621320743 Gooby 1.0.0
99
- // points.push(new GLatLng(33.46423,-112.08265)); // (77 of 1279.0) 2006-01-15T14:55:22Z 818 00:13:38 1.583697294159 Gooby 1.0.0
100
- // points.push(new GLatLng(33.46451,-112.08261)); // (78 of 1279.0) 2006-01-15T14:55:32Z 828 00:13:48 1.60317942584379 Gooby 1.0.0
101
- // points.push(new GLatLng(33.46485,-112.08261)); // (79 of 1279.0) 2006-01-15T14:55:44Z 840 00:14:00 1.62666997116894 Gooby 1.0.0
102
- // points.push(new GLatLng(33.46515,-112.08261)); // (80 of 1279.0) 2006-01-15T14:55:55Z 851 00:14:11 1.6473969089854 Gooby 1.0.0
103
- // points.push(new GLatLng(33.46549,-112.08258)); // (81 of 1279.0) 2006-01-15T14:56:07Z 863 00:14:23 1.67095106112515 Gooby 1.0.0
104
- points.push(new GLatLng(33.46584,-112.08263)); // (82 of 1279.0) 2006-01-15T14:56:19Z 875 00:14:35 1.69530371233622 Gooby 1.0.0
105
- // points.push(new GLatLng(33.46618,-112.08267)); // (83 of 1279.0) 2006-01-15T14:56:31Z 887 00:14:47 1.71890715242145 Gooby 1.0.0
106
- // points.push(new GLatLng(33.46663,-112.08265)); // (84 of 1279.0) 2006-01-15T14:56:47Z 903 00:15:03 1.75001898354481 Gooby 1.0.0
107
- // points.push(new GLatLng(33.46697,-112.08269)); // (85 of 1279.0) 2006-01-15T14:56:59Z 915 00:15:15 1.77362242363003 Gooby 1.0.0
108
- // points.push(new GLatLng(33.46732,-112.08271)); // (86 of 1279.0) 2006-01-15T14:57:12Z 928 00:15:28 1.79783141450145 Gooby 1.0.0
109
- // points.push(new GLatLng(33.46772,-112.08273)); // (87 of 1279.0) 2006-01-15T14:57:26Z 942 00:15:42 1.82549138990287 Gooby 1.0.0
110
- points.push(new GLatLng(33.46809,-112.08276)); // (88 of 1279.0) 2006-01-15T14:57:40Z 956 00:15:56 1.85111303791916 Gooby 1.0.0
111
- // points.push(new GLatLng(33.46852,-112.08276)); // (89 of 1279.0) 2006-01-15T14:57:55Z 971 00:16:11 1.88082175732109 Gooby 1.0.0
112
- // points.push(new GLatLng(33.46888,-112.08273)); // (90 of 1279.0) 2006-01-15T14:58:08Z 984 00:16:24 1.90575417019082 Gooby 1.0.0
113
- // points.push(new GLatLng(33.4692,-112.08276)); // (91 of 1279.0) 2006-01-15T14:58:20Z 996 00:16:36 1.92793046288268 Gooby 1.0.0
114
- // points.push(new GLatLng(33.46963,-112.08276)); // (92 of 1279.0) 2006-01-15T14:58:35Z 1011 00:16:51 1.95763912372443 Gooby 1.0.0
115
- // points.push(new GLatLng(33.47002,-112.0828)); // (93 of 1279.0) 2006-01-15T14:58:49Z 1025 00:17:05 1.98468269005074 Gooby 1.0.0
116
- points.push(new GLatLng(33.47039,-112.08282)); // (94 of 1279.0) 2006-01-15T14:59:02Z 1038 00:17:18 2.01027199658201 2.0 00:08:36 Gooby 1.0.0
117
- // points.push(new GLatLng(33.47041,-112.0828)); // (95 of 1279.0) 2006-01-15T14:59:03Z 1039 00:17:19 2.01207086506206 Gooby 1.0.0
118
- // points.push(new GLatLng(33.4709,-112.08282)); // (96 of 1279.0) 2006-01-15T14:59:21Z 1057 00:17:37 2.04594453043765 Gooby 1.0.0
119
- // points.push(new GLatLng(33.47118,-112.08284)); // (97 of 1279.0) 2006-01-15T14:59:31Z 1067 00:17:47 2.06532414437441 Gooby 1.0.0
120
- // points.push(new GLatLng(33.47148,-112.08282)); // (98 of 1279.0) 2006-01-15T14:59:42Z 1078 00:17:58 2.08608312116263 Gooby 1.0.0
121
- // points.push(new GLatLng(33.47189,-112.08286)); // (99 of 1279.0) 2006-01-15T14:59:57Z 1093 00:18:13 2.11450363937428 Gooby 1.0.0
122
- points.push(new GLatLng(33.47229,-112.08286)); // (100 of 1279.0) 2006-01-15T15:00:11Z 1107 00:18:27 2.14213964039928 Gooby 1.0.0
123
- // points.push(new GLatLng(33.47264,-112.08288)); // (101 of 1279.0) 2006-01-15T15:00:24Z 1120 00:18:40 2.16634855940696 Gooby 1.0.0
124
- // points.push(new GLatLng(33.47307,-112.08282)); // (102 of 1279.0) 2006-01-15T15:00:40Z 1136 00:18:56 2.19625781456205 Gooby 1.0.0
125
- // points.push(new GLatLng(33.47345,-112.08286)); // (103 of 1279.0) 2006-01-15T15:00:54Z 1150 00:19:10 2.22261309112723 Gooby 1.0.0
126
- // points.push(new GLatLng(33.47373,-112.08286)); // (104 of 1279.0) 2006-01-15T15:01:04Z 1160 00:19:20 2.24195838177616 Gooby 1.0.0
127
- // points.push(new GLatLng(33.47403,-112.08286)); // (105 of 1279.0) 2006-01-15T15:01:15Z 1171 00:19:31 2.26268531959263 Gooby 1.0.0
128
- points.push(new GLatLng(33.4744,-112.08288)); // (106 of 1279.0) 2006-01-15T15:01:28Z 1184 00:19:44 2.28827449014908 Gooby 1.0.0
129
- // points.push(new GLatLng(33.47478,-112.08291)); // (107 of 1279.0) 2006-01-15T15:01:42Z 1198 00:19:58 2.31458556809165 Gooby 1.0.0
130
- // points.push(new GLatLng(33.47513,-112.08293)); // (108 of 1279.0) 2006-01-15T15:01:54Z 1210 00:20:10 2.33879448709933 Gooby 1.0.0
131
- // points.push(new GLatLng(33.47543,-112.08293)); // (109 of 1279.0) 2006-01-15T15:02:05Z 1221 00:20:21 2.35952142491579 Gooby 1.0.0
132
- // points.push(new GLatLng(33.47579,-112.08295)); // (110 of 1279.0) 2006-01-15T15:02:18Z 1234 00:20:34 2.38442046132693 Gooby 1.0.0
133
- // points.push(new GLatLng(33.47616,-112.08291)); // (111 of 1279.0) 2006-01-15T15:02:32Z 1248 00:20:48 2.41008742740991 Gooby 1.0.0
134
- points.push(new GLatLng(33.47654,-112.08295)); // (112 of 1279.0) 2006-01-15T15:02:46Z 1262 00:21:02 2.4364426379637 Gooby 1.0.0
135
- // points.push(new GLatLng(33.47689,-112.08297)); // (113 of 1279.0) 2006-01-15T15:02:58Z 1274 00:21:14 2.46065170069865 Gooby 1.0.0
136
- // points.push(new GLatLng(33.47727,-112.08293)); // (114 of 1279.0) 2006-01-15T15:03:12Z 1288 00:21:28 2.48700691125245 Gooby 1.0.0
137
- // points.push(new GLatLng(33.4777,-112.08293)); // (115 of 1279.0) 2006-01-15T15:03:26Z 1302 00:21:42 2.51671563065437 Gooby 1.0.0
138
- // points.push(new GLatLng(33.47802,-112.08291)); // (116 of 1279.0) 2006-01-15T15:03:37Z 1313 00:21:53 2.5388544707266 Gooby 1.0.0
139
- // points.push(new GLatLng(33.47837,-112.08288)); // (117 of 1279.0) 2006-01-15T15:03:49Z 1325 00:22:05 2.56309771631839 Gooby 1.0.0
140
- points.push(new GLatLng(33.47878,-112.08288)); // (118 of 1279.0) 2006-01-15T15:04:04Z 1340 00:22:20 2.59142460585337 Gooby 1.0.0
141
- // points.push(new GLatLng(33.47918,-112.08288)); // (119 of 1279.0) 2006-01-15T15:04:18Z 1354 00:22:34 2.61906060687837 Gooby 1.0.0
142
- // points.push(new GLatLng(33.47961,-112.08291)); // (120 of 1279.0) 2006-01-15T15:04:33Z 1369 00:22:49 2.64881958690726 Gooby 1.0.0
143
- // points.push(new GLatLng(33.48006,-112.08297)); // (121 of 1279.0) 2006-01-15T15:04:49Z 1385 00:23:05 2.6801017288613 Gooby 1.0.0
144
- // points.push(new GLatLng(33.48045,-112.08297)); // (122 of 1279.0) 2006-01-15T15:05:02Z 1398 00:23:18 2.70704681775448 Gooby 1.0.0
145
- // points.push(new GLatLng(33.48094,-112.08299)); // (123 of 1279.0) 2006-01-15T15:05:20Z 1416 00:23:36 2.74092048313007 Gooby 1.0.0
146
- points.push(new GLatLng(33.48107,-112.08297)); // (124 of 1279.0) 2006-01-15T15:05:27Z 1423 00:23:43 2.74997574208655 Gooby 1.0.0
147
- // points.push(new GLatLng(33.4812,-112.08299)); // (125 of 1279.0) 2006-01-15T15:05:36Z 1432 00:23:52 2.75903119316649 Gooby 1.0.0
148
- // points.push(new GLatLng(33.48139,-112.08306)); // (126 of 1279.0) 2006-01-15T15:05:44Z 1440 00:24:00 2.77276394528988 Gooby 1.0.0
149
- // points.push(new GLatLng(33.48165,-112.08306)); // (127 of 1279.0) 2006-01-15T15:05:53Z 1449 00:24:09 2.79072727331884 Gooby 1.0.0
150
- // points.push(new GLatLng(33.48193,-112.08306)); // (128 of 1279.0) 2006-01-15T15:06:03Z 1459 00:24:19 2.81007238410445 Gooby 1.0.0
151
- // points.push(new GLatLng(33.48234,-112.08308)); // (129 of 1279.0) 2006-01-15T15:06:18Z 1474 00:24:34 2.83842272513896 Gooby 1.0.0
152
- points.push(new GLatLng(33.48259,-112.0831)); // (130 of 1279.0) 2006-01-15T15:06:28Z 1484 00:24:44 2.85573354003973 Gooby 1.0.0
153
- // points.push(new GLatLng(33.48285,-112.0831)); // (131 of 1279.0) 2006-01-15T15:06:37Z 1493 00:24:53 2.87369686806869 Gooby 1.0.0
154
- // points.push(new GLatLng(33.48315,-112.0831)); // (132 of 1279.0) 2006-01-15T15:06:47Z 1503 00:25:03 2.89442397375743 Gooby 1.0.0
155
- // points.push(new GLatLng(33.4835,-112.08312)); // (133 of 1279.0) 2006-01-15T15:06:59Z 1515 00:25:15 2.91863296462885 Gooby 1.0.0
156
- // points.push(new GLatLng(33.48397,-112.08312)); // (134 of 1279.0) 2006-01-15T15:07:16Z 1532 00:25:32 2.95110520221132 Gooby 1.0.0
157
- // points.push(new GLatLng(33.48435,-112.08312)); // (135 of 1279.0) 2006-01-15T15:07:30Z 1546 00:25:46 2.97735935348593 Gooby 1.0.0
158
- points.push(new GLatLng(33.48472,-112.08316)); // (136 of 1279.0) 2006-01-15T15:07:43Z 1559 00:25:59 3.00302631956892 3.0 00:08:41 Gooby 1.0.0
159
- // points.push(new GLatLng(33.48489,-112.08316)); // (137 of 1279.0) 2006-01-15T15:07:49Z 1565 00:26:05 3.01477174035364 Gooby 1.0.0
160
- // points.push(new GLatLng(33.48502,-112.08316)); // (138 of 1279.0) 2006-01-15T15:07:54Z 1570 00:26:10 3.02375330751771 Gooby 1.0.0
161
- // points.push(new GLatLng(33.48534,-112.08318)); // (139 of 1279.0) 2006-01-15T15:08:06Z 1582 00:26:22 3.04589214758994 Gooby 1.0.0
162
- // points.push(new GLatLng(33.48575,-112.08318)); // (140 of 1279.0) 2006-01-15T15:08:20Z 1596 00:26:36 3.07421903712493 Gooby 1.0.0
163
- // points.push(new GLatLng(33.48607,-112.08318)); // (141 of 1279.0) 2006-01-15T15:08:32Z 1608 00:26:48 3.09632775925456 Gooby 1.0.0
164
- points.push(new GLatLng(33.48644,-112.08318)); // (142 of 1279.0) 2006-01-15T15:08:45Z 1621 00:27:01 3.12189101341386 Gooby 1.0.0
165
- // points.push(new GLatLng(33.48678,-112.08321)); // (143 of 1279.0) 2006-01-15T15:08:57Z 1633 00:27:13 3.14544516555361 Gooby 1.0.0
166
- // points.push(new GLatLng(33.48712,-112.08321)); // (144 of 1279.0) 2006-01-15T15:09:10Z 1646 00:27:26 3.16893571087875 Gooby 1.0.0
167
- // points.push(new GLatLng(33.48751,-112.08325)); // (145 of 1279.0) 2006-01-15T15:09:23Z 1659 00:27:39 3.19597927720506 Gooby 1.0.0
168
- // points.push(new GLatLng(33.48789,-112.08331)); // (146 of 1279.0) 2006-01-15T15:09:37Z 1673 00:27:53 3.22246013811593 Gooby 1.0.0
169
- // points.push(new GLatLng(33.48817,-112.08327)); // (147 of 1279.0) 2006-01-15T15:09:47Z 1683 00:28:03 3.24194218050095 Gooby 1.0.0
170
- points.push(new GLatLng(33.48852,-112.08327)); // (148 of 1279.0) 2006-01-15T15:09:59Z 1695 00:28:15 3.26612363193534 Gooby 1.0.0
171
- // points.push(new GLatLng(33.48884,-112.08329)); // (149 of 1279.0) 2006-01-15T15:10:10Z 1706 00:28:26 3.28826247200757 Gooby 1.0.0
172
- // points.push(new GLatLng(33.4892,-112.08329)); // (150 of 1279.0) 2006-01-15T15:10:24Z 1720 00:28:40 3.31313480298311 Gooby 1.0.0
173
- // points.push(new GLatLng(33.48965,-112.08329)); // (151 of 1279.0) 2006-01-15T15:10:40Z 1736 00:28:56 3.34422526566546 Gooby 1.0.0
174
- // points.push(new GLatLng(33.4901,-112.08327)); // (152 of 1279.0) 2006-01-15T15:10:56Z 1752 00:29:12 3.37533709678882 Gooby 1.0.0
175
- // points.push(new GLatLng(33.49053,-112.08329)); // (153 of 1279.0) 2006-01-15T15:11:11Z 1767 00:29:27 3.40506817774038 Gooby 1.0.0
176
- points.push(new GLatLng(33.49086,-112.08329)); // (154 of 1279.0) 2006-01-15T15:11:23Z 1779 00:29:39 3.42786794058425 Gooby 1.0.0
177
- // points.push(new GLatLng(33.49122,-112.08331)); // (155 of 1279.0) 2006-01-15T15:11:36Z 1792 00:29:52 3.45276711673904 Gooby 1.0.0
178
- // points.push(new GLatLng(33.49156,-112.08321)); // (156 of 1279.0) 2006-01-15T15:11:50Z 1806 00:30:06 3.47695410734099 Gooby 1.0.0
179
- // points.push(new GLatLng(33.49186,-112.08338)); // (157 of 1279.0) 2006-01-15T15:12:00Z 1816 00:30:16 3.49987897312083 Gooby 1.0.0
180
- // points.push(new GLatLng(33.49221,-112.08338)); // (158 of 1279.0) 2006-01-15T15:12:12Z 1828 00:30:28 3.52406042455523 Gooby 1.0.0
181
- // points.push(new GLatLng(33.49253,-112.08336)); // (159 of 1279.0) 2006-01-15T15:12:24Z 1840 00:30:40 3.54619926462746 Gooby 1.0.0
182
- points.push(new GLatLng(33.49294,-112.08336)); // (160 of 1279.0) 2006-01-15T15:12:39Z 1855 00:30:55 3.57452615416244 Gooby 1.0.0
183
- // points.push(new GLatLng(33.49334,-112.08342)); // (161 of 1279.0) 2006-01-15T15:12:54Z 1870 00:31:10 3.60237749397042 Gooby 1.0.0
184
- // points.push(new GLatLng(33.49362,-112.08344)); // (162 of 1279.0) 2006-01-15T15:13:04Z 1880 00:31:20 3.62175710790718 Gooby 1.0.0
185
- // points.push(new GLatLng(33.49397,-112.08346)); // (163 of 1279.0) 2006-01-15T15:13:16Z 1892 00:31:32 3.64596602691485 Gooby 1.0.0
186
- // points.push(new GLatLng(33.49437,-112.08346)); // (164 of 1279.0) 2006-01-15T15:13:31Z 1907 00:31:47 3.67360202793985 Gooby 1.0.0
187
- // points.push(new GLatLng(33.49472,-112.08351)); // (165 of 1279.0) 2006-01-15T15:13:43Z 1919 00:31:59 3.6979545362711 Gooby 1.0.0
188
- points.push(new GLatLng(33.4951,-112.08349)); // (166 of 1279.0) 2006-01-15T15:13:57Z 1933 00:32:13 3.72423405500126 Gooby 1.0.0
189
- // points.push(new GLatLng(33.4956,-112.08351)); // (167 of 1279.0) 2006-01-15T15:14:14Z 1950 00:32:30 3.75879825136037 Gooby 1.0.0
190
- // points.push(new GLatLng(33.49596,-112.08353)); // (168 of 1279.0) 2006-01-15T15:14:27Z 1963 00:32:43 3.7836972877715 Gooby 1.0.0
191
- // points.push(new GLatLng(33.49628,-112.08355)); // (169 of 1279.0) 2006-01-15T15:14:39Z 1975 00:32:55 3.80583612784373 Gooby 1.0.0
192
- // points.push(new GLatLng(33.49674,-112.08357)); // (170 of 1279.0) 2006-01-15T15:14:55Z 1991 00:33:11 3.83763839218627 Gooby 1.0.0
193
- // points.push(new GLatLng(33.49716,-112.08355)); // (171 of 1279.0) 2006-01-15T15:15:11Z 2007 00:33:27 3.86667904189883 Gooby 1.0.0
194
- points.push(new GLatLng(33.49744,-112.08351)); // (172 of 1279.0) 2006-01-15T15:15:21Z 2017 00:33:37 3.88616090568306 Gooby 1.0.0
195
- // points.push(new GLatLng(33.49783,-112.08346)); // (173 of 1279.0) 2006-01-15T15:15:35Z 2031 00:33:51 3.91325961199925 Gooby 1.0.0
196
- // points.push(new GLatLng(33.49815,-112.08336)); // (174 of 1279.0) 2006-01-15T15:15:46Z 2042 00:34:02 3.93610678753424 Gooby 1.0.0
197
- // points.push(new GLatLng(33.49832,-112.08325)); // (175 of 1279.0) 2006-01-15T15:15:53Z 2049 00:34:09 3.94945289890237 Gooby 1.0.0
198
- // points.push(new GLatLng(33.49864,-112.0831)); // (176 of 1279.0) 2006-01-15T15:16:05Z 2061 00:34:21 3.97319084015063 Gooby 1.0.0
199
- points.push(new GLatLng(33.49903,-112.08288)); // (177 of 1279.0) 2006-01-15T15:16:20Z 2076 00:34:36 4.0029683466179 4.0 00:08:37 Gooby 1.0.0
200
- // points.push(new GLatLng(33.49916,-112.0828)); // (178 of 1279.0) 2006-01-15T15:16:25Z 2081 00:34:41 4.01306360929435 Gooby 1.0.0
201
- // points.push(new GLatLng(33.49935,-112.08273)); // (179 of 1279.0) 2006-01-15T15:16:32Z 2088 00:34:48 4.02679623473125 Gooby 1.0.0
202
- // points.push(new GLatLng(33.49963,-112.08263)); // (180 of 1279.0) 2006-01-15T15:16:42Z 2098 00:34:58 4.04698124467727 Gooby 1.0.0
203
- // points.push(new GLatLng(33.49985,-112.08256)); // (181 of 1279.0) 2006-01-15T15:16:50Z 2106 00:35:06 4.06270684401131 Gooby 1.0.0
204
- // points.push(new GLatLng(33.50019,-112.08248)); // (182 of 1279.0) 2006-01-15T15:17:03Z 2119 00:35:19 4.08664533810464 Gooby 1.0.0
205
- points.push(new GLatLng(33.5006,-112.08246)); // (183 of 1279.0) 2006-01-15T15:17:17Z 2133 00:35:33 4.11499567913915 Gooby 1.0.0
206
- // points.push(new GLatLng(33.50101,-112.08243)); // (184 of 1279.0) 2006-01-15T15:17:32Z 2148 00:35:48 4.14337527664484 Gooby 1.0.0
207
- // points.push(new GLatLng(33.50135,-112.08243)); // (185 of 1279.0) 2006-01-15T15:17:44Z 2160 00:36:00 4.16686582196998 Gooby 1.0.0
208
- // points.push(new GLatLng(33.50167,-112.08243)); // (186 of 1279.0) 2006-01-15T15:17:56Z 2172 00:36:12 4.18897462278996 Gooby 1.0.0
209
- // points.push(new GLatLng(33.5021,-112.08241)); // (187 of 1279.0) 2006-01-15T15:18:11Z 2187 00:36:27 4.21870558670914 Gooby 1.0.0
210
- // points.push(new GLatLng(33.5024,-112.08241)); // (188 of 1279.0) 2006-01-15T15:18:22Z 2198 00:36:38 4.23943252452561 Gooby 1.0.0
211
- points.push(new GLatLng(33.50283,-112.08243)); // (189 of 1279.0) 2006-01-15T15:18:38Z 2214 00:36:54 4.26916354696104 Gooby 1.0.0
212
- // points.push(new GLatLng(33.50311,-112.08243)); // (190 of 1279.0) 2006-01-15T15:18:48Z 2224 00:37:04 4.28850865774665 Gooby 1.0.0
213
- // points.push(new GLatLng(33.50347,-112.08246)); // (191 of 1279.0) 2006-01-15T15:19:00Z 2236 00:37:16 4.31344107061637 Gooby 1.0.0
214
- // points.push(new GLatLng(33.50375,-112.08248)); // (192 of 1279.0) 2006-01-15T15:19:10Z 2246 00:37:26 4.33282059478096 Gooby 1.0.0
215
- // points.push(new GLatLng(33.50414,-112.08248)); // (193 of 1279.0) 2006-01-15T15:19:24Z 2260 00:37:40 4.35976561910771 Gooby 1.0.0
216
- // points.push(new GLatLng(33.50448,-112.08248)); // (194 of 1279.0) 2006-01-15T15:19:37Z 2273 00:37:53 4.38325616443285 Gooby 1.0.0
217
- points.push(new GLatLng(33.5048,-112.08252)); // (195 of 1279.0) 2006-01-15T15:19:48Z 2284 00:38:04 4.40548472216603 Gooby 1.0.0
218
- // points.push(new GLatLng(33.50513,-112.08252)); // (196 of 1279.0) 2006-01-15T15:20:00Z 2296 00:38:16 4.4282844850099 Gooby 1.0.0
219
- // points.push(new GLatLng(33.50549,-112.08248)); // (197 of 1279.0) 2006-01-15T15:20:13Z 2309 00:38:29 4.45326332712391 Gooby 1.0.0
220
- // points.push(new GLatLng(33.50581,-112.08248)); // (198 of 1279.0) 2006-01-15T15:20:25Z 2321 00:38:41 4.47537212794389 Gooby 1.0.0
221
- // points.push(new GLatLng(33.50613,-112.0825)); // (199 of 1279.0) 2006-01-15T15:20:36Z 2332 00:38:52 4.49751088943254 Gooby 1.0.0
222
- // points.push(new GLatLng(33.50643,-112.08248)); // (200 of 1279.0) 2006-01-15T15:20:47Z 2343 00:39:03 4.51826986622076 Gooby 1.0.0
223
- points.push(new GLatLng(33.50676,-112.08248)); // (201 of 1279.0) 2006-01-15T15:20:59Z 2355 00:39:15 4.54106947645322 Gooby 1.0.0
224
- // points.push(new GLatLng(33.50708,-112.08248)); // (202 of 1279.0) 2006-01-15T15:21:10Z 2366 00:39:26 4.5631782772732 Gooby 1.0.0
225
- // points.push(new GLatLng(33.50721,-112.0825)); // (203 of 1279.0) 2006-01-15T15:21:17Z 2373 00:39:33 4.57223353622968 Gooby 1.0.0
226
- // points.push(new GLatLng(33.50753,-112.0825)); // (204 of 1279.0) 2006-01-15T15:21:29Z 2385 00:39:45 4.59434217966869 Gooby 1.0.0
227
- // points.push(new GLatLng(33.50781,-112.0825)); // (205 of 1279.0) 2006-01-15T15:21:39Z 2395 00:39:55 4.61368738038617 Gooby 1.0.0
228
- // points.push(new GLatLng(33.50796,-112.08252)); // (206 of 1279.0) 2006-01-15T15:21:47Z 2403 00:40:03 4.62411461273064 Gooby 1.0.0
229
- points.push(new GLatLng(33.50813,-112.0825)); // (207 of 1279.0) 2006-01-15T15:21:53Z 2409 00:40:09 4.63591648018694 Gooby 1.0.0
230
- // points.push(new GLatLng(33.50837,-112.0825)); // (208 of 1279.0) 2006-01-15T15:22:01Z 2417 00:40:17 4.65249808080192 Gooby 1.0.0
231
- // points.push(new GLatLng(33.50873,-112.0825)); // (209 of 1279.0) 2006-01-15T15:22:14Z 2430 00:40:30 4.67737055167116 Gooby 1.0.0
232
- // points.push(new GLatLng(33.50897,-112.0825)); // (210 of 1279.0) 2006-01-15T15:22:22Z 2438 00:40:38 4.69395215228614 Gooby 1.0.0
233
- // points.push(new GLatLng(33.50937,-112.0825)); // (211 of 1279.0) 2006-01-15T15:22:36Z 2452 00:40:52 4.72158815331114 Gooby 1.0.0
234
- // points.push(new GLatLng(33.50978,-112.08248)); // (212 of 1279.0) 2006-01-15T15:22:50Z 2466 00:41:06 4.74993849434565 Gooby 1.0.0
235
- points.push(new GLatLng(33.51017,-112.0825)); // (213 of 1279.0) 2006-01-15T15:23:04Z 2480 00:41:20 4.77690823630785 Gooby 1.0.0
236
- // points.push(new GLatLng(33.51051,-112.0825)); // (214 of 1279.0) 2006-01-15T15:23:16Z 2492 00:41:32 4.80039878163299 Gooby 1.0.0
237
- // points.push(new GLatLng(33.51092,-112.08254)); // (215 of 1279.0) 2006-01-15T15:23:30Z 2506 00:41:46 4.82881923863014 Gooby 1.0.0
238
- // points.push(new GLatLng(33.51128,-112.08254)); // (216 of 1279.0) 2006-01-15T15:23:43Z 2519 00:41:59 4.85369156960568 Gooby 1.0.0
239
- // points.push(new GLatLng(33.51152,-112.08252)); // (217 of 1279.0) 2006-01-15T15:23:51Z 2527 00:42:07 4.87031320144496 Gooby 1.0.0
240
- // points.push(new GLatLng(33.51173,-112.08252)); // (218 of 1279.0) 2006-01-15T15:23:59Z 2535 00:42:15 4.88482213945455 Gooby 1.0.0
241
- points.push(new GLatLng(33.51214,-112.08254)); // (219 of 1279.0) 2006-01-15T15:24:13Z 2549 00:42:29 4.91317248048906 Gooby 1.0.0
242
- // points.push(new GLatLng(33.51246,-112.08256)); // (220 of 1279.0) 2006-01-15T15:24:25Z 2561 00:42:41 4.93531132056129 Gooby 1.0.0
243
- // points.push(new GLatLng(33.51274,-112.08254)); // (221 of 1279.0) 2006-01-15T15:24:35Z 2571 00:42:51 4.95469075495328 Gooby 1.0.0
244
- // points.push(new GLatLng(33.51302,-112.08256)); // (222 of 1279.0) 2006-01-15T15:24:45Z 2581 00:43:01 4.97407036889004 Gooby 1.0.0
245
- // points.push(new GLatLng(33.5133,-112.08252)); // (223 of 1279.0) 2006-01-15T15:24:55Z 2591 00:43:11 4.99355241127505 Gooby 1.0.0
246
- points.push(new GLatLng(33.51364,-112.0825)); // (224 of 1279.0) 2006-01-15T15:25:08Z 2604 00:43:24 5.0170713050673 5.0 00:08:48 Gooby 1.0.0
247
- // points.push(new GLatLng(33.51375,-112.08248)); // (225 of 1279.0) 2006-01-15T15:25:12Z 2608 00:43:28 5.02475822497592 Gooby 1.0.0
248
- // points.push(new GLatLng(33.51407,-112.08248)); // (226 of 1279.0) 2006-01-15T15:25:23Z 2619 00:43:39 5.0468670257959 Gooby 1.0.0
249
- // points.push(new GLatLng(33.51437,-112.08248)); // (227 of 1279.0) 2006-01-15T15:25:34Z 2630 00:43:50 5.06759413148465 Gooby 1.0.0
250
- // points.push(new GLatLng(33.51482,-112.0825)); // (228 of 1279.0) 2006-01-15T15:25:50Z 2646 00:44:06 5.09870601852707 Gooby 1.0.0
251
- // points.push(new GLatLng(33.51519,-112.08246)); // (229 of 1279.0) 2006-01-15T15:26:03Z 2659 00:44:19 5.12437298461006 Gooby 1.0.0
252
- points.push(new GLatLng(33.51564,-112.08248)); // (230 of 1279.0) 2006-01-15T15:26:19Z 2675 00:44:35 5.15548481573342 Gooby 1.0.0
253
- // points.push(new GLatLng(33.51607,-112.08248)); // (231 of 1279.0) 2006-01-15T15:26:35Z 2691 00:44:51 5.18519353513534 Gooby 1.0.0
254
- // points.push(new GLatLng(33.5165,-112.08243)); // (232 of 1279.0) 2006-01-15T15:26:50Z 2706 00:45:06 5.21504147708408 Gooby 1.0.0
255
- // points.push(new GLatLng(33.51652,-112.08243)); // (233 of 1279.0) 2006-01-15T15:26:51Z 2707 00:45:07 5.21642233252996 Gooby 1.0.0
256
- // points.push(new GLatLng(33.51656,-112.08237)); // (234 of 1279.0) 2006-01-15T15:26:53Z 2709 00:45:09 5.22084755370859 Gooby 1.0.0
257
- // points.push(new GLatLng(33.5166,-112.08203)); // (235 of 1279.0) 2006-01-15T15:27:03Z 2719 00:45:19 5.24062631291139 Gooby 1.0.0
258
- points.push(new GLatLng(33.51663,-112.08196)); // (236 of 1279.0) 2006-01-15T15:27:05Z 2721 00:45:21 5.24515951060508 Gooby 1.0.0
259
- // points.push(new GLatLng(33.51658,-112.08168)); // (237 of 1279.0) 2006-01-15T15:27:13Z 2729 00:45:29 5.26165390298144 Gooby 1.0.0
260
- // points.push(new GLatLng(33.5166,-112.08143)); // (238 of 1279.0) 2006-01-15T15:27:21Z 2737 00:45:37 5.27612057159891 Gooby 1.0.0
261
- // points.push(new GLatLng(33.5166,-112.081)); // (239 of 1279.0) 2006-01-15T15:27:33Z 2749 00:45:49 5.30088944556545 Gooby 1.0.0
262
- // points.push(new GLatLng(33.5166,-112.08061)); // (240 of 1279.0) 2006-01-15T15:27:45Z 2761 00:46:01 5.32335420816015 Gooby 1.0.0
263
- // points.push(new GLatLng(33.51658,-112.08027)); // (241 of 1279.0) 2006-01-15T15:27:55Z 2771 00:46:11 5.34298765083662 Gooby 1.0.0
264
- points.push(new GLatLng(33.51658,-112.08003)); // (242 of 1279.0) 2006-01-15T15:28:03Z 2779 00:46:19 5.35681232266828 Gooby 1.0.0
265
- // points.push(new GLatLng(33.51656,-112.07967)); // (243 of 1279.0) 2006-01-15T15:28:14Z 2790 00:46:30 5.37759508699591 Gooby 1.0.0
266
- // points.push(new GLatLng(33.51654,-112.07917)); // (244 of 1279.0) 2006-01-15T15:28:29Z 2805 00:46:45 5.40642928126733 Gooby 1.0.0
267
- // points.push(new GLatLng(33.51656,-112.07885)); // (245 of 1279.0) 2006-01-15T15:28:39Z 2815 00:46:55 5.42491365906781 Gooby 1.0.0
268
- // points.push(new GLatLng(33.51658,-112.07876)); // (246 of 1279.0) 2006-01-15T15:28:41Z 2817 00:46:57 5.43027890272738 Gooby 1.0.0
269
- // points.push(new GLatLng(33.5166,-112.0787)); // (247 of 1279.0) 2006-01-15T15:28:43Z 2819 00:46:59 5.43400117867201 Gooby 1.0.0
270
- points.push(new GLatLng(33.5166,-112.07838)); // (248 of 1279.0) 2006-01-15T15:28:53Z 2829 00:47:09 5.45243371788731 Gooby 1.0.0
271
- // points.push(new GLatLng(33.5166,-112.07808)); // (249 of 1279.0) 2006-01-15T15:29:02Z 2838 00:47:18 5.46971425564967 Gooby 1.0.0
272
- // points.push(new GLatLng(33.5166,-112.0778)); // (250 of 1279.0) 2006-01-15T15:29:11Z 2847 00:47:27 5.48584270386691 Gooby 1.0.0
273
- // points.push(new GLatLng(33.51656,-112.0775)); // (251 of 1279.0) 2006-01-15T15:29:20Z 2856 00:47:36 5.50334293101901 Gooby 1.0.0
274
- // points.push(new GLatLng(33.51656,-112.07724)); // (252 of 1279.0) 2006-01-15T15:29:28Z 2864 00:47:44 5.5183196459296 Gooby 1.0.0
275
- // points.push(new GLatLng(33.51658,-112.07685)); // (253 of 1279.0) 2006-01-15T15:29:40Z 2876 00:47:56 5.54082696205532 Gooby 1.0.0
276
- points.push(new GLatLng(33.5166,-112.07653)); // (254 of 1279.0) 2006-01-15T15:29:50Z 2886 00:48:06 5.5593113398558 Gooby 1.0.0
277
- // points.push(new GLatLng(33.51658,-112.07625)); // (255 of 1279.0) 2006-01-15T15:29:58Z 2894 00:48:14 5.57549900684778 Gooby 1.0.0
278
- // points.push(new GLatLng(33.5166,-112.07597)); // (256 of 1279.0) 2006-01-15T15:30:06Z 2902 00:48:22 5.59168667383976 Gooby 1.0.0
279
- // points.push(new GLatLng(33.51654,-112.0757)); // (257 of 1279.0) 2006-01-15T15:30:15Z 2911 00:48:31 5.60778229673069 Gooby 1.0.0
280
- // points.push(new GLatLng(33.51656,-112.07537)); // (258 of 1279.0) 2006-01-15T15:30:24Z 2920 00:48:40 5.62684110350716 Gooby 1.0.0
281
- // points.push(new GLatLng(33.51656,-112.07492)); // (259 of 1279.0) 2006-01-15T15:30:38Z 2934 00:48:54 5.65276207794454 Gooby 1.0.0
282
- points.push(new GLatLng(33.51656,-112.07439)); // (260 of 1279.0) 2006-01-15T15:30:54Z 2950 00:49:10 5.68329125606427 Gooby 1.0.0
283
- // points.push(new GLatLng(33.51658,-112.07404)); // (261 of 1279.0) 2006-01-15T15:31:05Z 2961 00:49:21 5.70349935173033 Gooby 1.0.0
284
- // points.push(new GLatLng(33.51656,-112.0737)); // (262 of 1279.0) 2006-01-15T15:31:15Z 2971 00:49:31 5.7231327944068 Gooby 1.0.0
285
- // points.push(new GLatLng(33.51656,-112.07338)); // (263 of 1279.0) 2006-01-15T15:31:24Z 2980 00:49:40 5.74156552239016 Gooby 1.0.0
286
- // points.push(new GLatLng(33.51656,-112.07314)); // (264 of 1279.0) 2006-01-15T15:31:31Z 2987 00:49:47 5.75539019422181 Gooby 1.0.0
287
- // points.push(new GLatLng(33.51656,-112.07282)); // (265 of 1279.0) 2006-01-15T15:31:41Z 2997 00:49:57 5.77382292220516 Gooby 1.0.0
288
- points.push(new GLatLng(33.51654,-112.07237)); // (266 of 1279.0) 2006-01-15T15:31:54Z 3010 00:50:10 5.79978065087209 Gooby 1.0.0
289
- // points.push(new GLatLng(33.51652,-112.07213)); // (267 of 1279.0) 2006-01-15T15:32:01Z 3017 00:50:17 5.8136741138319 Gooby 1.0.0
290
- // points.push(new GLatLng(33.51652,-112.07186)); // (268 of 1279.0) 2006-01-15T15:32:10Z 3026 00:50:26 5.82922684167725 Gooby 1.0.0
291
- // points.push(new GLatLng(33.51654,-112.07143)); // (269 of 1279.0) 2006-01-15T15:32:23Z 3039 00:50:39 5.85403431712956 Gooby 1.0.0
292
- // points.push(new GLatLng(33.51654,-112.07104)); // (270 of 1279.0) 2006-01-15T15:32:35Z 3051 00:50:51 5.87649915716746 Gooby 1.0.0
293
- // points.push(new GLatLng(33.51656,-112.07065)); // (271 of 1279.0) 2006-01-15T15:32:47Z 3063 00:51:03 5.89900647329319 Gooby 1.0.0
294
- points.push(new GLatLng(33.51656,-112.07025)); // (272 of 1279.0) 2006-01-15T15:32:59Z 3075 00:51:15 5.92204730776543 Gooby 1.0.0
295
- // points.push(new GLatLng(33.51654,-112.06982)); // (273 of 1279.0) 2006-01-15T15:33:12Z 3088 00:51:28 5.94685478321775 Gooby 1.0.0
296
- // points.push(new GLatLng(33.51656,-112.06943)); // (274 of 1279.0) 2006-01-15T15:33:24Z 3100 00:51:40 5.96936209934347 Gooby 1.0.0
297
- // points.push(new GLatLng(33.51656,-112.069)); // (275 of 1279.0) 2006-01-15T15:33:37Z 3113 00:51:53 5.99413111378803 Gooby 1.0.0
298
- points.push(new GLatLng(33.51652,-112.06864)); // (276 of 1279.0) 2006-01-15T15:33:48Z 3124 00:52:04 6.0150512126733 6.0 00:08:40 Gooby 1.0.0
299
- // points.push(new GLatLng(33.51652,-112.06859)); // (277 of 1279.0) 2006-01-15T15:33:49Z 3125 00:52:05 6.01793133585904 Gooby 1.0.0
300
- // points.push(new GLatLng(33.51652,-112.06816)); // (278 of 1279.0) 2006-01-15T15:34:02Z 3138 00:52:18 6.0427003503036 Gooby 1.0.0
301
- // points.push(new GLatLng(33.51652,-112.06782)); // (279 of 1279.0) 2006-01-15T15:34:13Z 3149 00:52:29 6.0622851737536 Gooby 1.0.0
302
- // points.push(new GLatLng(33.51652,-112.06728)); // (280 of 1279.0) 2006-01-15T15:34:29Z 3165 00:52:45 6.09339040572125 Gooby 1.0.0
303
- // points.push(new GLatLng(33.51652,-112.06692)); // (281 of 1279.0) 2006-01-15T15:34:40Z 3176 00:52:56 6.11412724567664 Gooby 1.0.0
304
- points.push(new GLatLng(33.51652,-112.06651)); // (282 of 1279.0) 2006-01-15T15:34:52Z 3188 00:53:08 6.13774409668284 Gooby 1.0.0
305
- // points.push(new GLatLng(33.5165,-112.06615)); // (283 of 1279.0) 2006-01-15T15:35:04Z 3200 00:53:20 6.1585267772993 Gooby 1.0.0
306
- // points.push(new GLatLng(33.51648,-112.06598)); // (284 of 1279.0) 2006-01-15T15:35:12Z 3208 00:53:28 6.16841624486062 Gooby 1.0.0
307
- // points.push(new GLatLng(33.5165,-112.0657)); // (285 of 1279.0) 2006-01-15T15:35:21Z 3217 00:53:37 6.1846040193258 Gooby 1.0.0
308
- // points.push(new GLatLng(33.51652,-112.06533)); // (286 of 1279.0) 2006-01-15T15:35:32Z 3228 00:53:48 6.20596154818028 Gooby 1.0.0
309
- // points.push(new GLatLng(33.51654,-112.06503)); // (287 of 1279.0) 2006-01-15T15:35:41Z 3237 00:53:57 6.22329736965211 Gooby 1.0.0
310
- points.push(new GLatLng(33.51652,-112.06452)); // (288 of 1279.0) 2006-01-15T15:35:56Z 3252 00:54:12 6.25270698081581 Gooby 1.0.0
311
- // points.push(new GLatLng(33.5165,-112.06413)); // (289 of 1279.0) 2006-01-15T15:36:07Z 3263 00:54:23 6.27521421964448 Gooby 1.0.0
312
- // points.push(new GLatLng(33.5165,-112.0637)); // (290 of 1279.0) 2006-01-15T15:36:20Z 3276 00:54:36 6.29998309361102 Gooby 1.0.0
313
- // points.push(new GLatLng(33.5165,-112.06325)); // (291 of 1279.0) 2006-01-15T15:36:34Z 3290 00:54:50 6.32590406804841 Gooby 1.0.0
314
- // points.push(new GLatLng(33.5165,-112.06276)); // (292 of 1279.0) 2006-01-15T15:36:49Z 3305 00:55:05 6.35412906816413 Gooby 1.0.0
315
- // points.push(new GLatLng(33.51648,-112.06237)); // (293 of 1279.0) 2006-01-15T15:37:01Z 3317 00:55:17 6.37663638428985 Gooby 1.0.0
316
- points.push(new GLatLng(33.51648,-112.06186)); // (294 of 1279.0) 2006-01-15T15:37:16Z 3332 00:55:32 6.40601350102287 Gooby 1.0.0
317
- // points.push(new GLatLng(33.51645,-112.06151)); // (295 of 1279.0) 2006-01-15T15:37:26Z 3342 00:55:42 6.42628056943801 Gooby 1.0.0
318
- // points.push(new GLatLng(33.51648,-112.06104)); // (296 of 1279.0) 2006-01-15T15:37:40Z 3356 00:55:56 6.45343283011837 Gooby 1.0.0
319
- // points.push(new GLatLng(33.51648,-112.06061)); // (297 of 1279.0) 2006-01-15T15:37:53Z 3369 00:56:09 6.47820177432402 Gooby 1.0.0
320
- // points.push(new GLatLng(33.5165,-112.06018)); // (298 of 1279.0) 2006-01-15T15:38:06Z 3382 00:56:22 6.50300924977634 Gooby 1.0.0
321
- // points.push(new GLatLng(33.5165,-112.05977)); // (299 of 1279.0) 2006-01-15T15:38:18Z 3394 00:56:34 6.52662610078255 Gooby 1.0.0
322
- points.push(new GLatLng(33.5165,-112.05975)); // (300 of 1279.0) 2006-01-15T15:38:19Z 3395 00:56:35 6.52777899542044 Gooby 1.0.0
323
- // points.push(new GLatLng(33.5165,-112.0596)); // (301 of 1279.0) 2006-01-15T15:38:24Z 3400 00:56:40 6.53641936497764 Gooby 1.0.0
324
- // points.push(new GLatLng(33.5165,-112.0593)); // (302 of 1279.0) 2006-01-15T15:38:33Z 3409 00:56:49 6.55369990274 Gooby 1.0.0
325
- // points.push(new GLatLng(33.5165,-112.059)); // (303 of 1279.0) 2006-01-15T15:38:42Z 3418 00:56:58 6.57098044050235 Gooby 1.0.0
326
- // points.push(new GLatLng(33.5165,-112.05857)); // (304 of 1279.0) 2006-01-15T15:38:54Z 3430 00:57:10 6.59574931446889 Gooby 1.0.0
327
- // points.push(new GLatLng(33.51648,-112.05812)); // (305 of 1279.0) 2006-01-15T15:39:08Z 3444 00:57:24 6.62170711015801 Gooby 1.0.0
328
- points.push(new GLatLng(33.51648,-112.05767)); // (306 of 1279.0) 2006-01-15T15:39:22Z 3458 00:57:38 6.64762808459539 Gooby 1.0.0
329
- // points.push(new GLatLng(33.51645,-112.05718)); // (307 of 1279.0) 2006-01-15T15:39:37Z 3473 00:57:53 6.67592916733042 Gooby 1.0.0
330
- // points.push(new GLatLng(33.51648,-112.05675)); // (308 of 1279.0) 2006-01-15T15:39:50Z 3486 00:58:06 6.70078470534537 Gooby 1.0.0
331
- // points.push(new GLatLng(33.51648,-112.05632)); // (309 of 1279.0) 2006-01-15T15:40:03Z 3499 00:58:19 6.72555364955102 Gooby 1.0.0
332
- // points.push(new GLatLng(33.5165,-112.05587)); // (310 of 1279.0) 2006-01-15T15:40:17Z 3513 00:58:33 6.75151144524014 Gooby 1.0.0
333
- // points.push(new GLatLng(33.51645,-112.05553)); // (311 of 1279.0) 2006-01-15T15:40:27Z 3523 00:58:43 6.77139845127574 Gooby 1.0.0
334
- points.push(new GLatLng(33.51648,-112.05514)); // (312 of 1279.0) 2006-01-15T15:40:38Z 3534 00:58:54 6.79395873077043 Gooby 1.0.0
335
- // points.push(new GLatLng(33.5165,-112.05469)); // (313 of 1279.0) 2006-01-15T15:40:52Z 3548 00:59:08 6.81991652645955 Gooby 1.0.0
336
- // points.push(new GLatLng(33.5165,-112.05435)); // (314 of 1279.0) 2006-01-15T15:41:03Z 3559 00:59:19 6.83950117224607 Gooby 1.0.0
337
- // points.push(new GLatLng(33.5165,-112.05392)); // (315 of 1279.0) 2006-01-15T15:41:16Z 3572 00:59:32 6.86427004621261 Gooby 1.0.0
338
- // points.push(new GLatLng(33.5165,-112.05344)); // (316 of 1279.0) 2006-01-15T15:41:31Z 3587 00:59:47 6.89191901234266 Gooby 1.0.0
339
- // points.push(new GLatLng(33.5165,-112.05299)); // (317 of 1279.0) 2006-01-15T15:41:45Z 3601 01:00:01 6.91783998678004 Gooby 1.0.0
340
- points.push(new GLatLng(33.5165,-112.05289)); // (318 of 1279.0) 2006-01-15T15:41:48Z 3604 01:00:04 6.92360023315151 Gooby 1.0.0
341
- // points.push(new GLatLng(33.5165,-112.05271)); // (319 of 1279.0) 2006-01-15T15:41:53Z 3609 01:00:09 6.93396856923246 Gooby 1.0.0
342
- // points.push(new GLatLng(33.5165,-112.05241)); // (320 of 1279.0) 2006-01-15T15:42:02Z 3618 01:00:18 6.95124910699482 Gooby 1.0.0
343
- // points.push(new GLatLng(33.51645,-112.05196)); // (321 of 1279.0) 2006-01-15T15:42:15Z 3631 01:00:31 6.97739921396913 Gooby 1.0.0
344
- points.push(new GLatLng(33.51648,-112.05143)); // (322 of 1279.0) 2006-01-15T15:42:31Z 3647 01:00:47 7.00799868928515 7.0 00:08:43 Gooby 1.0.0
345
- // points.push(new GLatLng(33.51648,-112.05134)); // (323 of 1279.0) 2006-01-15T15:42:34Z 3650 01:00:50 7.01318285732563 Gooby 1.0.0
346
- // points.push(new GLatLng(33.51648,-112.05108)); // (324 of 1279.0) 2006-01-15T15:42:42Z 3658 01:00:58 7.02815945607237 Gooby 1.0.0
347
- // points.push(new GLatLng(33.51648,-112.05063)); // (325 of 1279.0) 2006-01-15T15:42:55Z 3671 01:01:11 7.05408043050975 Gooby 1.0.0
348
- // points.push(new GLatLng(33.5165,-112.05027)); // (326 of 1279.0) 2006-01-15T15:43:06Z 3682 01:01:22 7.07486319483738 Gooby 1.0.0
349
- // points.push(new GLatLng(33.5165,-112.04982)); // (327 of 1279.0) 2006-01-15T15:43:20Z 3696 01:01:36 7.10078416927476 Gooby 1.0.0
350
- points.push(new GLatLng(33.51648,-112.04941)); // (328 of 1279.0) 2006-01-15T15:43:32Z 3708 01:01:48 7.12444150158836 Gooby 1.0.0
351
- // points.push(new GLatLng(33.51648,-112.04902)); // (329 of 1279.0) 2006-01-15T15:43:44Z 3720 01:02:00 7.14690634162626 Gooby 1.0.0
352
- // points.push(new GLatLng(33.51648,-112.0487)); // (330 of 1279.0) 2006-01-15T15:43:53Z 3729 01:02:09 7.16533906960962 Gooby 1.0.0
353
- // points.push(new GLatLng(33.5165,-112.04827)); // (331 of 1279.0) 2006-01-15T15:44:06Z 3742 01:02:22 7.19014654506193 Gooby 1.0.0
354
- // points.push(new GLatLng(33.5165,-112.04791)); // (332 of 1279.0) 2006-01-15T15:44:16Z 3752 01:02:32 7.21088321722385 Gooby 1.0.0
355
- // points.push(new GLatLng(33.5165,-112.0475)); // (333 of 1279.0) 2006-01-15T15:44:28Z 3764 01:02:44 7.23450006823006 Gooby 1.0.0
356
- points.push(new GLatLng(33.51648,-112.04709)); // (334 of 1279.0) 2006-01-15T15:44:40Z 3776 01:02:56 7.25815740054366 Gooby 1.0.0
357
- // points.push(new GLatLng(33.51645,-112.04694)); // (335 of 1279.0) 2006-01-15T15:44:47Z 3783 01:03:03 7.26704295956013 Gooby 1.0.0
358
- // points.push(new GLatLng(33.51648,-112.04671)); // (336 of 1279.0) 2006-01-15T15:44:57Z 3793 01:03:13 7.2804526635229 Gooby 1.0.0
359
- // points.push(new GLatLng(33.5165,-112.04634)); // (337 of 1279.0) 2006-01-15T15:45:09Z 3805 01:03:25 7.30181027383543 Gooby 1.0.0
360
- // points.push(new GLatLng(33.5165,-112.04608)); // (338 of 1279.0) 2006-01-15T15:45:18Z 3814 01:03:34 7.31678675641742 Gooby 1.0.0
361
- // points.push(new GLatLng(33.51648,-112.04581)); // (339 of 1279.0) 2006-01-15T15:45:26Z 3822 01:03:42 7.33240066384618 Gooby 1.0.0
362
- points.push(new GLatLng(33.5165,-112.04548)); // (340 of 1279.0) 2006-01-15T15:45:35Z 3831 01:03:51 7.35145956190549 Gooby 1.0.0
363
- // points.push(new GLatLng(33.5165,-112.04508)); // (341 of 1279.0) 2006-01-15T15:45:47Z 3843 01:04:03 7.37450039637774 Gooby 1.0.0
364
- // points.push(new GLatLng(33.51652,-112.0446)); // (342 of 1279.0) 2006-01-15T15:46:01Z 3857 01:04:17 7.40218388548795 Gooby 1.0.0
365
- // points.push(new GLatLng(33.5165,-112.04424)); // (343 of 1279.0) 2006-01-15T15:46:11Z 3867 01:04:27 7.4229665661044 Gooby 1.0.0
366
- // points.push(new GLatLng(33.51648,-112.04377)); // (344 of 1279.0) 2006-01-15T15:46:25Z 3881 01:04:41 7.45007483658333 Gooby 1.0.0
367
- // points.push(new GLatLng(33.51652,-112.04336)); // (345 of 1279.0) 2006-01-15T15:46:37Z 3893 01:04:53 7.47385290665784 Gooby 1.0.0
368
- points.push(new GLatLng(33.51648,-112.04291)); // (346 of 1279.0) 2006-01-15T15:46:50Z 3906 01:05:06 7.49992078730261 Gooby 1.0.0
369
- // points.push(new GLatLng(33.51648,-112.04239)); // (347 of 1279.0) 2006-01-15T15:47:05Z 3921 01:05:21 7.52987392671394 Gooby 1.0.0
370
- // points.push(new GLatLng(33.5165,-112.04199)); // (348 of 1279.0) 2006-01-15T15:47:17Z 3933 01:05:33 7.55295625272161 Gooby 1.0.0
371
- // points.push(new GLatLng(33.51648,-112.04151)); // (349 of 1279.0) 2006-01-15T15:47:31Z 3947 01:05:47 7.58063980467593 Gooby 1.0.0
372
- // points.push(new GLatLng(33.51652,-112.04115)); // (350 of 1279.0) 2006-01-15T15:47:42Z 3958 01:05:58 7.60155990356121 Gooby 1.0.0
373
- // points.push(new GLatLng(33.51654,-112.04085)); // (351 of 1279.0) 2006-01-15T15:47:51Z 3967 01:06:07 7.61889572503304 Gooby 1.0.0
374
- points.push(new GLatLng(33.51654,-112.0404)); // (352 of 1279.0) 2006-01-15T15:48:05Z 3981 01:06:21 7.64481669947042 Gooby 1.0.0
375
- // points.push(new GLatLng(33.51652,-112.03995)); // (353 of 1279.0) 2006-01-15T15:48:19Z 3995 01:06:35 7.67077442813735 Gooby 1.0.0
376
- // points.push(new GLatLng(33.5165,-112.0396)); // (354 of 1279.0) 2006-01-15T15:48:29Z 4005 01:06:45 7.69098243771168 Gooby 1.0.0
377
- // points.push(new GLatLng(33.5165,-112.0392)); // (355 of 1279.0) 2006-01-15T15:48:41Z 4017 01:06:57 7.71402327218393 Gooby 1.0.0
378
- // points.push(new GLatLng(33.51648,-112.03879)); // (356 of 1279.0) 2006-01-15T15:48:53Z 4029 01:07:09 7.73768060449753 Gooby 1.0.0
379
- // points.push(new GLatLng(33.5165,-112.03842)); // (357 of 1279.0) 2006-01-15T15:49:04Z 4040 01:07:20 7.75903821481007 Gooby 1.0.0
380
- points.push(new GLatLng(33.5165,-112.03799)); // (358 of 1279.0) 2006-01-15T15:49:17Z 4053 01:07:33 7.78380708877661 Gooby 1.0.0
381
- // points.push(new GLatLng(33.5165,-112.03759)); // (359 of 1279.0) 2006-01-15T15:49:29Z 4065 01:07:45 7.80684792324885 Gooby 1.0.0
382
- // points.push(new GLatLng(33.51652,-112.03705)); // (360 of 1279.0) 2006-01-15T15:49:45Z 4081 01:08:01 7.83798373443198 Gooby 1.0.0
383
- // points.push(new GLatLng(33.51656,-112.03664)); // (361 of 1279.0) 2006-01-15T15:49:58Z 4094 01:08:14 7.86176165817405 Gooby 1.0.0
384
- // points.push(new GLatLng(33.5166,-112.03615)); // (362 of 1279.0) 2006-01-15T15:50:13Z 4109 01:08:29 7.89012169337416 Gooby 1.0.0
385
- // points.push(new GLatLng(33.51663,-112.03576)); // (363 of 1279.0) 2006-01-15T15:50:25Z 4121 01:08:41 7.91268197286884 Gooby 1.0.0
386
- points.push(new GLatLng(33.5166,-112.03536)); // (364 of 1279.0) 2006-01-15T15:50:37Z 4133 01:08:53 7.93581579543744 Gooby 1.0.0
387
- // points.push(new GLatLng(33.5166,-112.03497)); // (365 of 1279.0) 2006-01-15T15:50:49Z 4145 01:09:05 7.95828055803214 Gooby 1.0.0
388
- // points.push(new GLatLng(33.51658,-112.0346)); // (366 of 1279.0) 2006-01-15T15:51:00Z 4156 01:09:16 7.97963816834467 Gooby 1.0.0
389
- points.push(new GLatLng(33.5166,-112.03415)); // (367 of 1279.0) 2006-01-15T15:51:14Z 4170 01:09:30 8.0055958970116 8.0 00:08:43 Gooby 1.0.0
390
- // points.push(new GLatLng(33.51658,-112.03403)); // (368 of 1279.0) 2006-01-15T15:51:18Z 4174 01:09:34 8.01264480824495 Gooby 1.0.0
391
- // points.push(new GLatLng(33.51658,-112.03379)); // (369 of 1279.0) 2006-01-15T15:51:25Z 4181 01:09:41 8.0264694800766 Gooby 1.0.0
392
- // points.push(new GLatLng(33.51656,-112.03332)); // (370 of 1279.0) 2006-01-15T15:51:39Z 4195 01:09:55 8.05357775055554 Gooby 1.0.0
393
- // points.push(new GLatLng(33.51654,-112.03315)); // (371 of 1279.0) 2006-01-15T15:51:44Z 4200 01:10:00 8.06346721811686 Gooby 1.0.0
394
- // points.push(new GLatLng(33.51656,-112.033)); // (372 of 1279.0) 2006-01-15T15:51:49Z 4205 01:10:05 8.07221723227957 Gooby 1.0.0
395
- points.push(new GLatLng(33.5166,-112.03293)); // (373 of 1279.0) 2006-01-15T15:51:51Z 4207 01:10:07 8.07710534780591 Gooby 1.0.0
396
- // points.push(new GLatLng(33.5166,-112.03285)); // (374 of 1279.0) 2006-01-15T15:51:54Z 4210 01:10:10 8.08171315225211 Gooby 1.0.0
397
- // points.push(new GLatLng(33.51658,-112.03274)); // (375 of 1279.0) 2006-01-15T15:51:57Z 4213 01:10:13 8.08819852830335 Gooby 1.0.0
398
- // points.push(new GLatLng(33.51658,-112.03239)); // (376 of 1279.0) 2006-01-15T15:52:07Z 4223 01:10:23 8.10835939060351 Gooby 1.0.0
399
- // points.push(new GLatLng(33.5166,-112.03192)); // (377 of 1279.0) 2006-01-15T15:52:21Z 4237 01:10:37 8.13546759690468 Gooby 1.0.0
400
- // points.push(new GLatLng(33.51658,-112.03151)); // (378 of 1279.0) 2006-01-15T15:52:33Z 4249 01:10:49 8.15912478213902 Gooby 1.0.0
401
- points.push(new GLatLng(33.5166,-112.03109)); // (379 of 1279.0) 2006-01-15T15:52:47Z 4263 01:11:03 8.18335711743711 Gooby 1.0.0
402
- // points.push(new GLatLng(33.5166,-112.03068)); // (380 of 1279.0) 2006-01-15T15:52:59Z 4275 01:11:15 8.20697396844332 Gooby 1.0.0
403
- // points.push(new GLatLng(33.51654,-112.03031)); // (381 of 1279.0) 2006-01-15T15:53:10Z 4286 01:11:26 8.22868623431575 Gooby 1.0.0
404
- // points.push(new GLatLng(33.5165,-112.03023)); // (382 of 1279.0) 2006-01-15T15:53:13Z 4289 01:11:29 8.23405957841726 Gooby 1.0.0
405
- // points.push(new GLatLng(33.51626,-112.03025)); // (383 of 1279.0) 2006-01-15T15:53:20Z 4296 01:11:36 8.25068121025655 Gooby 1.0.0
406
- // points.push(new GLatLng(33.51588,-112.03025)); // (384 of 1279.0) 2006-01-15T15:53:32Z 4308 01:11:48 8.27693536153116 Gooby 1.0.0
407
- points.push(new GLatLng(33.5156,-112.03025)); // (385 of 1279.0) 2006-01-15T15:53:41Z 4317 01:11:57 8.29628056224864 Gooby 1.0.0
408
- // points.push(new GLatLng(33.51515,-112.03025)); // (386 of 1279.0) 2006-01-15T15:53:56Z 4332 01:12:12 8.32737108088849 Gooby 1.0.0
409
- // points.push(new GLatLng(33.5148,-112.03025)); // (387 of 1279.0) 2006-01-15T15:54:08Z 4344 01:12:24 8.35155267621342 Gooby 1.0.0
410
- // points.push(new GLatLng(33.51446,-112.03029)); // (388 of 1279.0) 2006-01-15T15:54:20Z 4356 01:12:36 8.37515604259122 Gooby 1.0.0
411
- // points.push(new GLatLng(33.51422,-112.03027)); // (389 of 1279.0) 2006-01-15T15:54:28Z 4364 01:12:44 8.3917776744305 Gooby 1.0.0
412
- // points.push(new GLatLng(33.51394,-112.03027)); // (390 of 1279.0) 2006-01-15T15:54:38Z 4374 01:12:54 8.4111227852161 Gooby 1.0.0
413
- points.push(new GLatLng(33.51362,-112.03027)); // (391 of 1279.0) 2006-01-15T15:54:49Z 4385 01:13:05 8.43323142865511 Gooby 1.0.0
414
- // points.push(new GLatLng(33.51332,-112.03027)); // (392 of 1279.0) 2006-01-15T15:55:00Z 4396 01:13:16 8.45395836647158 Gooby 1.0.0
415
- // points.push(new GLatLng(33.51287,-112.03027)); // (393 of 1279.0) 2006-01-15T15:55:15Z 4411 01:13:31 8.48504882915393 Gooby 1.0.0
416
- // points.push(new GLatLng(33.51251,-112.03029)); // (394 of 1279.0) 2006-01-15T15:55:28Z 4424 01:13:44 8.50994793543699 Gooby 1.0.0
417
- // points.push(new GLatLng(33.51223,-112.03031)); // (395 of 1279.0) 2006-01-15T15:55:38Z 4434 01:13:54 8.52932736982897 Gooby 1.0.0
418
- // points.push(new GLatLng(33.51182,-112.03029)); // (396 of 1279.0) 2006-01-15T15:55:52Z 4448 01:14:08 8.55767771086349 Gooby 1.0.0
419
- points.push(new GLatLng(33.51141,-112.03029)); // (397 of 1279.0) 2006-01-15T15:56:07Z 4463 01:14:23 8.58600460039847 Gooby 1.0.0
420
- // points.push(new GLatLng(33.51115,-112.03029)); // (398 of 1279.0) 2006-01-15T15:56:15Z 4471 01:14:31 8.60396802527706 Gooby 1.0.0
421
- // points.push(new GLatLng(33.51085,-112.03029)); // (399 of 1279.0) 2006-01-15T15:56:25Z 4481 01:14:41 8.62469496309352 Gooby 1.0.0
422
- // points.push(new GLatLng(33.51038,-112.03029)); // (400 of 1279.0) 2006-01-15T15:56:41Z 4497 01:14:57 8.65716720067599 Gooby 1.0.0
423
- // points.push(new GLatLng(33.51,-112.03025)); // (401 of 1279.0) 2006-01-15T15:56:55Z 4511 01:15:11 8.68352227920652 Gooby 1.0.0
424
- // points.push(new GLatLng(33.50955,-112.03023)); // (402 of 1279.0) 2006-01-15T15:57:10Z 4526 01:15:26 8.71463416624895 Gooby 1.0.0
425
- points.push(new GLatLng(33.50944,-112.03023)); // (403 of 1279.0) 2006-01-15T15:57:14Z 4530 01:15:30 8.72223413806702 Gooby 1.0.0
426
- // points.push(new GLatLng(33.50927,-112.03003)); // (404 of 1279.0) 2006-01-15T15:57:23Z 4539 01:15:39 8.7386869208077 Gooby 1.0.0
427
- // points.push(new GLatLng(33.5092,-112.02984)); // (405 of 1279.0) 2006-01-15T15:57:29Z 4545 01:15:45 8.7506530423924 Gooby 1.0.0
428
- // points.push(new GLatLng(33.50922,-112.02941)); // (406 of 1279.0) 2006-01-15T15:57:41Z 4557 01:15:57 8.77546262165295 Gooby 1.0.0
429
- // points.push(new GLatLng(33.5092,-112.02898)); // (407 of 1279.0) 2006-01-15T15:57:53Z 4569 01:16:09 8.8002722009135 Gooby 1.0.0
430
- // points.push(new GLatLng(33.50929,-112.02855)); // (408 of 1279.0) 2006-01-15T15:58:06Z 4582 01:16:22 8.82581169230255 Gooby 1.0.0
431
- points.push(new GLatLng(33.50927,-112.02806)); // (409 of 1279.0) 2006-01-15T15:58:20Z 4596 01:16:36 8.85407278948581 Gooby 1.0.0
432
- // points.push(new GLatLng(33.50929,-112.02774)); // (410 of 1279.0) 2006-01-15T15:58:30Z 4606 01:16:46 8.87255867314191 Gooby 1.0.0
433
- // points.push(new GLatLng(33.50935,-112.0272)); // (411 of 1279.0) 2006-01-15T15:58:46Z 4622 01:17:02 8.90394142708768 Gooby 1.0.0
434
- // points.push(new GLatLng(33.50937,-112.02677)); // (412 of 1279.0) 2006-01-15T15:58:59Z 4635 01:17:15 8.92875086609989 Gooby 1.0.0
435
- // points.push(new GLatLng(33.50946,-112.02639)); // (413 of 1279.0) 2006-01-15T15:59:12Z 4648 01:17:28 8.95150739907646 Gooby 1.0.0
436
- // points.push(new GLatLng(33.5095,-112.02604)); // (414 of 1279.0) 2006-01-15T15:59:23Z 4659 01:17:39 8.97185833234925 Gooby 1.0.0
437
- points.push(new GLatLng(33.50952,-112.02566)); // (415 of 1279.0) 2006-01-15T15:59:34Z 4670 01:17:50 8.99379253841619 Gooby 1.0.0
438
- points.push(new GLatLng(33.50952,-112.02527)); // (416 of 1279.0) 2006-01-15T15:59:45Z 4681 01:18:01 9.01625908213699 9.0 00:08:31 Gooby 1.0.0
439
- // points.push(new GLatLng(33.5095,-112.02516)); // (417 of 1279.0) 2006-01-15T15:59:48Z 4684 01:18:04 9.0227449946796 Gooby 1.0.0
440
- // points.push(new GLatLng(33.50955,-112.02484)); // (418 of 1279.0) 2006-01-15T15:59:57Z 4693 01:18:13 9.04150005564375 Gooby 1.0.0
441
- // points.push(new GLatLng(33.50955,-112.02452)); // (419 of 1279.0) 2006-01-15T16:00:07Z 4703 01:18:23 9.0599342937019 Gooby 1.0.0
442
- // points.push(new GLatLng(33.50952,-112.02413)); // (420 of 1279.0) 2006-01-15T16:00:18Z 4714 01:18:34 9.08249626967273 Gooby 1.0.0
443
- // points.push(new GLatLng(33.50952,-112.02375)); // (421 of 1279.0) 2006-01-15T16:00:31Z 4727 01:18:47 9.10438680815492 Gooby 1.0.0
444
- points.push(new GLatLng(33.50952,-112.02349)); // (422 of 1279.0) 2006-01-15T16:00:41Z 4737 01:18:57 9.11936445234388 Gooby 1.0.0
445
- // points.push(new GLatLng(33.50955,-112.02332)); // (423 of 1279.0) 2006-01-15T16:00:47Z 4743 01:19:03 9.12937456814296 Gooby 1.0.0
446
- // points.push(new GLatLng(33.50957,-112.023)); // (424 of 1279.0) 2006-01-15T16:00:57Z 4753 01:19:13 9.14786045179906 Gooby 1.0.0
447
- // points.push(new GLatLng(33.50961,-112.02263)); // (425 of 1279.0) 2006-01-15T16:01:08Z 4764 01:19:24 9.16935334253947 Gooby 1.0.0
448
- // points.push(new GLatLng(33.50961,-112.02214)); // (426 of 1279.0) 2006-01-15T16:01:23Z 4779 01:19:39 9.1975806848203 Gooby 1.0.0
449
- // points.push(new GLatLng(33.50963,-112.02154)); // (427 of 1279.0) 2006-01-15T16:01:40Z 4796 01:19:56 9.23217235249806 Gooby 1.0.0
450
- points.push(new GLatLng(33.50965,-112.02109)); // (428 of 1279.0) 2006-01-15T16:01:54Z 4810 01:20:10 9.2581321587725 Gooby 1.0.0
451
- // points.push(new GLatLng(33.50965,-112.02072)); // (429 of 1279.0) 2006-01-15T16:02:05Z 4821 01:20:21 9.27944655267334 Gooby 1.0.0
452
- // points.push(new GLatLng(33.50965,-112.02025)); // (430 of 1279.0) 2006-01-15T16:02:19Z 4835 01:20:35 9.30652162295685 Gooby 1.0.0
453
- // points.push(new GLatLng(33.50965,-112.01978)); // (431 of 1279.0) 2006-01-15T16:02:33Z 4849 01:20:49 9.33359669324035 Gooby 1.0.0
454
- // points.push(new GLatLng(33.50963,-112.01943)); // (432 of 1279.0) 2006-01-15T16:02:43Z 4859 01:20:59 9.35380633849477 Gooby 1.0.0
455
- // points.push(new GLatLng(33.50965,-112.019)); // (433 of 1279.0) 2006-01-15T16:02:56Z 4872 01:21:12 9.37861570738252 Gooby 1.0.0
456
- points.push(new GLatLng(33.50972,-112.01864)); // (434 of 1279.0) 2006-01-15T16:03:08Z 4884 01:21:24 9.39991050273764 Gooby 1.0.0
457
- // points.push(new GLatLng(33.50976,-112.01838)); // (435 of 1279.0) 2006-01-15T16:03:17Z 4893 01:21:33 9.41514109006939 Gooby 1.0.0
458
- // points.push(new GLatLng(33.5098,-112.01797)); // (436 of 1279.0) 2006-01-15T16:03:29Z 4905 01:21:45 9.43892091606292 Gooby 1.0.0
459
- // points.push(new GLatLng(33.50982,-112.01757)); // (437 of 1279.0) 2006-01-15T16:03:41Z 4917 01:21:57 9.46200497554661 Gooby 1.0.0
460
- // points.push(new GLatLng(33.50982,-112.01716)); // (438 of 1279.0) 2006-01-15T16:03:53Z 4929 01:22:09 9.48562366811746 Gooby 1.0.0
461
- // points.push(new GLatLng(33.50991,-112.01677)); // (439 of 1279.0) 2006-01-15T16:04:06Z 4942 01:22:22 9.50893489254527 Gooby 1.0.0
462
- points.push(new GLatLng(33.50993,-112.01634)); // (440 of 1279.0) 2006-01-15T16:04:19Z 4955 01:22:35 9.53374419130836 Gooby 1.0.0
463
- // points.push(new GLatLng(33.50993,-112.01581)); // (441 of 1279.0) 2006-01-15T16:04:35Z 4971 01:22:51 9.56427564879661 Gooby 1.0.0
464
- // points.push(new GLatLng(33.50989,-112.01531)); // (442 of 1279.0) 2006-01-15T16:04:49Z 4985 01:23:05 9.59321121073634 Gooby 1.0.0
465
- // points.push(new GLatLng(33.50989,-112.01493)); // (443 of 1279.0) 2006-01-15T16:05:01Z 4997 01:23:17 9.61510174921853 Gooby 1.0.0
466
- // points.push(new GLatLng(33.50993,-112.01454)); // (444 of 1279.0) 2006-01-15T16:05:13Z 5009 01:23:29 9.63773762941535 Gooby 1.0.0
467
- // points.push(new GLatLng(33.50993,-112.01422)); // (445 of 1279.0) 2006-01-15T16:05:23Z 5019 01:23:39 9.65617167872092 Gooby 1.0.0
468
- points.push(new GLatLng(33.50991,-112.01368)); // (446 of 1279.0) 2006-01-15T16:05:39Z 5035 01:23:55 9.68730989248148 Gooby 1.0.0
469
- // points.push(new GLatLng(33.50993,-112.01321)); // (447 of 1279.0) 2006-01-15T16:05:53Z 5049 01:24:09 9.71442015239575 Gooby 1.0.0
470
- // points.push(new GLatLng(33.50989,-112.01278)); // (448 of 1279.0) 2006-01-15T16:06:05Z 5061 01:24:21 9.73934467904884 Gooby 1.0.0
471
- // points.push(new GLatLng(33.50991,-112.01242)); // (449 of 1279.0) 2006-01-15T16:06:17Z 5073 01:24:33 9.76012903382474 Gooby 1.0.0
472
- // points.push(new GLatLng(33.51025,-112.01227)); // (450 of 1279.0) 2006-01-15T16:06:31Z 5087 01:24:47 9.78515852890009 Gooby 1.0.0
473
- // points.push(new GLatLng(33.51006,-112.01162)); // (451 of 1279.0) 2006-01-15T16:06:45Z 5101 01:25:01 9.82483707150321 Gooby 1.0.0
474
- points.push(new GLatLng(33.50997,-112.01109)); // (452 of 1279.0) 2006-01-15T16:06:58Z 5114 01:25:14 9.85599528092593 Gooby 1.0.0
475
- // points.push(new GLatLng(33.51,-112.0107)); // (453 of 1279.0) 2006-01-15T16:07:10Z 5126 01:25:26 9.87855725689676 Gooby 1.0.0
476
- // points.push(new GLatLng(33.51,-112.0104)); // (454 of 1279.0) 2006-01-15T16:07:19Z 5135 01:25:35 9.89583920407432 Gooby 1.0.0
477
- // points.push(new GLatLng(33.51002,-112.00997)); // (455 of 1279.0) 2006-01-15T16:07:32Z 5148 01:25:48 9.92064850283741 Gooby 1.0.0
478
- // points.push(new GLatLng(33.50997,-112.00954)); // (456 of 1279.0) 2006-01-15T16:07:45Z 5161 01:26:01 9.94565908463453 Gooby 1.0.0
479
- // points.push(new GLatLng(33.51,-112.00907)); // (457 of 1279.0) 2006-01-15T16:08:00Z 5176 01:26:16 9.97281333152732 Gooby 1.0.0
480
- points.push(new GLatLng(33.51,-112.00875)); // (458 of 1279.0) 2006-01-15T16:08:10Z 5186 01:26:26 9.99124738083288 Gooby 1.0.0
481
- // points.push(new GLatLng(33.51002,-112.00862)); // (459 of 1279.0) 2006-01-15T16:08:14Z 5190 01:26:30 9.99886244604109 Gooby 1.0.0
482
- points.push(new GLatLng(33.51,-112.00853)); // (460 of 1279.0) 2006-01-15T16:08:17Z 5193 01:26:33 10.0042280139531 10.0 00:08:32 Gooby 1.0.0
483
- // points.push(new GLatLng(33.51002,-112.00832)); // (461 of 1279.0) 2006-01-15T16:08:23Z 5199 01:26:39 10.0164039823549 Gooby 1.0.0
484
- // points.push(new GLatLng(33.50997,-112.00793)); // (462 of 1279.0) 2006-01-15T16:08:34Z 5210 01:26:50 10.0391345073322 Gooby 1.0.0
485
- // points.push(new GLatLng(33.50997,-112.00789)); // (463 of 1279.0) 2006-01-15T16:08:35Z 5211 01:26:51 10.0414380319593 Gooby 1.0.0
486
- // points.push(new GLatLng(33.51,-112.00761)); // (464 of 1279.0) 2006-01-15T16:08:44Z 5220 01:27:00 10.0577005424741 Gooby 1.0.0
487
- // points.push(new GLatLng(33.51002,-112.00731)); // (465 of 1279.0) 2006-01-15T16:08:54Z 5230 01:27:10 10.0750375681709 Gooby 1.0.0
488
- points.push(new GLatLng(33.51,-112.00688)); // (466 of 1279.0) 2006-01-15T16:09:07Z 5243 01:27:23 10.099846866934 Gooby 1.0.0
489
- // points.push(new GLatLng(33.50995,-112.0066)); // (467 of 1279.0) 2006-01-15T16:09:15Z 5251 01:27:31 10.1163425249618 Gooby 1.0.0
490
- // points.push(new GLatLng(33.50993,-112.00619)); // (468 of 1279.0) 2006-01-15T16:09:27Z 5263 01:27:43 10.1400016221553 Gooby 1.0.0
491
- // points.push(new GLatLng(33.50995,-112.00587)); // (469 of 1279.0) 2006-01-15T16:09:37Z 5273 01:27:53 10.1584875058114 Gooby 1.0.0
492
- // points.push(new GLatLng(33.50995,-112.00549)); // (470 of 1279.0) 2006-01-15T16:09:49Z 5285 01:28:05 10.1803780442936 Gooby 1.0.0
493
- // points.push(new GLatLng(33.50995,-112.00512)); // (471 of 1279.0) 2006-01-15T16:10:01Z 5297 01:28:17 10.20169260144 Gooby 1.0.0
494
- points.push(new GLatLng(33.50997,-112.00476)); // (472 of 1279.0) 2006-01-15T16:10:12Z 5308 01:28:28 10.2224768725111 Gooby 1.0.0
495
- // points.push(new GLatLng(33.50995,-112.00441)); // (473 of 1279.0) 2006-01-15T16:10:22Z 5318 01:28:38 10.2426864316804 Gooby 1.0.0
496
- // points.push(new GLatLng(33.50995,-112.00405)); // (474 of 1279.0) 2006-01-15T16:10:33Z 5329 01:28:49 10.2634247817159 Gooby 1.0.0
497
- // points.push(new GLatLng(33.50995,-112.00371)); // (475 of 1279.0) 2006-01-15T16:10:43Z 5339 01:28:59 10.2830110264158 Gooby 1.0.0
498
- // points.push(new GLatLng(33.50991,-112.00328)); // (476 of 1279.0) 2006-01-15T16:10:57Z 5353 01:29:13 10.3079355530689 Gooby 1.0.0
499
- // points.push(new GLatLng(33.50989,-112.0028)); // (477 of 1279.0) 2006-01-15T16:11:11Z 5367 01:29:27 10.335621241638 Gooby 1.0.0
500
- points.push(new GLatLng(33.50991,-112.00218)); // (478 of 1279.0) 2006-01-15T16:11:29Z 5385 01:29:45 10.3713640420081 Gooby 1.0.0
501
- // points.push(new GLatLng(33.50989,-112.00184)); // (479 of 1279.0) 2006-01-15T16:11:39Z 5395 01:29:55 10.3909989910199 Gooby 1.0.0
502
- // points.push(new GLatLng(33.50989,-112.00162)); // (480 of 1279.0) 2006-01-15T16:11:45Z 5401 01:30:01 10.4036725983217 Gooby 1.0.0
503
- // points.push(new GLatLng(33.50989,-112.00126)); // (481 of 1279.0) 2006-01-15T16:11:56Z 5412 01:30:12 10.4244109483572 Gooby 1.0.0
504
- // points.push(new GLatLng(33.50989,-112.00087)); // (482 of 1279.0) 2006-01-15T16:12:08Z 5424 01:30:24 10.4468775695151 Gooby 1.0.0
505
- // points.push(new GLatLng(33.50987,-112.00055)); // (483 of 1279.0) 2006-01-15T16:12:17Z 5433 01:30:33 10.4653634531712 Gooby 1.0.0
506
- points.push(new GLatLng(33.50989,-112.00034)); // (484 of 1279.0) 2006-01-15T16:12:24Z 5440 01:30:40 10.4775395644557 Gooby 1.0.0
507
- // points.push(new GLatLng(33.50991,-111.99997)); // (485 of 1279.0) 2006-01-15T16:12:35Z 5451 01:30:51 10.4988988038641 Gooby 1.0.0
508
- // points.push(new GLatLng(33.50993,-111.99969)); // (486 of 1279.0) 2006-01-15T16:12:44Z 5460 01:31:00 10.5150877604874 Gooby 1.0.0
509
- // points.push(new GLatLng(33.50995,-111.99939)); // (487 of 1279.0) 2006-01-15T16:12:54Z 5470 01:31:10 10.5324247861842 Gooby 1.0.0
510
- // points.push(new GLatLng(33.50993,-111.99907)); // (488 of 1279.0) 2006-01-15T16:13:03Z 5479 01:31:19 10.5509106698403 Gooby 1.0.0
511
- // points.push(new GLatLng(33.50991,-111.99875)); // (489 of 1279.0) 2006-01-15T16:13:12Z 5488 01:31:28 10.5693965534964 Gooby 1.0.0
512
- points.push(new GLatLng(33.50989,-111.99832)); // (490 of 1279.0) 2006-01-15T16:13:24Z 5500 01:31:40 10.5942059223842 Gooby 1.0.0
513
- // points.push(new GLatLng(33.50991,-111.99802)); // (491 of 1279.0) 2006-01-15T16:13:33Z 5509 01:31:49 10.6115430484292 Gooby 1.0.0
514
- // points.push(new GLatLng(33.50993,-111.99763)); // (492 of 1279.0) 2006-01-15T16:13:44Z 5520 01:32:00 10.6340520650229 Gooby 1.0.0
515
- // points.push(new GLatLng(33.50991,-111.99731)); // (493 of 1279.0) 2006-01-15T16:13:54Z 5530 01:32:10 10.652537948679 Gooby 1.0.0
516
- // points.push(new GLatLng(33.50989,-111.99699)); // (494 of 1279.0) 2006-01-15T16:14:03Z 5539 01:32:19 10.6710238323351 Gooby 1.0.0
517
- // points.push(new GLatLng(33.50985,-111.99669)); // (495 of 1279.0) 2006-01-15T16:14:12Z 5548 01:32:28 10.6885254512107 Gooby 1.0.0
518
- points.push(new GLatLng(33.50982,-111.99632)); // (496 of 1279.0) 2006-01-15T16:14:24Z 5560 01:32:40 10.7099404935829 Gooby 1.0.0
519
- // points.push(new GLatLng(33.50982,-111.99615)); // (497 of 1279.0) 2006-01-15T16:14:33Z 5569 01:32:49 10.7197336159328 Gooby 1.0.0
520
- // points.push(new GLatLng(33.5098,-111.99613)); // (498 of 1279.0) 2006-01-15T16:14:35Z 5571 01:32:51 10.7215334512866 Gooby 1.0.0
521
- // points.push(new GLatLng(33.50982,-111.99596)); // (499 of 1279.0) 2006-01-15T16:14:41Z 5577 01:32:57 10.7314236224992 Gooby 1.0.0
522
- // points.push(new GLatLng(33.5098,-111.99555)); // (500 of 1279.0) 2006-01-15T16:14:54Z 5590 01:33:10 10.7550827196927 Gooby 1.0.0
523
- // points.push(new GLatLng(33.50982,-111.99512)); // (501 of 1279.0) 2006-01-15T16:15:06Z 5602 01:33:22 10.7798920885805 Gooby 1.0.0
524
- points.push(new GLatLng(33.50985,-111.99482)); // (502 of 1279.0) 2006-01-15T16:15:15Z 5611 01:33:31 10.797298017188 Gooby 1.0.0
525
- // points.push(new GLatLng(33.50985,-111.99441)); // (503 of 1279.0) 2006-01-15T16:15:28Z 5624 01:33:44 10.8209167097589 Gooby 1.0.0
526
- // points.push(new GLatLng(33.5098,-111.99403)); // (504 of 1279.0) 2006-01-15T16:15:39Z 5635 01:33:55 10.8430780918011 Gooby 1.0.0
527
- // points.push(new GLatLng(33.50982,-111.99373)); // (505 of 1279.0) 2006-01-15T16:15:48Z 5644 01:34:04 10.8604153181939 Gooby 1.0.0
528
- // points.push(new GLatLng(33.5098,-111.99347)); // (506 of 1279.0) 2006-01-15T16:15:56Z 5652 01:34:12 10.8754567126173 Gooby 1.0.0
529
- // points.push(new GLatLng(33.50982,-111.99315)); // (507 of 1279.0) 2006-01-15T16:16:06Z 5662 01:34:22 10.8939425962734 Gooby 1.0.0
530
- points.push(new GLatLng(33.50976,-111.99281)); // (508 of 1279.0) 2006-01-15T16:16:16Z 5672 01:34:32 10.913962654072 Gooby 1.0.0
531
- // points.push(new GLatLng(33.50974,-111.99238)); // (509 of 1279.0) 2006-01-15T16:16:29Z 5685 01:34:45 10.9387720930842 Gooby 1.0.0
532
- // points.push(new GLatLng(33.50974,-111.99201)); // (510 of 1279.0) 2006-01-15T16:16:40Z 5696 01:34:56 10.9600866502305 Gooby 1.0.0
533
- // points.push(new GLatLng(33.50972,-111.99154)); // (511 of 1279.0) 2006-01-15T16:16:54Z 5710 01:35:10 10.9871969743177 Gooby 1.0.0
534
- points.push(new GLatLng(33.50967,-111.9912)); // (512 of 1279.0) 2006-01-15T16:17:05Z 5721 01:35:21 11.0070855549589 11.0 00:08:48 Gooby 1.0.0
535
- // points.push(new GLatLng(33.50967,-111.99098)); // (513 of 1279.0) 2006-01-15T16:17:12Z 5728 01:35:28 11.0197591622606 Gooby 1.0.0
536
- // points.push(new GLatLng(33.50965,-111.99062)); // (514 of 1279.0) 2006-01-15T16:17:23Z 5739 01:35:39 11.040543600741 Gooby 1.0.0
537
- // points.push(new GLatLng(33.50963,-111.99019)); // (515 of 1279.0) 2006-01-15T16:17:36Z 5752 01:35:52 11.0653529696287 Gooby 1.0.0
538
- // points.push(new GLatLng(33.50963,-111.98976)); // (516 of 1279.0) 2006-01-15T16:17:49Z 5765 01:36:05 11.0901238102151 Gooby 1.0.0
539
- // points.push(new GLatLng(33.50961,-111.98935)); // (517 of 1279.0) 2006-01-15T16:18:01Z 5777 01:36:17 11.1137829809424 Gooby 1.0.0
540
- points.push(new GLatLng(33.50963,-111.9889)); // (518 of 1279.0) 2006-01-15T16:18:15Z 5791 01:36:31 11.1397428542336 Gooby 1.0.0
541
- // points.push(new GLatLng(33.50963,-111.98849)); // (519 of 1279.0) 2006-01-15T16:18:27Z 5803 01:36:43 11.1633616204641 Gooby 1.0.0
542
- // points.push(new GLatLng(33.50963,-111.98815)); // (520 of 1279.0) 2006-01-15T16:18:38Z 5814 01:36:54 11.182947865164 Gooby 1.0.0
543
- // points.push(new GLatLng(33.50959,-111.98774)); // (521 of 1279.0) 2006-01-15T16:18:49Z 5825 01:37:05 11.2067276911575 Gooby 1.0.0
544
- // points.push(new GLatLng(33.50955,-111.98742)); // (522 of 1279.0) 2006-01-15T16:19:00Z 5836 01:37:16 11.2253678397304 Gooby 1.0.0
545
- // points.push(new GLatLng(33.5095,-111.98708)); // (523 of 1279.0) 2006-01-15T16:19:10Z 5846 01:37:26 11.245256507846 Gooby 1.0.0
546
- points.push(new GLatLng(33.50946,-111.98697)); // (524 of 1279.0) 2006-01-15T16:19:13Z 5849 01:37:29 11.2521698504371 Gooby 1.0.0
547
- // points.push(new GLatLng(33.50927,-111.98686)); // (525 of 1279.0) 2006-01-15T16:19:20Z 5856 01:37:36 11.2667463793551 Gooby 1.0.0
548
- // points.push(new GLatLng(33.50899,-111.98682)); // (526 of 1279.0) 2006-01-15T16:19:29Z 5865 01:37:45 11.2862282431393 Gooby 1.0.0
549
- // points.push(new GLatLng(33.5086,-111.98682)); // (527 of 1279.0) 2006-01-15T16:19:42Z 5878 01:37:58 11.3131732674661 Gooby 1.0.0
550
- // points.push(new GLatLng(33.5083,-111.98682)); // (528 of 1279.0) 2006-01-15T16:19:52Z 5888 01:38:08 11.3339002052825 Gooby 1.0.0
551
- // points.push(new GLatLng(33.50796,-111.9868)); // (529 of 1279.0) 2006-01-15T16:20:04Z 5900 01:38:20 11.3574190251024 Gooby 1.0.0
552
- points.push(new GLatLng(33.50751,-111.9868)); // (530 of 1279.0) 2006-01-15T16:20:20Z 5916 01:38:36 11.3885094877847 Gooby 1.0.0
553
- // points.push(new GLatLng(33.50718,-111.9868)); // (531 of 1279.0) 2006-01-15T16:20:31Z 5927 01:38:47 11.4113092506286 Gooby 1.0.0
554
- // points.push(new GLatLng(33.50697,-111.9868)); // (532 of 1279.0) 2006-01-15T16:20:39Z 5935 01:38:55 11.4258180687291 Gooby 1.0.0
555
- // points.push(new GLatLng(33.50671,-111.9868)); // (533 of 1279.0) 2006-01-15T16:20:48Z 5944 01:39:04 11.4437813967581 Gooby 1.0.0
556
- // points.push(new GLatLng(33.50626,-111.98682)); // (534 of 1279.0) 2006-01-15T16:21:04Z 5960 01:39:20 11.4748932278814 Gooby 1.0.0
557
- // points.push(new GLatLng(33.5059,-111.98684)); // (535 of 1279.0) 2006-01-15T16:21:17Z 5973 01:39:33 11.4997923341645 Gooby 1.0.0
558
- points.push(new GLatLng(33.50562,-111.98682)); // (536 of 1279.0) 2006-01-15T16:21:27Z 5983 01:39:43 11.5191719481013 Gooby 1.0.0
559
- // points.push(new GLatLng(33.50538,-111.98684)); // (537 of 1279.0) 2006-01-15T16:21:35Z 5991 01:39:51 11.5357936846078 Gooby 1.0.0
560
- // points.push(new GLatLng(33.50504,-111.98684)); // (538 of 1279.0) 2006-01-15T16:21:47Z 6003 01:40:03 11.5592843039944 Gooby 1.0.0
561
- // points.push(new GLatLng(33.50463,-111.98684)); // (539 of 1279.0) 2006-01-15T16:22:01Z 6017 01:40:17 11.5876111321125 Gooby 1.0.0
562
- // points.push(new GLatLng(33.50425,-111.98686)); // (540 of 1279.0) 2006-01-15T16:22:15Z 6031 01:40:31 11.613890584641 Gooby 1.0.0
563
- // points.push(new GLatLng(33.50388,-111.98686)); // (541 of 1279.0) 2006-01-15T16:22:28Z 6044 01:40:44 11.6394539068567 Gooby 1.0.0
564
- points.push(new GLatLng(33.50349,-111.98686)); // (542 of 1279.0) 2006-01-15T16:22:41Z 6057 01:40:57 11.6663989957499 Gooby 1.0.0
565
- // points.push(new GLatLng(33.50319,-111.98688)); // (543 of 1279.0) 2006-01-15T16:22:51Z 6067 01:41:07 11.6871579725381 Gooby 1.0.0
566
- // points.push(new GLatLng(33.50276,-111.98686)); // (544 of 1279.0) 2006-01-15T16:23:05Z 6081 01:41:21 11.7168890534897 Gooby 1.0.0
567
- // points.push(new GLatLng(33.50231,-111.98688)); // (545 of 1279.0) 2006-01-15T16:23:21Z 6097 01:41:37 11.7480008846131 Gooby 1.0.0
568
- // points.push(new GLatLng(33.50197,-111.98688)); // (546 of 1279.0) 2006-01-15T16:23:33Z 6109 01:41:49 11.7714914299382 Gooby 1.0.0
569
- // points.push(new GLatLng(33.50171,-111.98688)); // (547 of 1279.0) 2006-01-15T16:23:42Z 6118 01:41:58 11.7894547579672 Gooby 1.0.0
570
- points.push(new GLatLng(33.5015,-111.98688)); // (548 of 1279.0) 2006-01-15T16:23:50Z 6126 01:42:06 11.8039636959767 Gooby 1.0.0
571
- // points.push(new GLatLng(33.50126,-111.98688)); // (549 of 1279.0) 2006-01-15T16:23:59Z 6135 01:42:15 11.8205452965917 Gooby 1.0.0
572
- // points.push(new GLatLng(33.50094,-111.98688)); // (550 of 1279.0) 2006-01-15T16:24:11Z 6147 01:42:27 11.8426540974117 Gooby 1.0.0
573
- // points.push(new GLatLng(33.50064,-111.9869)); // (551 of 1279.0) 2006-01-15T16:24:22Z 6158 01:42:38 11.8634131580067 Gooby 1.0.0
574
- // points.push(new GLatLng(33.5004,-111.9869)); // (552 of 1279.0) 2006-01-15T16:24:30Z 6166 01:42:46 11.8799947586217 Gooby 1.0.0
575
- // points.push(new GLatLng(33.50019,-111.98688)); // (553 of 1279.0) 2006-01-15T16:24:38Z 6174 01:42:54 11.8945494296318 Gooby 1.0.0
576
- points.push(new GLatLng(33.49993,-111.98688)); // (554 of 1279.0) 2006-01-15T16:24:47Z 6183 01:43:03 11.9125127576607 Gooby 1.0.0
577
- // points.push(new GLatLng(33.49959,-111.98688)); // (555 of 1279.0) 2006-01-15T16:24:59Z 6195 01:43:15 11.9360033029859 Gooby 1.0.0
578
- // points.push(new GLatLng(33.49937,-111.98693)); // (556 of 1279.0) 2006-01-15T16:25:07Z 6203 01:43:23 11.9514734819481 Gooby 1.0.0
579
- // points.push(new GLatLng(33.49912,-111.98693)); // (557 of 1279.0) 2006-01-15T16:25:16Z 6212 01:43:32 11.9687458629791 Gooby 1.0.0
580
- // points.push(new GLatLng(33.49888,-111.98695)); // (558 of 1279.0) 2006-01-15T16:25:24Z 6220 01:43:40 11.9853673901505 Gooby 1.0.0
581
- points.push(new GLatLng(33.4986,-111.9869)); // (559 of 1279.0) 2006-01-15T16:25:34Z 6230 01:43:50 12.0049259018489 12.0 00:08:29 Gooby 1.0.0
582
- // points.push(new GLatLng(33.49841,-111.9869)); // (560 of 1279.0) 2006-01-15T16:25:41Z 6237 01:43:57 12.0180531762814 Gooby 1.0.0
583
- // points.push(new GLatLng(33.49815,-111.9869)); // (561 of 1279.0) 2006-01-15T16:25:50Z 6246 01:44:06 12.03601660116 Gooby 1.0.0
584
- // points.push(new GLatLng(33.49807,-111.9869)); // (562 of 1279.0) 2006-01-15T16:25:53Z 6249 01:44:09 12.041543801365 Gooby 1.0.0
585
- // points.push(new GLatLng(33.49792,-111.9869)); // (563 of 1279.0) 2006-01-15T16:25:58Z 6254 01:44:14 12.0519072702732 Gooby 1.0.0
586
- // points.push(new GLatLng(33.49772,-111.9869)); // (564 of 1279.0) 2006-01-15T16:26:05Z 6261 01:44:21 12.0657251448808 Gooby 1.0.0
587
- points.push(new GLatLng(33.49749,-111.9869)); // (565 of 1279.0) 2006-01-15T16:26:13Z 6269 01:44:29 12.0816158249422 Gooby 1.0.0
588
- // points.push(new GLatLng(33.49716,-111.98693)); // (566 of 1279.0) 2006-01-15T16:26:24Z 6280 01:44:40 12.1044809641306 Gooby 1.0.0
589
- // points.push(new GLatLng(33.49689,-111.98697)); // (567 of 1279.0) 2006-01-15T16:26:34Z 6290 01:44:50 12.1232770734844 Gooby 1.0.0
590
- // points.push(new GLatLng(33.49654,-111.98695)); // (568 of 1279.0) 2006-01-15T16:26:46Z 6302 01:45:02 12.1474859924921 Gooby 1.0.0
591
- // points.push(new GLatLng(33.49628,-111.98697)); // (569 of 1279.0) 2006-01-15T16:26:55Z 6311 01:45:11 12.1654862791543 Gooby 1.0.0
592
- // points.push(new GLatLng(33.49605,-111.98697)); // (570 of 1279.0) 2006-01-15T16:27:03Z 6319 01:45:19 12.1813769592158 Gooby 1.0.0
593
- points.push(new GLatLng(33.49594,-111.98697)); // (571 of 1279.0) 2006-01-15T16:27:09Z 6325 01:45:25 12.1889767021156 Gooby 1.0.0
594
- // points.push(new GLatLng(33.49575,-111.98695)); // (572 of 1279.0) 2006-01-15T16:27:18Z 6334 01:45:34 12.2021542413809 Gooby 1.0.0
595
- // points.push(new GLatLng(33.49551,-111.98697)); // (573 of 1279.0) 2006-01-15T16:27:26Z 6342 01:45:42 12.2187758732201 Gooby 1.0.0
596
- // points.push(new GLatLng(33.49528,-111.98697)); // (574 of 1279.0) 2006-01-15T16:27:35Z 6351 01:45:51 12.2346665532816 Gooby 1.0.0
597
- // points.push(new GLatLng(33.4951,-111.98699)); // (575 of 1279.0) 2006-01-15T16:27:41Z 6357 01:45:57 12.2471559743386 Gooby 1.0.0
598
- // points.push(new GLatLng(33.4948,-111.98697)); // (576 of 1279.0) 2006-01-15T16:27:52Z 6368 01:46:08 12.2679149511268 Gooby 1.0.0
599
- points.push(new GLatLng(33.4945,-111.98697)); // (577 of 1279.0) 2006-01-15T16:28:02Z 6378 01:46:18 12.2886418889433 Gooby 1.0.0
600
- // points.push(new GLatLng(33.49422,-111.98697)); // (578 of 1279.0) 2006-01-15T16:28:12Z 6388 01:46:28 12.3079869997289 Gooby 1.0.0
601
- // points.push(new GLatLng(33.4939,-111.98697)); // (579 of 1279.0) 2006-01-15T16:28:23Z 6399 01:46:39 12.3300958005489 Gooby 1.0.0
602
- // points.push(new GLatLng(33.49362,-111.98697)); // (580 of 1279.0) 2006-01-15T16:28:33Z 6409 01:46:49 12.3494410012663 Gooby 1.0.0
603
- // points.push(new GLatLng(33.49328,-111.98699)); // (581 of 1279.0) 2006-01-15T16:28:45Z 6421 01:47:01 12.3729598210862 Gooby 1.0.0
604
- // points.push(new GLatLng(33.49304,-111.98699)); // (582 of 1279.0) 2006-01-15T16:28:53Z 6429 01:47:09 12.3895414217012 Gooby 1.0.0
605
- points.push(new GLatLng(33.49283,-111.98699)); // (583 of 1279.0) 2006-01-15T16:29:01Z 6437 01:47:17 12.4040503597108 Gooby 1.0.0
606
- // points.push(new GLatLng(33.49259,-111.98699)); // (584 of 1279.0) 2006-01-15T16:29:09Z 6445 01:47:25 12.4206319603257 Gooby 1.0.0
607
- // points.push(new GLatLng(33.49234,-111.98699)); // (585 of 1279.0) 2006-01-15T16:29:18Z 6454 01:47:34 12.4379044420807 Gooby 1.0.0
608
- // points.push(new GLatLng(33.49199,-111.98699)); // (586 of 1279.0) 2006-01-15T16:29:30Z 6466 01:47:46 12.4620858935151 Gooby 1.0.0
609
- // points.push(new GLatLng(33.49174,-111.98697)); // (587 of 1279.0) 2006-01-15T16:29:39Z 6475 01:47:55 12.4793968089161 Gooby 1.0.0
610
- // points.push(new GLatLng(33.49146,-111.98699)); // (588 of 1279.0) 2006-01-15T16:29:49Z 6485 01:48:05 12.4987762433081 Gooby 1.0.0
611
- points.push(new GLatLng(33.4912,-111.98701)); // (589 of 1279.0) 2006-01-15T16:29:58Z 6494 01:48:14 12.5167765299703 Gooby 1.0.0
612
- // points.push(new GLatLng(33.49077,-111.98701)); // (590 of 1279.0) 2006-01-15T16:30:13Z 6509 01:48:29 12.546485190812 Gooby 1.0.0
613
- // points.push(new GLatLng(33.49047,-111.98701)); // (591 of 1279.0) 2006-01-15T16:30:24Z 6520 01:48:40 12.5672122125648 Gooby 1.0.0
614
- // points.push(new GLatLng(33.49015,-111.98701)); // (592 of 1279.0) 2006-01-15T16:30:35Z 6531 01:48:51 12.5893210133848 Gooby 1.0.0
615
- // points.push(new GLatLng(33.48976,-111.98701)); // (593 of 1279.0) 2006-01-15T16:30:48Z 6544 01:49:04 12.616266102278 Gooby 1.0.0
616
- // points.push(new GLatLng(33.48942,-111.98701)); // (594 of 1279.0) 2006-01-15T16:31:01Z 6557 01:49:17 12.6397567957257 Gooby 1.0.0
617
- points.push(new GLatLng(33.48916,-111.98701)); // (595 of 1279.0) 2006-01-15T16:31:10Z 6566 01:49:26 12.6577202206043 Gooby 1.0.0
618
- // points.push(new GLatLng(33.4889,-111.98701)); // (596 of 1279.0) 2006-01-15T16:31:19Z 6575 01:49:35 12.6756835486333 Gooby 1.0.0
619
- // points.push(new GLatLng(33.48865,-111.98703)); // (597 of 1279.0) 2006-01-15T16:31:28Z 6584 01:49:44 12.6929944640343 Gooby 1.0.0
620
- // points.push(new GLatLng(33.48835,-111.98701)); // (598 of 1279.0) 2006-01-15T16:31:39Z 6595 01:49:55 12.7137534408225 Gooby 1.0.0
621
- // points.push(new GLatLng(33.48811,-111.98701)); // (599 of 1279.0) 2006-01-15T16:31:47Z 6603 01:50:03 12.7303350414375 Gooby 1.0.0
622
- // points.push(new GLatLng(33.48785,-111.98703)); // (600 of 1279.0) 2006-01-15T16:31:57Z 6613 01:50:13 12.7483355214007 Gooby 1.0.0
623
- points.push(new GLatLng(33.48751,-111.98703)); // (601 of 1279.0) 2006-01-15T16:32:09Z 6625 01:50:25 12.7718260667259 Gooby 1.0.0
624
- // points.push(new GLatLng(33.48719,-111.98701)); // (602 of 1279.0) 2006-01-15T16:32:20Z 6636 01:50:36 12.7939649067981 Gooby 1.0.0
625
- // points.push(new GLatLng(33.48682,-111.98701)); // (603 of 1279.0) 2006-01-15T16:32:33Z 6649 01:50:49 12.8195282290138 Gooby 1.0.0
626
- // points.push(new GLatLng(33.4865,-111.98701)); // (604 of 1279.0) 2006-01-15T16:32:44Z 6660 01:51:00 12.8416370298338 Gooby 1.0.0
627
- // points.push(new GLatLng(33.48609,-111.98701)); // (605 of 1279.0) 2006-01-15T16:32:58Z 6674 01:51:14 12.8699639193688 Gooby 1.0.0
628
- // points.push(new GLatLng(33.48571,-111.98701)); // (606 of 1279.0) 2006-01-15T16:33:12Z 6688 01:51:28 12.8962180706434 Gooby 1.0.0
629
- points.push(new GLatLng(33.48526,-111.98701)); // (607 of 1279.0) 2006-01-15T16:33:28Z 6704 01:51:44 12.9273085892833 Gooby 1.0.0
630
- // points.push(new GLatLng(33.48493,-111.98701)); // (608 of 1279.0) 2006-01-15T16:33:40Z 6716 01:51:56 12.9501083521271 Gooby 1.0.0
631
- // points.push(new GLatLng(33.48448,-111.98699)); // (609 of 1279.0) 2006-01-15T16:33:56Z 6732 01:52:12 12.9812202391696 Gooby 1.0.0
632
- points.push(new GLatLng(33.48412,-111.98699)); // (610 of 1279.0) 2006-01-15T16:34:09Z 6745 01:52:25 13.0060927100388 13.0 00:08:35 Gooby 1.0.0
633
- // points.push(new GLatLng(33.48373,-111.98701)); // (611 of 1279.0) 2006-01-15T16:34:22Z 6758 01:52:38 13.0330625165083 Gooby 1.0.0
634
- // points.push(new GLatLng(33.48356,-111.98701)); // (612 of 1279.0) 2006-01-15T16:34:28Z 6764 01:52:44 13.044807937293 Gooby 1.0.0
635
- // points.push(new GLatLng(33.4833,-111.98701)); // (613 of 1279.0) 2006-01-15T16:34:37Z 6773 01:52:53 13.0627714590207 Gooby 1.0.0
636
- // points.push(new GLatLng(33.48292,-111.98705)); // (614 of 1279.0) 2006-01-15T16:34:51Z 6787 01:53:07 13.0891266695745 Gooby 1.0.0
637
- // points.push(new GLatLng(33.48242,-111.98708)); // (615 of 1279.0) 2006-01-15T16:35:08Z 6804 01:53:24 13.1237149171053 Gooby 1.0.0
638
- points.push(new GLatLng(33.48197,-111.98708)); // (616 of 1279.0) 2006-01-15T16:35:24Z 6820 01:53:40 13.1548053797876 Gooby 1.0.0
639
- // points.push(new GLatLng(33.48161,-111.98705)); // (617 of 1279.0) 2006-01-15T16:35:37Z 6833 01:53:53 13.1797377228788 Gooby 1.0.0
640
- // points.push(new GLatLng(33.48124,-111.98705)); // (618 of 1279.0) 2006-01-15T16:35:50Z 6846 01:54:06 13.2053010450945 Gooby 1.0.0
641
- // points.push(new GLatLng(33.48096,-111.98703)); // (619 of 1279.0) 2006-01-15T16:36:00Z 6856 01:54:16 13.2246806590313 Gooby 1.0.0
642
- // points.push(new GLatLng(33.48071,-111.9869)); // (620 of 1279.0) 2006-01-15T16:36:09Z 6865 01:54:25 13.2435078424703 Gooby 1.0.0
643
- // points.push(new GLatLng(33.48051,-111.98703)); // (621 of 1279.0) 2006-01-15T16:36:17Z 6873 01:54:33 13.2592260277482 Gooby 1.0.0
644
- points.push(new GLatLng(33.48017,-111.98703)); // (622 of 1279.0) 2006-01-15T16:36:29Z 6885 01:54:45 13.282716721196 Gooby 1.0.0
645
- // points.push(new GLatLng(33.47996,-111.98703)); // (623 of 1279.0) 2006-01-15T16:36:36Z 6892 01:54:52 13.2972256592056 Gooby 1.0.0
646
- // points.push(new GLatLng(33.47974,-111.98703)); // (624 of 1279.0) 2006-01-15T16:36:44Z 6900 01:55:00 13.3124253739252 Gooby 1.0.0
647
- // points.push(new GLatLng(33.47953,-111.98703)); // (625 of 1279.0) 2006-01-15T16:36:52Z 6908 01:55:08 13.3269341920257 Gooby 1.0.0
648
- // points.push(new GLatLng(33.47931,-111.98705)); // (626 of 1279.0) 2006-01-15T16:37:00Z 6916 01:55:16 13.3421775674263 Gooby 1.0.0
649
- // points.push(new GLatLng(33.47901,-111.98703)); // (627 of 1279.0) 2006-01-15T16:37:10Z 6926 01:55:26 13.3629366280213 Gooby 1.0.0
650
- points.push(new GLatLng(33.4788,-111.98705)); // (628 of 1279.0) 2006-01-15T16:37:18Z 6934 01:55:34 13.3774912990314 Gooby 1.0.0
651
- // points.push(new GLatLng(33.47856,-111.98705)); // (629 of 1279.0) 2006-01-15T16:37:27Z 6943 01:55:43 13.3940728996464 Gooby 1.0.0
652
- // points.push(new GLatLng(33.47837,-111.98708)); // (630 of 1279.0) 2006-01-15T16:37:34Z 6950 01:55:50 13.4073133957999 Gooby 1.0.0
653
- // points.push(new GLatLng(33.47813,-111.98708)); // (631 of 1279.0) 2006-01-15T16:37:42Z 6958 01:55:58 13.4238949964148 Gooby 1.0.0
654
- // points.push(new GLatLng(33.47792,-111.98708)); // (632 of 1279.0) 2006-01-15T16:37:50Z 6966 01:56:06 13.4384036946053 Gooby 1.0.0
655
- // points.push(new GLatLng(33.47768,-111.98708)); // (633 of 1279.0) 2006-01-15T16:37:58Z 6974 01:56:14 13.4549852952203 Gooby 1.0.0
656
- points.push(new GLatLng(33.47744,-111.9871)); // (634 of 1279.0) 2006-01-15T16:38:07Z 6983 01:56:23 13.4716069270596 Gooby 1.0.0
657
- // points.push(new GLatLng(33.47727,-111.9871)); // (635 of 1279.0) 2006-01-15T16:38:13Z 6989 01:56:29 13.4833521997221 Gooby 1.0.0
658
- // points.push(new GLatLng(33.47706,-111.98708)); // (636 of 1279.0) 2006-01-15T16:38:21Z 6997 01:56:37 13.4979068707322 Gooby 1.0.0
659
- // points.push(new GLatLng(33.47687,-111.9871)); // (637 of 1279.0) 2006-01-15T16:38:28Z 7004 01:56:44 13.511084674042 Gooby 1.0.0
660
- // points.push(new GLatLng(33.47663,-111.98708)); // (638 of 1279.0) 2006-01-15T16:38:36Z 7012 01:56:52 13.5277063058813 Gooby 1.0.0
661
- // points.push(new GLatLng(33.47637,-111.98708)); // (639 of 1279.0) 2006-01-15T16:38:45Z 7021 01:57:01 13.5456696339102 Gooby 1.0.0
662
- points.push(new GLatLng(33.47607,-111.98708)); // (640 of 1279.0) 2006-01-15T16:38:56Z 7032 01:57:12 13.5663965717267 Gooby 1.0.0
663
- // points.push(new GLatLng(33.47573,-111.98708)); // (641 of 1279.0) 2006-01-15T16:39:08Z 7044 01:57:24 13.5898871170519 Gooby 1.0.0
664
- // points.push(new GLatLng(33.47545,-111.9871)); // (642 of 1279.0) 2006-01-15T16:39:18Z 7054 01:57:34 13.6092665514438 Gooby 1.0.0
665
- // points.push(new GLatLng(33.47513,-111.9871)); // (643 of 1279.0) 2006-01-15T16:39:30Z 7066 01:57:46 13.6313753522638 Gooby 1.0.0
666
- // points.push(new GLatLng(33.47468,-111.9871)); // (644 of 1279.0) 2006-01-15T16:39:46Z 7082 01:58:02 13.6624658709037 Gooby 1.0.0
667
- // points.push(new GLatLng(33.47435,-111.9871)); // (645 of 1279.0) 2006-01-15T16:39:58Z 7094 01:58:14 13.685265557442 Gooby 1.0.0
668
- points.push(new GLatLng(33.47397,-111.98712)); // (646 of 1279.0) 2006-01-15T16:40:12Z 7108 01:58:28 13.7115450099704 Gooby 1.0.0
669
- // points.push(new GLatLng(33.47369,-111.98708)); // (647 of 1279.0) 2006-01-15T16:40:22Z 7118 01:58:38 13.7310269630553 Gooby 1.0.0
670
- // points.push(new GLatLng(33.4733,-111.98708)); // (648 of 1279.0) 2006-01-15T16:40:36Z 7132 01:58:52 13.7579720519485 Gooby 1.0.0
671
- // points.push(new GLatLng(33.47305,-111.98708)); // (649 of 1279.0) 2006-01-15T16:40:45Z 7141 01:59:01 13.7752445337034 Gooby 1.0.0
672
- // points.push(new GLatLng(33.47296,-111.9869)); // (650 of 1279.0) 2006-01-15T16:40:51Z 7147 01:59:07 13.7873390719299 Gooby 1.0.0
673
- // points.push(new GLatLng(33.4729,-111.98658)); // (651 of 1279.0) 2006-01-15T16:41:00Z 7156 01:59:16 13.8062411401757 Gooby 1.0.0
674
- points.push(new GLatLng(33.4729,-111.98622)); // (652 of 1279.0) 2006-01-15T16:41:11Z 7167 01:59:27 13.8269883806759 Gooby 1.0.0
675
- // points.push(new GLatLng(33.47294,-111.98572)); // (653 of 1279.0) 2006-01-15T16:41:26Z 7182 01:59:42 13.8559362054852 Gooby 1.0.0
676
- // points.push(new GLatLng(33.47294,-111.98536)); // (654 of 1279.0) 2006-01-15T16:41:38Z 7194 01:59:54 13.8766835298397 Gooby 1.0.0
677
- // points.push(new GLatLng(33.47294,-111.98527)); // (655 of 1279.0) 2006-01-15T16:41:42Z 7198 01:59:58 13.8818707172956 Gooby 1.0.0
678
- // points.push(new GLatLng(33.47296,-111.98508)); // (656 of 1279.0) 2006-01-15T16:41:49Z 7205 02:00:05 13.8929074770234 Gooby 1.0.0
679
- // points.push(new GLatLng(33.47296,-111.98467)); // (657 of 1279.0) 2006-01-15T16:42:01Z 7217 02:00:17 13.9165362588201 Gooby 1.0.0
680
- points.push(new GLatLng(33.47298,-111.98409)); // (658 of 1279.0) 2006-01-15T16:42:19Z 7235 02:00:35 13.9499909069676 Gooby 1.0.0
681
- // points.push(new GLatLng(33.47296,-111.98364)); // (659 of 1279.0) 2006-01-15T16:42:34Z 7250 02:00:50 13.975961768679 Gooby 1.0.0
682
- points.push(new GLatLng(33.4729,-111.98313)); // (660 of 1279.0) 2006-01-15T16:42:50Z 7266 02:01:06 14.0056445932232 14.0 00:08:41 Gooby 1.0.0
683
- // points.push(new GLatLng(33.4729,-111.98261)); // (661 of 1279.0) 2006-01-15T16:43:05Z 7281 02:01:21 14.0356128302181 Gooby 1.0.0
684
- // points.push(new GLatLng(33.4729,-111.98238)); // (662 of 1279.0) 2006-01-15T16:43:12Z 7288 02:01:28 14.0488680345366 Gooby 1.0.0
685
- // points.push(new GLatLng(33.4729,-111.98208)); // (663 of 1279.0) 2006-01-15T16:43:21Z 7297 02:01:37 14.0661574295716 Gooby 1.0.0
686
- // points.push(new GLatLng(33.47287,-111.98167)); // (664 of 1279.0) 2006-01-15T16:43:33Z 7309 02:01:49 14.0898768946299 Gooby 1.0.0
687
- // points.push(new GLatLng(33.47287,-111.98128)); // (665 of 1279.0) 2006-01-15T16:43:45Z 7321 02:02:01 14.1123530385118 Gooby 1.0.0
688
- points.push(new GLatLng(33.4729,-111.9809)); // (666 of 1279.0) 2006-01-15T16:43:57Z 7333 02:02:13 14.1343507644985 Gooby 1.0.0
689
- // points.push(new GLatLng(33.47294,-111.98042)); // (667 of 1279.0) 2006-01-15T16:44:11Z 7347 02:02:27 14.1621514612589 Gooby 1.0.0
690
- // points.push(new GLatLng(33.47294,-111.98002)); // (668 of 1279.0) 2006-01-15T16:44:24Z 7360 02:02:40 14.1852039963576 Gooby 1.0.0
691
- // points.push(new GLatLng(33.47294,-111.97957)); // (669 of 1279.0) 2006-01-15T16:44:38Z 7374 02:02:54 14.2111381224518 Gooby 1.0.0
692
- // points.push(new GLatLng(33.47296,-111.97909)); // (670 of 1279.0) 2006-01-15T16:44:52Z 7388 02:03:08 14.2388356222684 Gooby 1.0.0
693
- // points.push(new GLatLng(33.47292,-111.97858)); // (671 of 1279.0) 2006-01-15T16:45:08Z 7404 02:03:24 14.2683571795806 Gooby 1.0.0
694
- points.push(new GLatLng(33.47298,-111.97847)); // (672 of 1279.0) 2006-01-15T16:45:11Z 7407 02:03:27 14.2759319289155 Gooby 1.0.0
695
- // points.push(new GLatLng(33.47305,-111.97849)); // (673 of 1279.0) 2006-01-15T16:45:13Z 7409 02:03:29 14.2809036804244 Gooby 1.0.0
696
- // points.push(new GLatLng(33.47326,-111.97856)); // (674 of 1279.0) 2006-01-15T16:45:19Z 7415 02:03:35 14.2959628765519 Gooby 1.0.0
697
- // points.push(new GLatLng(33.4735,-111.97856)); // (675 of 1279.0) 2006-01-15T16:45:26Z 7422 02:03:42 14.3125444771669 Gooby 1.0.0
698
- // points.push(new GLatLng(33.47393,-111.97856)); // (676 of 1279.0) 2006-01-15T16:45:41Z 7437 02:03:57 14.3422531965688 Gooby 1.0.0
699
- // points.push(new GLatLng(33.47427,-111.97858)); // (677 of 1279.0) 2006-01-15T16:45:53Z 7449 02:04:09 14.3657721643332 Gooby 1.0.0
700
- points.push(new GLatLng(33.4744,-111.97858)); // (678 of 1279.0) 2006-01-15T16:45:58Z 7454 02:04:14 14.3747537314973 Gooby 1.0.0
701
- // points.push(new GLatLng(33.47453,-111.9786)); // (679 of 1279.0) 2006-01-15T16:46:02Z 7458 02:04:18 14.3838089904538 Gooby 1.0.0
702
- // points.push(new GLatLng(33.47472,-111.97858)); // (680 of 1279.0) 2006-01-15T16:46:09Z 7465 02:04:25 14.396986529719 Gooby 1.0.0
703
- // points.push(new GLatLng(33.47511,-111.97856)); // (681 of 1279.0) 2006-01-15T16:46:23Z 7479 02:04:39 14.4239562716812 Gooby 1.0.0
704
- // points.push(new GLatLng(33.47541,-111.97856)); // (682 of 1279.0) 2006-01-15T16:46:35Z 7491 02:04:51 14.444683125561 Gooby 1.0.0
705
- // points.push(new GLatLng(33.47577,-111.97856)); // (683 of 1279.0) 2006-01-15T16:46:48Z 7504 02:05:04 14.4695554565366 Gooby 1.0.0
706
- points.push(new GLatLng(33.47614,-111.97856)); // (684 of 1279.0) 2006-01-15T16:47:01Z 7517 02:05:17 14.4951186426393 Gooby 1.0.0
707
- // points.push(new GLatLng(33.47661,-111.97856)); // (685 of 1279.0) 2006-01-15T16:47:18Z 7534 02:05:34 14.5275909337981 Gooby 1.0.0
708
- // points.push(new GLatLng(33.47697,-111.97858)); // (686 of 1279.0) 2006-01-15T16:47:31Z 7547 02:05:47 14.5524900400812 Gooby 1.0.0
709
- // points.push(new GLatLng(33.47723,-111.97858)); // (687 of 1279.0) 2006-01-15T16:47:41Z 7557 02:05:57 14.5704533681101 Gooby 1.0.0
710
- // points.push(new GLatLng(33.47759,-111.97856)); // (688 of 1279.0) 2006-01-15T16:47:54Z 7570 02:06:10 14.5953524743932 Gooby 1.0.0
711
- // points.push(new GLatLng(33.47805,-111.97856)); // (689 of 1279.0) 2006-01-15T16:48:10Z 7586 02:06:26 14.6271338345162 Gooby 1.0.0
712
- points.push(new GLatLng(33.47845,-111.97854)); // (690 of 1279.0) 2006-01-15T16:48:25Z 7601 02:06:41 14.6547938728151 Gooby 1.0.0
713
- // points.push(new GLatLng(33.4789,-111.97854)); // (691 of 1279.0) 2006-01-15T16:48:41Z 7617 02:06:57 14.6858843354975 Gooby 1.0.0
714
- // points.push(new GLatLng(33.47929,-111.97854)); // (692 of 1279.0) 2006-01-15T16:48:55Z 7631 02:07:11 14.7128294243907 Gooby 1.0.0
715
- // points.push(new GLatLng(33.47968,-111.97851)); // (693 of 1279.0) 2006-01-15T16:49:09Z 7645 02:07:25 14.7398299832517 Gooby 1.0.0
716
- // points.push(new GLatLng(33.48011,-111.97843)); // (694 of 1279.0) 2006-01-15T16:49:24Z 7660 02:07:40 14.7698941444455 Gooby 1.0.0
717
- // points.push(new GLatLng(33.48032,-111.97824)); // (695 of 1279.0) 2006-01-15T16:49:34Z 7670 02:07:50 14.7880708248009 Gooby 1.0.0
718
- points.push(new GLatLng(33.48062,-111.97815)); // (696 of 1279.0) 2006-01-15T16:49:46Z 7682 02:08:02 14.8094367422039 Gooby 1.0.0
719
- // points.push(new GLatLng(33.48099,-111.97813)); // (697 of 1279.0) 2006-01-15T16:49:59Z 7695 02:08:15 14.8350260487352 Gooby 1.0.0
720
- // points.push(new GLatLng(33.48133,-111.97813)); // (698 of 1279.0) 2006-01-15T16:50:11Z 7707 02:08:27 14.8585165940603 Gooby 1.0.0
721
- // points.push(new GLatLng(33.48154,-111.97811)); // (699 of 1279.0) 2006-01-15T16:50:19Z 7715 02:08:35 14.8730711455381 Gooby 1.0.0
722
- // points.push(new GLatLng(33.48184,-111.97811)); // (700 of 1279.0) 2006-01-15T16:50:29Z 7725 02:08:45 14.8937980833546 Gooby 1.0.0
723
- // points.push(new GLatLng(33.48219,-111.97809)); // (701 of 1279.0) 2006-01-15T16:50:41Z 7737 02:08:57 14.9180070023623 Gooby 1.0.0
724
- points.push(new GLatLng(33.48253,-111.97809)); // (702 of 1279.0) 2006-01-15T16:50:54Z 7750 02:09:10 14.9414976217488 Gooby 1.0.0
725
- // points.push(new GLatLng(33.48283,-111.97811)); // (703 of 1279.0) 2006-01-15T16:51:05Z 7761 02:09:21 14.9622565985371 Gooby 1.0.0
726
- // points.push(new GLatLng(33.48317,-111.97811)); // (704 of 1279.0) 2006-01-15T16:51:18Z 7774 02:09:34 14.9857472919848 Gooby 1.0.0
727
- points.push(new GLatLng(33.4836,-111.97809)); // (705 of 1279.0) 2006-01-15T16:51:33Z 7789 02:09:49 15.0154783729364 15.0 00:08:43 Gooby 1.0.0
728
- // points.push(new GLatLng(33.48403,-111.97809)); // (706 of 1279.0) 2006-01-15T16:51:48Z 7804 02:10:04 15.0451870923383 Gooby 1.0.0
729
- // points.push(new GLatLng(33.4841,-111.97809)); // (707 of 1279.0) 2006-01-15T16:51:51Z 7807 02:10:07 15.0500233250685 Gooby 1.0.0
730
- // points.push(new GLatLng(33.48427,-111.97811)); // (708 of 1279.0) 2006-01-15T16:51:57Z 7813 02:10:13 15.0618250451111 Gooby 1.0.0
731
- // points.push(new GLatLng(33.48468,-111.97811)); // (709 of 1279.0) 2006-01-15T16:52:12Z 7828 02:10:28 15.0901518732292 Gooby 1.0.0
732
- // points.push(new GLatLng(33.48511,-111.97811)); // (710 of 1279.0) 2006-01-15T16:52:27Z 7843 02:10:43 15.1198605340709 Gooby 1.0.0
733
- points.push(new GLatLng(33.48541,-111.97809)); // (711 of 1279.0) 2006-01-15T16:52:39Z 7855 02:10:55 15.1406195108592 Gooby 1.0.0
734
- // points.push(new GLatLng(33.48577,-111.97809)); // (712 of 1279.0) 2006-01-15T16:52:52Z 7868 02:11:08 15.1654918418347 Gooby 1.0.0
735
- // points.push(new GLatLng(33.48601,-111.97811)); // (713 of 1279.0) 2006-01-15T16:53:01Z 7877 02:11:17 15.182113473674 Gooby 1.0.0
736
- // points.push(new GLatLng(33.48622,-111.97811)); // (714 of 1279.0) 2006-01-15T16:53:08Z 7884 02:11:24 15.1966224116836 Gooby 1.0.0
737
- // points.push(new GLatLng(33.48667,-111.97813)); // (715 of 1279.0) 2006-01-15T16:53:24Z 7900 02:11:40 15.227734298726 Gooby 1.0.0
738
- // points.push(new GLatLng(33.48689,-111.97815)); // (716 of 1279.0) 2006-01-15T16:53:32Z 7908 02:11:48 15.2429776741266 Gooby 1.0.0
739
- points.push(new GLatLng(33.48719,-111.97819)); // (717 of 1279.0) 2006-01-15T16:53:42Z 7918 02:11:58 15.2638324725057 Gooby 1.0.0
740
- // points.push(new GLatLng(33.48747,-111.97817)); // (718 of 1279.0) 2006-01-15T16:53:52Z 7928 02:12:08 15.2832119068977 Gooby 1.0.0
741
- // points.push(new GLatLng(33.48781,-111.97813)); // (719 of 1279.0) 2006-01-15T16:54:04Z 7940 02:12:20 15.3068153469829 Gooby 1.0.0
742
- // points.push(new GLatLng(33.48822,-111.97811)); // (720 of 1279.0) 2006-01-15T16:54:19Z 7955 02:12:35 15.3351656880174 Gooby 1.0.0
743
- // points.push(new GLatLng(33.48852,-111.97811)); // (721 of 1279.0) 2006-01-15T16:54:30Z 7966 02:12:46 15.3558927097702 Gooby 1.0.0
744
- // points.push(new GLatLng(33.48882,-111.97813)); // (722 of 1279.0) 2006-01-15T16:54:41Z 7977 02:12:57 15.3766516865584 Gooby 1.0.0
745
- points.push(new GLatLng(33.48916,-111.97813)); // (723 of 1279.0) 2006-01-15T16:54:54Z 7990 02:13:10 15.4001422318836 Gooby 1.0.0
746
- // points.push(new GLatLng(33.48955,-111.97813)); // (724 of 1279.0) 2006-01-15T16:55:08Z 8004 02:13:24 15.4270873207767 Gooby 1.0.0
747
- // points.push(new GLatLng(33.48998,-111.97813)); // (725 of 1279.0) 2006-01-15T16:55:23Z 8019 02:13:39 15.4567960401787 Gooby 1.0.0
748
- // points.push(new GLatLng(33.49034,-111.97811)); // (726 of 1279.0) 2006-01-15T16:55:37Z 8033 02:13:53 15.4816951464617 Gooby 1.0.0
749
- // points.push(new GLatLng(33.49075,-111.97813)); // (727 of 1279.0) 2006-01-15T16:55:51Z 8047 02:14:07 15.5100455488621 Gooby 1.0.0
750
- // points.push(new GLatLng(33.49113,-111.97817)); // (728 of 1279.0) 2006-01-15T16:56:05Z 8061 02:14:21 15.5364007594159 Gooby 1.0.0
751
- points.push(new GLatLng(33.49144,-111.97817)); // (729 of 1279.0) 2006-01-15T16:56:16Z 8072 02:14:32 15.5578186449799 Gooby 1.0.0
752
- // points.push(new GLatLng(33.49176,-111.97819)); // (730 of 1279.0) 2006-01-15T16:56:28Z 8084 02:14:44 15.5799574064686 Gooby 1.0.0
753
- // points.push(new GLatLng(33.49214,-111.97824)); // (731 of 1279.0) 2006-01-15T16:56:43Z 8099 02:14:59 15.6063691941343 Gooby 1.0.0
754
- // points.push(new GLatLng(33.49257,-111.97819)); // (732 of 1279.0) 2006-01-15T16:56:58Z 8114 02:15:14 15.6362172526568 Gooby 1.0.0
755
- // points.push(new GLatLng(33.49289,-111.97819)); // (733 of 1279.0) 2006-01-15T16:57:09Z 8125 02:15:25 15.6583259747864 Gooby 1.0.0
756
- // points.push(new GLatLng(33.49313,-111.97819)); // (734 of 1279.0) 2006-01-15T16:57:19Z 8135 02:15:35 15.6749075754014 Gooby 1.0.0
757
- points.push(new GLatLng(33.49324,-111.97817)); // (735 of 1279.0) 2006-01-15T16:57:26Z 8142 02:15:42 15.68259449531 Gooby 1.0.0
758
- // points.push(new GLatLng(33.49341,-111.97817)); // (736 of 1279.0) 2006-01-15T16:57:32Z 8148 02:15:48 15.6943396198485 Gooby 1.0.0
759
- // points.push(new GLatLng(33.49343,-111.97817)); // (737 of 1279.0) 2006-01-15T16:57:33Z 8149 02:15:49 15.6957204752944 Gooby 1.0.0
760
- // points.push(new GLatLng(33.49365,-111.97817)); // (738 of 1279.0) 2006-01-15T16:57:42Z 8158 02:15:58 15.710920190014 Gooby 1.0.0
761
- // points.push(new GLatLng(33.4939,-111.97819)); // (739 of 1279.0) 2006-01-15T16:57:52Z 8168 02:16:08 15.7282310049148 Gooby 1.0.0
762
- // points.push(new GLatLng(33.49427,-111.97821)); // (740 of 1279.0) 2006-01-15T16:58:05Z 8181 02:16:21 15.7538202434587 Gooby 1.0.0
763
- points.push(new GLatLng(33.49459,-111.97813)); // (741 of 1279.0) 2006-01-15T16:58:18Z 8194 02:16:34 15.776404416091 Gooby 1.0.0
764
- // points.push(new GLatLng(33.49459,-111.97804)); // (742 of 1279.0) 2006-01-15T16:58:20Z 8196 02:16:36 15.7815899263109 Gooby 1.0.0
765
- // points.push(new GLatLng(33.49459,-111.97791)); // (743 of 1279.0) 2006-01-15T16:58:24Z 8200 02:16:40 15.78908014215 Gooby 1.0.0
766
- // points.push(new GLatLng(33.49457,-111.97757)); // (744 of 1279.0) 2006-01-15T16:58:33Z 8209 02:16:49 15.8087185464359 Gooby 1.0.0
767
- // points.push(new GLatLng(33.49455,-111.97718)); // (745 of 1279.0) 2006-01-15T16:58:44Z 8220 02:17:00 15.8312315045294 Gooby 1.0.0
768
- // points.push(new GLatLng(33.49452,-111.97665)); // (746 of 1279.0) 2006-01-15T16:59:00Z 8236 02:17:16 15.8618386543652 Gooby 1.0.0
769
- points.push(new GLatLng(33.49452,-111.97603)); // (747 of 1279.0) 2006-01-15T16:59:19Z 8255 02:17:35 15.897561054495 Gooby 1.0.0
770
- // points.push(new GLatLng(33.4945,-111.97538)); // (748 of 1279.0) 2006-01-15T16:59:38Z 8274 02:17:54 15.9350374888998 Gooby 1.0.0
771
- // points.push(new GLatLng(33.49444,-111.97474)); // (749 of 1279.0) 2006-01-15T16:59:57Z 8293 02:18:13 15.9721445302252 Gooby 1.0.0
772
- points.push(new GLatLng(33.49425,-111.97422)); // (750 of 1279.0) 2006-01-15T17:00:14Z 8310 02:18:30 16.0048549522358 16.0 00:08:41 Gooby 1.0.0
773
- // points.push(new GLatLng(33.49395,-111.97375)); // (751 of 1279.0) 2006-01-15T17:00:31Z 8327 02:18:47 16.0389567601499 Gooby 1.0.0
774
- // points.push(new GLatLng(33.49384,-111.97356)); // (752 of 1279.0) 2006-01-15T17:00:38Z 8334 02:18:54 16.052283434315 Gooby 1.0.0
775
- // points.push(new GLatLng(33.49373,-111.97334)); // (753 of 1279.0) 2006-01-15T17:00:46Z 8342 02:19:02 16.0670627646979 Gooby 1.0.0
776
- // points.push(new GLatLng(33.49356,-111.97306)); // (754 of 1279.0) 2006-01-15T17:00:57Z 8353 02:19:13 16.087018238408 Gooby 1.0.0
777
- // points.push(new GLatLng(33.49332,-111.97268)); // (755 of 1279.0) 2006-01-15T17:01:11Z 8367 02:19:27 16.1144832359066 Gooby 1.0.0
778
- points.push(new GLatLng(33.49313,-111.97233)); // (756 of 1279.0) 2006-01-15T17:01:23Z 8379 02:19:39 16.1385456121762 Gooby 1.0.0
779
- // points.push(new GLatLng(33.49298,-111.97201)); // (757 of 1279.0) 2006-01-15T17:01:34Z 8390 02:19:50 16.1596962944775 Gooby 1.0.0
780
- // points.push(new GLatLng(33.49277,-111.97158)); // (758 of 1279.0) 2006-01-15T17:01:49Z 8405 02:20:05 16.1884076843862 Gooby 1.0.0
781
- // points.push(new GLatLng(33.49259,-111.97128)); // (759 of 1279.0) 2006-01-15T17:02:00Z 8416 02:20:16 16.2097019895465 Gooby 1.0.0
782
- // points.push(new GLatLng(33.49242,-111.97094)); // (760 of 1279.0) 2006-01-15T17:02:13Z 8429 02:20:29 16.2325433771689 Gooby 1.0.0
783
- // points.push(new GLatLng(33.49225,-111.97062)); // (761 of 1279.0) 2006-01-15T17:02:24Z 8440 02:20:40 16.2544043310346 Gooby 1.0.0
784
- points.push(new GLatLng(33.4921,-111.97027)); // (762 of 1279.0) 2006-01-15T17:02:36Z 8452 02:20:52 16.2770778403239 Gooby 1.0.0
785
- // points.push(new GLatLng(33.49195,-111.96989)); // (763 of 1279.0) 2006-01-15T17:02:50Z 8466 02:21:06 16.3013017024006 Gooby 1.0.0
786
- // points.push(new GLatLng(33.49182,-111.96961)); // (764 of 1279.0) 2006-01-15T17:02:59Z 8475 02:21:15 16.3197664929025 Gooby 1.0.0
787
- // points.push(new GLatLng(33.49167,-111.96927)); // (765 of 1279.0) 2006-01-15T17:03:11Z 8487 02:21:27 16.3419290524661 Gooby 1.0.0
788
- // points.push(new GLatLng(33.49152,-111.96884)); // (766 of 1279.0) 2006-01-15T17:03:25Z 8501 02:21:41 16.3687852806653 Gooby 1.0.0
789
- // points.push(new GLatLng(33.49135,-111.96843)); // (767 of 1279.0) 2006-01-15T17:03:39Z 8515 02:21:55 16.3951676739257 Gooby 1.0.0
790
- points.push(new GLatLng(33.49116,-111.96796)); // (768 of 1279.0) 2006-01-15T17:03:54Z 8530 02:22:10 16.4252624316037 Gooby 1.0.0
791
- // points.push(new GLatLng(33.49103,-111.96764)); // (769 of 1279.0) 2006-01-15T17:04:05Z 8541 02:22:21 16.4457718396932 Gooby 1.0.0
792
- // points.push(new GLatLng(33.49092,-111.9674)); // (770 of 1279.0) 2006-01-15T17:04:13Z 8549 02:22:29 16.4615511143171 Gooby 1.0.0
793
- // points.push(new GLatLng(33.49075,-111.96699)); // (771 of 1279.0) 2006-01-15T17:04:27Z 8563 02:22:43 16.4879337054072 Gooby 1.0.0
794
- // points.push(new GLatLng(33.49062,-111.96665)); // (772 of 1279.0) 2006-01-15T17:04:39Z 8575 02:22:55 16.5094851207849 Gooby 1.0.0
795
- // points.push(new GLatLng(33.49047,-111.96637)); // (773 of 1279.0) 2006-01-15T17:04:49Z 8585 02:23:05 16.5286604138946 Gooby 1.0.0
796
- points.push(new GLatLng(33.49034,-111.96609)); // (774 of 1279.0) 2006-01-15T17:04:59Z 8595 02:23:15 16.5471256754888 Gooby 1.0.0
797
- // points.push(new GLatLng(33.49021,-111.96575)); // (775 of 1279.0) 2006-01-15T17:05:10Z 8606 02:23:26 16.5686770908664 Gooby 1.0.0
798
- // points.push(new GLatLng(33.49008,-111.96538)); // (776 of 1279.0) 2006-01-15T17:05:22Z 8618 02:23:38 16.5918110638417 Gooby 1.0.0
799
- // points.push(new GLatLng(33.48998,-111.96508)); // (777 of 1279.0) 2006-01-15T17:05:32Z 8628 02:23:48 16.6104266495793 Gooby 1.0.0
800
- // points.push(new GLatLng(33.48976,-111.96461)); // (778 of 1279.0) 2006-01-15T17:05:48Z 8644 02:24:04 16.6414820070583 Gooby 1.0.0
801
- // points.push(new GLatLng(33.48965,-111.96431)); // (779 of 1279.0) 2006-01-15T17:05:59Z 8655 02:24:15 16.6603649212819 Gooby 1.0.0
802
- points.push(new GLatLng(33.48953,-111.96401)); // (780 of 1279.0) 2006-01-15T17:06:09Z 8665 02:24:25 16.6795364034147 Gooby 1.0.0
803
- // points.push(new GLatLng(33.48944,-111.96377)); // (781 of 1279.0) 2006-01-15T17:06:17Z 8673 02:24:33 16.6946987585444 Gooby 1.0.0
804
- // points.push(new GLatLng(33.48927,-111.96341)); // (782 of 1279.0) 2006-01-15T17:06:30Z 8686 02:24:46 16.7185364573041 Gooby 1.0.0
805
- // points.push(new GLatLng(33.4891,-111.96291)); // (783 of 1279.0) 2006-01-15T17:06:46Z 8702 02:25:02 16.7496487916954 Gooby 1.0.0
806
- // points.push(new GLatLng(33.48907,-111.96274)); // (784 of 1279.0) 2006-01-15T17:06:54Z 8710 02:25:10 16.7596609928629 Gooby 1.0.0
807
- // points.push(new GLatLng(33.48903,-111.96251)); // (785 of 1279.0) 2006-01-15T17:07:03Z 8719 02:25:19 16.7731987850277 Gooby 1.0.0
808
- points.push(new GLatLng(33.48897,-111.96216)); // (786 of 1279.0) 2006-01-15T17:07:14Z 8730 02:25:30 16.7937876068476 Gooby 1.0.0
809
- // points.push(new GLatLng(33.4889,-111.96182)); // (787 of 1279.0) 2006-01-15T17:07:25Z 8741 02:25:41 16.8139667550221 Gooby 1.0.0
810
- // points.push(new GLatLng(33.48884,-111.96118)); // (788 of 1279.0) 2006-01-15T17:07:45Z 8761 02:26:01 16.8510761404998 Gooby 1.0.0
811
- // points.push(new GLatLng(33.48888,-111.96049)); // (789 of 1279.0) 2006-01-15T17:08:05Z 8781 02:26:21 16.8909302051117 Gooby 1.0.0
812
- // points.push(new GLatLng(33.48901,-111.95997)); // (790 of 1279.0) 2006-01-15T17:08:21Z 8797 02:26:37 16.9222100111622 Gooby 1.0.0
813
- // points.push(new GLatLng(33.48907,-111.95952)); // (791 of 1279.0) 2006-01-15T17:08:35Z 8811 02:26:51 16.9484684693452 Gooby 1.0.0
814
- points.push(new GLatLng(33.48916,-111.9591)); // (792 of 1279.0) 2006-01-15T17:08:49Z 8825 02:27:05 16.973455110906 Gooby 1.0.0
815
- points.push(new GLatLng(33.48933,-111.95864)); // (793 of 1279.0) 2006-01-15T17:09:03Z 8839 02:27:19 17.0024462349807 17.0 00:08:49 Gooby 1.0.0
816
- // points.push(new GLatLng(33.48946,-111.95839)); // (794 of 1279.0) 2006-01-15T17:09:12Z 8848 02:27:28 17.0194220562732 Gooby 1.0.0
817
- // points.push(new GLatLng(33.48965,-111.958)); // (795 of 1279.0) 2006-01-15T17:09:26Z 8862 02:27:42 17.0454470551642 Gooby 1.0.0
818
- // points.push(new GLatLng(33.48974,-111.95783)); // (796 of 1279.0) 2006-01-15T17:09:32Z 8868 02:27:48 17.0570492582886 Gooby 1.0.0
819
- // points.push(new GLatLng(33.4898,-111.95774)); // (797 of 1279.0) 2006-01-15T17:09:35Z 8871 02:27:51 17.0636878762966 Gooby 1.0.0
820
- // points.push(new GLatLng(33.49002,-111.95734)); // (798 of 1279.0) 2006-01-15T17:09:49Z 8885 02:28:05 17.0912965425631 Gooby 1.0.0
821
- points.push(new GLatLng(33.49023,-111.95695)); // (799 of 1279.0) 2006-01-15T17:10:04Z 8900 02:28:20 17.1180450198267 Gooby 1.0.0
822
- // points.push(new GLatLng(33.49038,-111.95663)); // (800 of 1279.0) 2006-01-15T17:10:16Z 8912 02:28:32 17.1391962779041 Gooby 1.0.0
823
- // points.push(new GLatLng(33.4906,-111.95622)); // (801 of 1279.0) 2006-01-15T17:10:30Z 8926 02:28:46 17.1672876376034 Gooby 1.0.0
824
- // points.push(new GLatLng(33.49071,-111.95592)); // (802 of 1279.0) 2006-01-15T17:10:41Z 8937 02:28:57 17.1861703675594 Gooby 1.0.0
825
- // points.push(new GLatLng(33.49086,-111.95547)); // (803 of 1279.0) 2006-01-15T17:10:56Z 8952 02:29:12 17.2140934502188 Gooby 1.0.0
826
- // points.push(new GLatLng(33.49092,-111.95489)); // (804 of 1279.0) 2006-01-15T17:11:14Z 8970 02:29:30 17.2477686963466 Gooby 1.0.0
827
- points.push(new GLatLng(33.49092,-111.95452)); // (805 of 1279.0) 2006-01-15T17:11:25Z 8981 02:29:41 17.2690878238595 Gooby 1.0.0
828
- // points.push(new GLatLng(33.49088,-111.95388)); // (806 of 1279.0) 2006-01-15T17:11:45Z 9001 02:30:01 17.3060674957468 Gooby 1.0.0
829
- // points.push(new GLatLng(33.49081,-111.95352)); // (807 of 1279.0) 2006-01-15T17:11:56Z 9012 02:30:12 17.327366865709 Gooby 1.0.0
830
- // points.push(new GLatLng(33.49073,-111.95322)); // (808 of 1279.0) 2006-01-15T17:12:06Z 9022 02:30:22 17.3455148094233 Gooby 1.0.0
831
- // points.push(new GLatLng(33.49064,-111.95285)); // (809 of 1279.0) 2006-01-15T17:12:17Z 9033 02:30:33 17.3677223035521 Gooby 1.0.0
832
- // points.push(new GLatLng(33.49056,-111.95255)); // (810 of 1279.0) 2006-01-15T17:12:27Z 9043 02:30:43 17.3858703431308 Gooby 1.0.0
833
- points.push(new GLatLng(33.49047,-111.95214)); // (811 of 1279.0) 2006-01-15T17:12:40Z 9056 02:30:56 17.4102990303605 Gooby 1.0.0
834
- // points.push(new GLatLng(33.49038,-111.95165)); // (812 of 1279.0) 2006-01-15T17:12:55Z 9071 02:31:11 17.4392092686598 Gooby 1.0.0
835
- // points.push(new GLatLng(33.4903,-111.95137)); // (813 of 1279.0) 2006-01-15T17:13:04Z 9080 02:31:20 17.4562633098272 Gooby 1.0.0
836
- // points.push(new GLatLng(33.49021,-111.95092)); // (814 of 1279.0) 2006-01-15T17:13:18Z 9094 02:31:34 17.4829273607937 Gooby 1.0.0
837
- // points.push(new GLatLng(33.49006,-111.95038)); // (815 of 1279.0) 2006-01-15T17:13:35Z 9111 02:31:51 17.515722558274 Gooby 1.0.0
838
- // points.push(new GLatLng(33.48995,-111.94985)); // (816 of 1279.0) 2006-01-15T17:13:52Z 9128 02:32:08 17.5471925586717 Gooby 1.0.0
839
- points.push(new GLatLng(33.48987,-111.94942)); // (817 of 1279.0) 2006-01-15T17:14:05Z 9141 02:32:21 17.5725781806618 Gooby 1.0.0
840
- // points.push(new GLatLng(33.48983,-111.94886)); // (818 of 1279.0) 2006-01-15T17:14:21Z 9157 02:32:37 17.6049634544239 Gooby 1.0.0
841
- // points.push(new GLatLng(33.48983,-111.94862)); // (819 of 1279.0) 2006-01-15T17:14:28Z 9164 02:32:44 17.61879227847 Gooby 1.0.0
842
- // points.push(new GLatLng(33.48978,-111.94813)); // (820 of 1279.0) 2006-01-15T17:14:44Z 9180 02:33:00 17.6472365991318 Gooby 1.0.0
843
- // points.push(new GLatLng(33.48978,-111.94766)); // (821 of 1279.0) 2006-01-15T17:14:59Z 9195 02:33:15 17.6743179658089 Gooby 1.0.0
844
- // points.push(new GLatLng(33.4898,-111.94721)); // (822 of 1279.0) 2006-01-15T17:15:12Z 9208 02:33:28 17.7002837359038 Gooby 1.0.0
845
- points.push(new GLatLng(33.48983,-111.94674)); // (823 of 1279.0) 2006-01-15T17:15:26Z 9222 02:33:42 17.7274442608353 Gooby 1.0.0
846
- // points.push(new GLatLng(33.48985,-111.94639)); // (824 of 1279.0) 2006-01-15T17:15:37Z 9233 02:33:53 17.7476585541421 Gooby 1.0.0
847
- // points.push(new GLatLng(33.48987,-111.94611)); // (825 of 1279.0) 2006-01-15T17:15:45Z 9241 02:34:01 17.7638512716033 Gooby 1.0.0
848
- // points.push(new GLatLng(33.48991,-111.94577)); // (826 of 1279.0) 2006-01-15T17:15:56Z 9252 02:34:12 17.7836360112042 Gooby 1.0.0
849
- // points.push(new GLatLng(33.48993,-111.94534)); // (827 of 1279.0) 2006-01-15T17:16:09Z 9265 02:34:25 17.8084511296399 Gooby 1.0.0
850
- // points.push(new GLatLng(33.48998,-111.9448)); // (828 of 1279.0) 2006-01-15T17:16:25Z 9281 02:34:41 17.8397570656253 Gooby 1.0.0
851
- points.push(new GLatLng(33.49002,-111.9444)); // (829 of 1279.0) 2006-01-15T17:16:38Z 9294 02:34:54 17.8629700174299 Gooby 1.0.0
852
- // points.push(new GLatLng(33.49008,-111.94397)); // (830 of 1279.0) 2006-01-15T17:16:51Z 9307 02:35:07 17.888090956794 Gooby 1.0.0
853
- // points.push(new GLatLng(33.49015,-111.94367)); // (831 of 1279.0) 2006-01-15T17:17:00Z 9316 02:35:16 17.9060407207189 Gooby 1.0.0
854
- // points.push(new GLatLng(33.49023,-111.94335)); // (832 of 1279.0) 2006-01-15T17:17:10Z 9326 02:35:26 17.925289544412 Gooby 1.0.0
855
- // points.push(new GLatLng(33.49034,-111.94296)); // (833 of 1279.0) 2006-01-15T17:17:22Z 9338 02:35:38 17.9490116498071 Gooby 1.0.0
856
- // points.push(new GLatLng(33.49045,-111.94257)); // (834 of 1279.0) 2006-01-15T17:17:33Z 9349 02:35:49 17.9727337552022 Gooby 1.0.0
857
- points.push(new GLatLng(33.49049,-111.94244)); // (835 of 1279.0) 2006-01-15T17:17:38Z 9354 02:35:54 17.9807179757544 Gooby 1.0.0
858
- // points.push(new GLatLng(33.4906,-111.94229)); // (836 of 1279.0) 2006-01-15T17:17:48Z 9364 02:36:04 17.9922271369367 Gooby 1.0.0
859
- points.push(new GLatLng(33.49075,-111.94208)); // (837 of 1279.0) 2006-01-15T17:17:57Z 9373 02:36:13 18.008158710711 18.0 00:08:54 Gooby 1.0.0
860
- // points.push(new GLatLng(33.49079,-111.94191)); // (838 of 1279.0) 2006-01-15T17:18:03Z 9379 02:36:19 18.0183363570398 Gooby 1.0.0
861
- // points.push(new GLatLng(33.49088,-111.94176)); // (839 of 1279.0) 2006-01-15T17:18:09Z 9385 02:36:25 18.02898350962 Gooby 1.0.0
862
- // points.push(new GLatLng(33.49101,-111.94146)); // (840 of 1279.0) 2006-01-15T17:18:19Z 9395 02:36:35 18.0484635873062 Gooby 1.0.0
863
- // points.push(new GLatLng(33.49105,-111.94133)); // (841 of 1279.0) 2006-01-15T17:18:23Z 9399 02:36:39 18.0564475899574 Gooby 1.0.0
864
- // points.push(new GLatLng(33.4912,-111.94098)); // (842 of 1279.0) 2006-01-15T17:18:35Z 9411 02:36:51 18.0791213294367 Gooby 1.0.0
865
- points.push(new GLatLng(33.49137,-111.94068)); // (843 of 1279.0) 2006-01-15T17:18:46Z 9422 02:37:02 18.100019795155 Gooby 1.0.0
866
- // points.push(new GLatLng(33.49163,-111.94021)); // (844 of 1279.0) 2006-01-15T17:19:02Z 9438 02:37:18 18.1325167756154 Gooby 1.0.0
867
- // points.push(new GLatLng(33.49191,-111.9397)); // (845 of 1279.0) 2006-01-15T17:19:19Z 9455 02:37:35 18.1676983882312 Gooby 1.0.0
868
- // points.push(new GLatLng(33.49223,-111.93918)); // (846 of 1279.0) 2006-01-15T17:19:37Z 9473 02:37:53 18.2049340453447 Gooby 1.0.0
869
- // points.push(new GLatLng(33.49251,-111.93862)); // (847 of 1279.0) 2006-01-15T17:19:57Z 9493 02:38:13 18.2425551313279 Gooby 1.0.0
870
- // points.push(new GLatLng(33.4927,-111.93815)); // (848 of 1279.0) 2006-01-15T17:20:13Z 9509 02:38:29 18.2726494843405 Gooby 1.0.0
871
- points.push(new GLatLng(33.49285,-111.9377)); // (849 of 1279.0) 2006-01-15T17:20:29Z 9525 02:38:45 18.3005720062499 Gooby 1.0.0
872
- // points.push(new GLatLng(33.49309,-111.93719)); // (850 of 1279.0) 2006-01-15T17:20:47Z 9543 02:39:03 18.3343126967875 Gooby 1.0.0
873
- // points.push(new GLatLng(33.49341,-111.93661)); // (851 of 1279.0) 2006-01-15T17:21:07Z 9563 02:39:23 18.3743823475446 Gooby 1.0.0
874
- // points.push(new GLatLng(33.49367,-111.93618)); // (852 of 1279.0) 2006-01-15T17:21:23Z 9579 02:39:39 18.4049848360497 Gooby 1.0.0
875
- // points.push(new GLatLng(33.49395,-111.93579)); // (853 of 1279.0) 2006-01-15T17:21:38Z 9594 02:39:54 18.4346356416061 Gooby 1.0.0
876
- // points.push(new GLatLng(33.49416,-111.93547)); // (854 of 1279.0) 2006-01-15T17:21:51Z 9607 02:40:07 18.4580972109951 Gooby 1.0.0
877
- points.push(new GLatLng(33.49437,-111.93508)); // (855 of 1279.0) 2006-01-15T17:22:06Z 9622 02:40:22 18.4848448427131 Gooby 1.0.0
878
- // points.push(new GLatLng(33.49468,-111.9345)); // (856 of 1279.0) 2006-01-15T17:22:26Z 9642 02:40:42 18.5245370629168 Gooby 1.0.0
879
- // points.push(new GLatLng(33.49476,-111.93408)); // (857 of 1279.0) 2006-01-15T17:22:38Z 9654 02:40:54 18.5493592612822 Gooby 1.0.0
880
- // points.push(new GLatLng(33.49474,-111.93362)); // (858 of 1279.0) 2006-01-15T17:22:51Z 9667 02:41:07 18.5758989225395 Gooby 1.0.0
881
- // points.push(new GLatLng(33.49474,-111.93309)); // (859 of 1279.0) 2006-01-15T17:23:07Z 9683 02:41:23 18.6064357928461 Gooby 1.0.0
882
- // points.push(new GLatLng(33.49472,-111.93253)); // (860 of 1279.0) 2006-01-15T17:23:23Z 9699 02:41:39 18.6387307442957 Gooby 1.0.0
883
- points.push(new GLatLng(33.49474,-111.93204)); // (861 of 1279.0) 2006-01-15T17:23:38Z 9714 02:41:54 18.6669967658301 Gooby 1.0.0
884
- // points.push(new GLatLng(33.49474,-111.93169)); // (862 of 1279.0) 2006-01-15T17:23:48Z 9724 02:42:04 18.6871626325171 Gooby 1.0.0
885
- // points.push(new GLatLng(33.49474,-111.93122)); // (863 of 1279.0) 2006-01-15T17:24:02Z 9738 02:42:18 18.7142424573556 Gooby 1.0.0
886
- // points.push(new GLatLng(33.4947,-111.93088)); // (864 of 1279.0) 2006-01-15T17:24:12Z 9748 02:42:28 18.7340261417235 Gooby 1.0.0
887
- // points.push(new GLatLng(33.49465,-111.93062)); // (865 of 1279.0) 2006-01-15T17:24:20Z 9756 02:42:36 18.749399528883 Gooby 1.0.0
888
- // points.push(new GLatLng(33.49461,-111.93058)); // (866 of 1279.0) 2006-01-15T17:24:22Z 9758 02:42:38 18.7529982328468 Gooby 1.0.0
889
- points.push(new GLatLng(33.4944,-111.93053)); // (867 of 1279.0) 2006-01-15T17:24:30Z 9766 02:42:46 18.7677902709663 Gooby 1.0.0
890
- // points.push(new GLatLng(33.49416,-111.93051)); // (868 of 1279.0) 2006-01-15T17:24:38Z 9774 02:42:54 18.7844119028056 Gooby 1.0.0
891
- // points.push(new GLatLng(33.4939,-111.93049)); // (869 of 1279.0) 2006-01-15T17:24:47Z 9783 02:43:03 18.8024121894679 Gooby 1.0.0
892
- // points.push(new GLatLng(33.49362,-111.93049)); // (870 of 1279.0) 2006-01-15T17:24:56Z 9792 02:43:12 18.8217573901853 Gooby 1.0.0
893
- // points.push(new GLatLng(33.49334,-111.93047)); // (871 of 1279.0) 2006-01-15T17:25:06Z 9802 02:43:22 18.8411370041221 Gooby 1.0.0
894
- // points.push(new GLatLng(33.49322,-111.93045)); // (872 of 1279.0) 2006-01-15T17:25:11Z 9807 02:43:27 18.8495077875548 Gooby 1.0.0
895
- points.push(new GLatLng(33.49309,-111.93034)); // (873 of 1279.0) 2006-01-15T17:25:17Z 9813 02:43:33 18.8605006382515 Gooby 1.0.0
896
- // points.push(new GLatLng(33.49307,-111.93028)); // (874 of 1279.0) 2006-01-15T17:25:19Z 9815 02:43:35 18.8642238488542 Gooby 1.0.0
897
- // points.push(new GLatLng(33.49298,-111.93)); // (875 of 1279.0) 2006-01-15T17:25:28Z 9824 02:43:44 18.8815136463847 Gooby 1.0.0
898
- // points.push(new GLatLng(33.49302,-111.92959)); // (876 of 1279.0) 2006-01-15T17:25:40Z 9836 02:43:56 18.9052980079024 Gooby 1.0.0
899
- // points.push(new GLatLng(33.49307,-111.92912)); // (877 of 1279.0) 2006-01-15T17:25:53Z 9849 02:44:09 18.9325978139035 Gooby 1.0.0
900
- // points.push(new GLatLng(33.49311,-111.92852)); // (878 of 1279.0) 2006-01-15T17:26:10Z 9866 02:44:26 18.9672787384945 Gooby 1.0.0
901
- points.push(new GLatLng(33.49309,-111.92839)); // (879 of 1279.0) 2006-01-15T17:26:14Z 9870 02:44:30 18.9748954027625 Gooby 1.0.0
902
- // points.push(new GLatLng(33.493,-111.9283)); // (880 of 1279.0) 2006-01-15T17:26:18Z 9874 02:44:34 18.9829917077729 Gooby 1.0.0
903
- points.push(new GLatLng(33.49272,-111.92826)); // (881 of 1279.0) 2006-01-15T17:26:27Z 9883 02:44:43 19.002473750158 19.0 00:08:30 Gooby 1.0.0
904
- // points.push(new GLatLng(33.49234,-111.92824)); // (882 of 1279.0) 2006-01-15T17:26:41Z 9897 02:44:57 19.0287532688881 Gooby 1.0.0
905
- // points.push(new GLatLng(33.49208,-111.92824)); // (883 of 1279.0) 2006-01-15T17:26:50Z 9906 02:45:06 19.0467167906158 Gooby 1.0.0
906
- // points.push(new GLatLng(33.49197,-111.92824)); // (884 of 1279.0) 2006-01-15T17:26:54Z 9910 02:45:10 19.0543167624339 Gooby 1.0.0
907
- // points.push(new GLatLng(33.49171,-111.92824)); // (885 of 1279.0) 2006-01-15T17:27:03Z 9919 02:45:19 19.0722801873125 Gooby 1.0.0
908
- // points.push(new GLatLng(33.49139,-111.92826)); // (886 of 1279.0) 2006-01-15T17:27:15Z 9931 02:45:31 19.0944190273847 Gooby 1.0.0
909
- points.push(new GLatLng(33.49105,-111.92828)); // (887 of 1279.0) 2006-01-15T17:27:28Z 9944 02:45:44 19.1179379211769 Gooby 1.0.0
910
- // points.push(new GLatLng(33.49079,-111.92828)); // (888 of 1279.0) 2006-01-15T17:27:37Z 9953 02:45:53 19.1359012492059 Gooby 1.0.0
911
- // points.push(new GLatLng(33.49036,-111.92826)); // (889 of 1279.0) 2006-01-15T17:27:53Z 9969 02:46:09 19.1656322716413 Gooby 1.0.0
912
- // points.push(new GLatLng(33.49023,-111.92826)); // (890 of 1279.0) 2006-01-15T17:28:00Z 9976 02:46:16 19.1746138388054 Gooby 1.0.0
913
- // points.push(new GLatLng(33.49006,-111.92826)); // (891 of 1279.0) 2006-01-15T17:28:09Z 9985 02:46:25 19.1863592595901 Gooby 1.0.0
914
- // points.push(new GLatLng(33.48993,-111.92826)); // (892 of 1279.0) 2006-01-15T17:28:14Z 9990 02:46:30 19.1953410204539 Gooby 1.0.0
915
- points.push(new GLatLng(33.48974,-111.9282)); // (893 of 1279.0) 2006-01-15T17:28:21Z 9997 02:46:37 19.2089156449784 Gooby 1.0.0
916
- // points.push(new GLatLng(33.48965,-111.92807)); // (894 of 1279.0) 2006-01-15T17:28:27Z 10003 02:46:43 19.2186506812331 Gooby 1.0.0
917
- // points.push(new GLatLng(33.48957,-111.92775)); // (895 of 1279.0) 2006-01-15T17:28:37Z 10013 02:46:53 19.2378996856892 Gooby 1.0.0
918
- // points.push(new GLatLng(33.48944,-111.92736)); // (896 of 1279.0) 2006-01-15T17:28:49Z 10025 02:47:05 19.2620999794984 Gooby 1.0.0
919
- // points.push(new GLatLng(33.48925,-111.92699)); // (897 of 1279.0) 2006-01-15T17:29:02Z 10038 02:47:18 19.2871367023455 Gooby 1.0.0
920
- // points.push(new GLatLng(33.48901,-111.92672)); // (898 of 1279.0) 2006-01-15T17:29:14Z 10050 02:47:30 19.3098739616584 Gooby 1.0.0
921
- points.push(new GLatLng(33.48875,-111.92652)); // (899 of 1279.0) 2006-01-15T17:29:25Z 10061 02:47:41 19.3312160893576 Gooby 1.0.0
922
- // points.push(new GLatLng(33.48856,-111.92641)); // (900 of 1279.0) 2006-01-15T17:29:33Z 10069 02:47:49 19.3457932150262 Gooby 1.0.0
923
- // points.push(new GLatLng(33.4883,-111.92631)); // (901 of 1279.0) 2006-01-15T17:29:42Z 10078 02:47:58 19.3646580624703 Gooby 1.0.0
924
- // points.push(new GLatLng(33.48811,-111.92629)); // (902 of 1279.0) 2006-01-15T17:29:49Z 10085 02:48:05 19.3778358657801 Gooby 1.0.0
925
- // points.push(new GLatLng(33.48785,-111.92626)); // (903 of 1279.0) 2006-01-15T17:29:58Z 10094 02:48:14 19.3958822924964 Gooby 1.0.0
926
- // points.push(new GLatLng(33.48759,-111.92626)); // (904 of 1279.0) 2006-01-15T17:30:07Z 10103 02:48:23 19.413845717375 Gooby 1.0.0
927
- points.push(new GLatLng(33.48725,-111.92624)); // (905 of 1279.0) 2006-01-15T17:30:19Z 10115 02:48:35 19.4373645371948 Gooby 1.0.0
928
- // points.push(new GLatLng(33.48699,-111.92624)); // (906 of 1279.0) 2006-01-15T17:30:28Z 10124 02:48:44 19.4553278652238 Gooby 1.0.0
929
- // points.push(new GLatLng(33.48676,-111.92624)); // (907 of 1279.0) 2006-01-15T17:30:37Z 10133 02:48:53 19.4712184358027 Gooby 1.0.0
930
- // points.push(new GLatLng(33.48644,-111.92624)); // (908 of 1279.0) 2006-01-15T17:30:48Z 10144 02:49:04 19.4933271579324 Gooby 1.0.0
931
- // points.push(new GLatLng(33.48622,-111.92624)); // (909 of 1279.0) 2006-01-15T17:30:56Z 10152 02:49:12 19.5085269871107 Gooby 1.0.0
932
- // points.push(new GLatLng(33.48598,-111.92624)); // (910 of 1279.0) 2006-01-15T17:31:04Z 10160 02:49:20 19.5251085877257 Gooby 1.0.0
933
- points.push(new GLatLng(33.48575,-111.92624)); // (911 of 1279.0) 2006-01-15T17:31:13Z 10169 02:49:29 19.5409992677871 Gooby 1.0.0
934
- // points.push(new GLatLng(33.48549,-111.92624)); // (912 of 1279.0) 2006-01-15T17:31:22Z 10178 02:49:38 19.5589626926657 Gooby 1.0.0
935
- // points.push(new GLatLng(33.48526,-111.92624)); // (913 of 1279.0) 2006-01-15T17:31:30Z 10186 02:49:46 19.574853482209 Gooby 1.0.0
936
- // points.push(new GLatLng(33.48506,-111.92624)); // (914 of 1279.0) 2006-01-15T17:31:37Z 10193 02:49:53 19.5886714827214 Gooby 1.0.0
937
- // points.push(new GLatLng(33.48485,-111.92624)); // (915 of 1279.0) 2006-01-15T17:31:45Z 10201 02:50:01 19.603180420731 Gooby 1.0.0
938
- // points.push(new GLatLng(33.48457,-111.92624)); // (916 of 1279.0) 2006-01-15T17:31:55Z 10211 02:50:11 19.6225255315166 Gooby 1.0.0
939
- points.push(new GLatLng(33.48427,-111.92626)); // (917 of 1279.0) 2006-01-15T17:32:06Z 10222 02:50:22 19.6432845083048 Gooby 1.0.0
940
- // points.push(new GLatLng(33.48397,-111.92626)); // (918 of 1279.0) 2006-01-15T17:32:16Z 10232 02:50:32 19.6640113621847 Gooby 1.0.0
941
- // points.push(new GLatLng(33.48362,-111.92624)); // (919 of 1279.0) 2006-01-15T17:32:28Z 10244 02:50:44 19.6882202811923 Gooby 1.0.0
942
- // points.push(new GLatLng(33.48328,-111.92622)); // (920 of 1279.0) 2006-01-15T17:32:40Z 10256 02:50:56 19.7117391010122 Gooby 1.0.0
943
- // points.push(new GLatLng(33.48292,-111.92622)); // (921 of 1279.0) 2006-01-15T17:32:53Z 10269 02:51:09 19.7366115718814 Gooby 1.0.0
944
- // points.push(new GLatLng(33.48268,-111.92622)); // (922 of 1279.0) 2006-01-15T17:33:02Z 10278 02:51:18 19.7531931724964 Gooby 1.0.0
945
- points.push(new GLatLng(33.4824,-111.92622)); // (923 of 1279.0) 2006-01-15T17:33:12Z 10288 02:51:28 19.7725384631453 Gooby 1.0.0
946
- // points.push(new GLatLng(33.48219,-111.92622)); // (924 of 1279.0) 2006-01-15T17:33:20Z 10296 02:51:36 19.7870474011549 Gooby 1.0.0
947
- // points.push(new GLatLng(33.48191,-111.92624)); // (925 of 1279.0) 2006-01-15T17:33:30Z 10306 02:51:46 19.8064269253195 Gooby 1.0.0
948
- // points.push(new GLatLng(33.48171,-111.92624)); // (926 of 1279.0) 2006-01-15T17:33:37Z 10313 02:51:53 19.8202450517357 Gooby 1.0.0
949
- // points.push(new GLatLng(33.48139,-111.92624)); // (927 of 1279.0) 2006-01-15T17:33:49Z 10325 02:52:05 19.8423538525557 Gooby 1.0.0
950
- // points.push(new GLatLng(33.48114,-111.92624)); // (928 of 1279.0) 2006-01-15T17:33:58Z 10334 02:52:14 19.8596263343107 Gooby 1.0.0
951
- points.push(new GLatLng(33.4809,-111.92624)); // (929 of 1279.0) 2006-01-15T17:34:06Z 10342 02:52:22 19.8762079349256 Gooby 1.0.0
952
- // points.push(new GLatLng(33.48062,-111.92624)); // (930 of 1279.0) 2006-01-15T17:34:16Z 10352 02:52:32 19.8955531356431 Gooby 1.0.0
953
- // points.push(new GLatLng(33.48034,-111.92624)); // (931 of 1279.0) 2006-01-15T17:34:26Z 10362 02:52:42 19.9148982464287 Gooby 1.0.0
954
- // points.push(new GLatLng(33.48008,-111.92624)); // (932 of 1279.0) 2006-01-15T17:34:35Z 10371 02:52:51 19.9328615744577 Gooby 1.0.0
955
- // points.push(new GLatLng(33.47978,-111.92624)); // (933 of 1279.0) 2006-01-15T17:34:46Z 10382 02:53:02 19.9535885122741 Gooby 1.0.0
956
- // points.push(new GLatLng(33.47953,-111.92624)); // (934 of 1279.0) 2006-01-15T17:34:55Z 10391 02:53:11 19.9708610947524 Gooby 1.0.0
957
- points.push(new GLatLng(33.47931,-111.92624)); // (935 of 1279.0) 2006-01-15T17:35:02Z 10398 02:53:18 19.986060809472 Gooby 1.0.0
958
- points.push(new GLatLng(33.47893,-111.92624)); // (936 of 1279.0) 2006-01-15T17:35:15Z 10411 02:53:31 20.0123150270121 20.0 00:08:48 Gooby 1.0.0
959
- // points.push(new GLatLng(33.4786,-111.92624)); // (937 of 1279.0) 2006-01-15T17:35:26Z 10422 02:53:42 20.035114789856 Gooby 1.0.0
960
- // points.push(new GLatLng(33.4783,-111.92624)); // (938 of 1279.0) 2006-01-15T17:35:36Z 10432 02:53:52 20.0558417276724 Gooby 1.0.0
961
- // points.push(new GLatLng(33.47826,-111.92624)); // (939 of 1279.0) 2006-01-15T17:35:38Z 10434 02:53:54 20.0586053277749 Gooby 1.0.0
962
- // points.push(new GLatLng(33.47805,-111.92624)); // (940 of 1279.0) 2006-01-15T17:35:45Z 10441 02:54:01 20.0731141458754 Gooby 1.0.0
963
- // points.push(new GLatLng(33.47781,-111.92626)); // (941 of 1279.0) 2006-01-15T17:35:54Z 10450 02:54:10 20.0897356730468 Gooby 1.0.0
964
- points.push(new GLatLng(33.47757,-111.92626)); // (942 of 1279.0) 2006-01-15T17:36:02Z 10458 02:54:18 20.1063170638199 Gooby 1.0.0
965
- // points.push(new GLatLng(33.47734,-111.92626)); // (943 of 1279.0) 2006-01-15T17:36:11Z 10467 02:54:27 20.1222076343988 Gooby 1.0.0
966
- // points.push(new GLatLng(33.4771,-111.92626)); // (944 of 1279.0) 2006-01-15T17:36:19Z 10475 02:54:35 20.1387892350138 Gooby 1.0.0
967
- // points.push(new GLatLng(33.47687,-111.92624)); // (945 of 1279.0) 2006-01-15T17:36:28Z 10484 02:54:44 20.1547219007621 Gooby 1.0.0
968
- // points.push(new GLatLng(33.47674,-111.92624)); // (946 of 1279.0) 2006-01-15T17:36:34Z 10490 02:54:50 20.1637038553215 Gooby 1.0.0
969
- // points.push(new GLatLng(33.47659,-111.92624)); // (947 of 1279.0) 2006-01-15T17:36:41Z 10497 02:54:57 20.1740674921013 Gooby 1.0.0
970
- points.push(new GLatLng(33.47631,-111.92624)); // (948 of 1279.0) 2006-01-15T17:36:51Z 10507 02:55:07 20.1934127827502 Gooby 1.0.0
971
- // points.push(new GLatLng(33.47596,-111.92626)); // (949 of 1279.0) 2006-01-15T17:37:04Z 10520 02:55:20 20.2176217017579 Gooby 1.0.0
972
- // points.push(new GLatLng(33.47569,-111.92624)); // (950 of 1279.0) 2006-01-15T17:37:14Z 10530 02:55:30 20.2363116238468 Gooby 1.0.0
973
- // points.push(new GLatLng(33.47549,-111.92624)); // (951 of 1279.0) 2006-01-15T17:37:21Z 10537 02:55:37 20.250129750263 Gooby 1.0.0
974
- // points.push(new GLatLng(33.4753,-111.92624)); // (952 of 1279.0) 2006-01-15T17:37:28Z 10544 02:55:44 20.2632568921657 Gooby 1.0.0
975
- // points.push(new GLatLng(33.47508,-111.92624)); // (953 of 1279.0) 2006-01-15T17:37:36Z 10552 02:55:52 20.2784566068853 Gooby 1.0.0
976
- points.push(new GLatLng(33.47487,-111.92624)); // (954 of 1279.0) 2006-01-15T17:37:44Z 10560 02:56:00 20.2929655448949 Gooby 1.0.0
977
- // points.push(new GLatLng(33.47466,-111.92624)); // (955 of 1279.0) 2006-01-15T17:37:52Z 10568 02:56:08 20.3074744829045 Gooby 1.0.0
978
- // points.push(new GLatLng(33.4744,-111.92626)); // (956 of 1279.0) 2006-01-15T17:38:01Z 10577 02:56:17 20.3254747695667 Gooby 1.0.0
979
- // points.push(new GLatLng(33.47418,-111.92624)); // (957 of 1279.0) 2006-01-15T17:38:09Z 10585 02:56:25 20.3407181449673 Gooby 1.0.0
980
- // points.push(new GLatLng(33.47395,-111.92624)); // (958 of 1279.0) 2006-01-15T17:38:17Z 10593 02:56:33 20.3566088250288 Gooby 1.0.0
981
- // points.push(new GLatLng(33.47373,-111.92626)); // (959 of 1279.0) 2006-01-15T17:38:25Z 10601 02:56:41 20.3718523145603 Gooby 1.0.0
982
- points.push(new GLatLng(33.47352,-111.92626)); // (960 of 1279.0) 2006-01-15T17:38:33Z 10609 02:56:49 20.3863612525699 Gooby 1.0.0
983
- // points.push(new GLatLng(33.47332,-111.92626)); // (961 of 1279.0) 2006-01-15T17:38:40Z 10616 02:56:56 20.4001792530823 Gooby 1.0.0
984
- // points.push(new GLatLng(33.47311,-111.92626)); // (962 of 1279.0) 2006-01-15T17:38:48Z 10624 02:57:04 20.4146881910919 Gooby 1.0.0
985
- // points.push(new GLatLng(33.47287,-111.92626)); // (963 of 1279.0) 2006-01-15T17:38:57Z 10633 02:57:13 20.4312697917069 Gooby 1.0.0
986
- // points.push(new GLatLng(33.47264,-111.92626)); // (964 of 1279.0) 2006-01-15T17:39:06Z 10642 02:57:22 20.4471604717684 Gooby 1.0.0
987
- // points.push(new GLatLng(33.47229,-111.92624)); // (965 of 1279.0) 2006-01-15T17:39:18Z 10654 02:57:34 20.471369390776 Gooby 1.0.0
988
- points.push(new GLatLng(33.47202,-111.92624)); // (966 of 1279.0) 2006-01-15T17:39:28Z 10664 02:57:44 20.4900237206124 Gooby 1.0.0
989
- // points.push(new GLatLng(33.47178,-111.92624)); // (967 of 1279.0) 2006-01-15T17:39:37Z 10673 02:57:53 20.5066053212274 Gooby 1.0.0
990
- // points.push(new GLatLng(33.47152,-111.92624)); // (968 of 1279.0) 2006-01-15T17:39:46Z 10682 02:58:02 20.5245687461059 Gooby 1.0.0
991
- // points.push(new GLatLng(33.47129,-111.92626)); // (969 of 1279.0) 2006-01-15T17:39:55Z 10691 02:58:11 20.5405011934654 Gooby 1.0.0
992
- // points.push(new GLatLng(33.47103,-111.92626)); // (970 of 1279.0) 2006-01-15T17:40:04Z 10700 02:58:20 20.5584645214944 Gooby 1.0.0
993
- // points.push(new GLatLng(33.47075,-111.92626)); // (971 of 1279.0) 2006-01-15T17:40:14Z 10710 02:58:30 20.5778097222118 Gooby 1.0.0
994
- points.push(new GLatLng(33.47047,-111.92624)); // (972 of 1279.0) 2006-01-15T17:40:24Z 10720 02:58:40 20.5971893361486 Gooby 1.0.0
995
- // points.push(new GLatLng(33.47023,-111.92626)); // (973 of 1279.0) 2006-01-15T17:40:32Z 10728 02:58:48 20.6138109679879 Gooby 1.0.0
996
- // points.push(new GLatLng(33.47002,-111.92626)); // (974 of 1279.0) 2006-01-15T17:40:40Z 10736 02:58:56 20.6283199059975 Gooby 1.0.0
997
- // points.push(new GLatLng(33.46983,-111.92626)); // (975 of 1279.0) 2006-01-15T17:40:47Z 10743 02:59:03 20.6414470479001 Gooby 1.0.0
998
- // points.push(new GLatLng(33.46963,-111.92626)); // (976 of 1279.0) 2006-01-15T17:40:54Z 10750 02:59:10 20.6552649225077 Gooby 1.0.0
999
- // points.push(new GLatLng(33.4694,-111.92626)); // (977 of 1279.0) 2006-01-15T17:41:02Z 10758 02:59:18 20.6711556025692 Gooby 1.0.0
1000
- points.push(new GLatLng(33.46918,-111.92626)); // (978 of 1279.0) 2006-01-15T17:41:10Z 10766 02:59:26 20.6863553172888 Gooby 1.0.0
1001
- // points.push(new GLatLng(33.46895,-111.92626)); // (979 of 1279.0) 2006-01-15T17:41:18Z 10774 02:59:34 20.7022459973503 Gooby 1.0.0
1002
- // points.push(new GLatLng(33.46873,-111.92626)); // (980 of 1279.0) 2006-01-15T17:41:25Z 10781 02:59:41 20.7174459409864 Gooby 1.0.0
1003
- // points.push(new GLatLng(33.46852,-111.92629)); // (981 of 1279.0) 2006-01-15T17:41:33Z 10789 02:59:49 20.7320573983583 Gooby 1.0.0
1004
- // points.push(new GLatLng(33.46826,-111.92626)); // (982 of 1279.0) 2006-01-15T17:41:42Z 10798 02:59:58 20.7501037286704 Gooby 1.0.0
1005
- // points.push(new GLatLng(33.46805,-111.92626)); // (983 of 1279.0) 2006-01-15T17:41:50Z 10806 03:00:06 20.7646124268609 Gooby 1.0.0
1006
- points.push(new GLatLng(33.46787,-111.92626)); // (984 of 1279.0) 2006-01-15T17:41:56Z 10812 03:00:12 20.7770485224014 Gooby 1.0.0
1007
- // points.push(new GLatLng(33.46764,-111.92626)); // (985 of 1279.0) 2006-01-15T17:42:04Z 10820 03:00:20 20.7929392024629 Gooby 1.0.0
1008
- // points.push(new GLatLng(33.46742,-111.92629)); // (986 of 1279.0) 2006-01-15T17:42:12Z 10828 03:00:28 20.8082368078939 Gooby 1.0.0
1009
- // points.push(new GLatLng(33.46714,-111.92626)); // (987 of 1279.0) 2006-01-15T17:42:22Z 10838 03:00:38 20.8276591062815 Gooby 1.0.0
1010
- // points.push(new GLatLng(33.46682,-111.92626)); // (988 of 1279.0) 2006-01-15T17:42:34Z 10850 03:00:50 20.8497679071015 Gooby 1.0.0
1011
- // points.push(new GLatLng(33.46652,-111.92622)); // (989 of 1279.0) 2006-01-15T17:42:45Z 10861 03:01:01 20.8706227054805 Gooby 1.0.0
1012
- points.push(new GLatLng(33.46627,-111.92622)); // (990 of 1279.0) 2006-01-15T17:42:54Z 10870 03:01:10 20.8878951872355 Gooby 1.0.0
1013
- // points.push(new GLatLng(33.46607,-111.92622)); // (991 of 1279.0) 2006-01-15T17:43:01Z 10877 03:01:17 20.9017133136517 Gooby 1.0.0
1014
- // points.push(new GLatLng(33.46584,-111.9262)); // (992 of 1279.0) 2006-01-15T17:43:09Z 10885 03:01:25 20.917645870206 Gooby 1.0.0
1015
- // points.push(new GLatLng(33.46581,-111.92618)); // (993 of 1279.0) 2006-01-15T17:43:10Z 10886 03:01:26 20.9200171271519 Gooby 1.0.0
1016
- // points.push(new GLatLng(33.46566,-111.92594)); // (994 of 1279.0) 2006-01-15T17:43:19Z 10895 03:01:35 20.9373012888926 Gooby 1.0.0
1017
- // points.push(new GLatLng(33.46566,-111.92566)); // (995 of 1279.0) 2006-01-15T17:43:27Z 10903 03:01:43 20.9534393345211 Gooby 1.0.0
1018
- points.push(new GLatLng(33.46569,-111.92536)); // (996 of 1279.0) 2006-01-15T17:43:36Z 10912 03:01:52 20.9708539567254 Gooby 1.0.0
1019
- // points.push(new GLatLng(33.46569,-111.925)); // (997 of 1279.0) 2006-01-15T17:43:47Z 10923 03:02:03 20.991602958092 Gooby 1.0.0
1020
- points.push(new GLatLng(33.46571,-111.92457)); // (998 of 1279.0) 2006-01-15T17:44:00Z 10936 03:02:16 21.0164250162805 21.0 00:08:45 Gooby 1.0.0
1021
- // points.push(new GLatLng(33.46571,-111.92427)); // (999 of 1279.0) 2006-01-15T17:44:09Z 10945 03:02:25 21.0337158200087 Gooby 1.0.0
1022
- // points.push(new GLatLng(33.46571,-111.92388)); // (1000 of 1279.0) 2006-01-15T17:44:20Z 10956 03:02:36 21.0561938989103 Gooby 1.0.0
1023
- // points.push(new GLatLng(33.46571,-111.92378)); // (1001 of 1279.0) 2006-01-15T17:44:23Z 10959 03:02:39 21.0619577684583 Gooby 1.0.0
1024
- // points.push(new GLatLng(33.46571,-111.92354)); // (1002 of 1279.0) 2006-01-15T17:44:30Z 10966 03:02:46 21.0757904919341 Gooby 1.0.0
1025
- // points.push(new GLatLng(33.46573,-111.92317)); // (1003 of 1279.0) 2006-01-15T17:44:41Z 10977 03:02:57 21.0971605616715 Gooby 1.0.0
1026
- points.push(new GLatLng(33.46573,-111.92266)); // (1004 of 1279.0) 2006-01-15T17:44:56Z 10992 03:03:12 21.1265549067024 Gooby 1.0.0
1027
- // points.push(new GLatLng(33.46571,-111.92227)); // (1005 of 1279.0) 2006-01-15T17:45:07Z 11003 03:03:23 21.1490753594702 Gooby 1.0.0
1028
- // points.push(new GLatLng(33.46571,-111.92191)); // (1006 of 1279.0) 2006-01-15T17:45:17Z 11013 03:03:33 21.1698242769895 Gooby 1.0.0
1029
- // points.push(new GLatLng(33.46573,-111.92159)); // (1007 of 1279.0) 2006-01-15T17:45:26Z 11022 03:03:42 21.188319475401 Gooby 1.0.0
1030
- // points.push(new GLatLng(33.46571,-111.92137)); // (1008 of 1279.0) 2006-01-15T17:45:32Z 11028 03:03:48 21.2010744987227 Gooby 1.0.0
1031
- // points.push(new GLatLng(33.46571,-111.92109)); // (1009 of 1279.0) 2006-01-15T17:45:40Z 11036 03:03:56 21.2172126521549 Gooby 1.0.0
1032
- points.push(new GLatLng(33.46571,-111.92077)); // (1010 of 1279.0) 2006-01-15T17:45:50Z 11046 03:04:06 21.2356561367234 Gooby 1.0.0
1033
- // points.push(new GLatLng(33.46571,-111.92064)); // (1011 of 1279.0) 2006-01-15T17:45:56Z 11052 03:04:12 21.243149139274 Gooby 1.0.0
1034
- // points.push(new GLatLng(33.46571,-111.92041)); // (1012 of 1279.0) 2006-01-15T17:46:03Z 11059 03:04:19 21.2564053935512 Gooby 1.0.0
1035
- // points.push(new GLatLng(33.46571,-111.92019)); // (1013 of 1279.0) 2006-01-15T17:46:09Z 11065 03:04:25 21.269085313846 Gooby 1.0.0
1036
- // points.push(new GLatLng(33.46571,-111.91996)); // (1014 of 1279.0) 2006-01-15T17:46:16Z 11072 03:04:32 21.2823415681233 Gooby 1.0.0
1037
- // points.push(new GLatLng(33.46571,-111.91963)); // (1015 of 1279.0) 2006-01-15T17:46:25Z 11081 03:04:41 21.3013614485655 Gooby 1.0.0
1038
- points.push(new GLatLng(33.46571,-111.91938)); // (1016 of 1279.0) 2006-01-15T17:46:33Z 11089 03:04:49 21.3157705187501 Gooby 1.0.0
1039
- // points.push(new GLatLng(33.46571,-111.91905)); // (1017 of 1279.0) 2006-01-15T17:46:42Z 11098 03:04:58 21.3347903991923 Gooby 1.0.0
1040
- // points.push(new GLatLng(33.46571,-111.9188)); // (1018 of 1279.0) 2006-01-15T17:46:50Z 11106 03:05:06 21.3491994693769 Gooby 1.0.0
1041
- // points.push(new GLatLng(33.46573,-111.9185)); // (1019 of 1279.0) 2006-01-15T17:46:59Z 11115 03:05:15 21.3665454237993 Gooby 1.0.0
1042
- // points.push(new GLatLng(33.46571,-111.91822)); // (1020 of 1279.0) 2006-01-15T17:47:07Z 11123 03:05:23 21.3827425457029 Gooby 1.0.0
1043
- // points.push(new GLatLng(33.46573,-111.91798)); // (1021 of 1279.0) 2006-01-15T17:47:14Z 11130 03:05:30 21.3966440204636 Gooby 1.0.0
1044
- points.push(new GLatLng(33.46573,-111.91772)); // (1022 of 1279.0) 2006-01-15T17:47:21Z 11137 03:05:37 21.4116295611921 Gooby 1.0.0
1045
- // points.push(new GLatLng(33.46575,-111.91736)); // (1023 of 1279.0) 2006-01-15T17:47:31Z 11147 03:05:47 21.4324243764109 Gooby 1.0.0
1046
- // points.push(new GLatLng(33.46577,-111.91697)); // (1024 of 1279.0) 2006-01-15T17:47:42Z 11158 03:05:58 21.4549448291787 Gooby 1.0.0
1047
- // points.push(new GLatLng(33.46577,-111.91667)); // (1025 of 1279.0) 2006-01-15T17:47:51Z 11167 03:06:07 21.4722356329069 Gooby 1.0.0
1048
- // points.push(new GLatLng(33.46575,-111.91637)); // (1026 of 1279.0) 2006-01-15T17:48:00Z 11176 03:06:16 21.489581487032 Gooby 1.0.0
1049
- // points.push(new GLatLng(33.46575,-111.91594)); // (1027 of 1279.0) 2006-01-15T17:48:13Z 11189 03:06:29 21.5143648962501 Gooby 1.0.0
1050
- points.push(new GLatLng(33.46575,-111.91569)); // (1028 of 1279.0) 2006-01-15T17:48:20Z 11196 03:06:36 21.5287737249533 Gooby 1.0.0
1051
- // points.push(new GLatLng(33.46575,-111.91532)); // (1029 of 1279.0) 2006-01-15T17:48:31Z 11207 03:06:47 21.5500989719585 Gooby 1.0.0
1052
- // points.push(new GLatLng(33.46575,-111.91498)); // (1030 of 1279.0) 2006-01-15T17:48:41Z 11217 03:06:57 21.5696951625214 Gooby 1.0.0
1053
- // points.push(new GLatLng(33.46575,-111.9147)); // (1031 of 1279.0) 2006-01-15T17:48:49Z 11225 03:07:05 21.5858331003456 Gooby 1.0.0
1054
- // points.push(new GLatLng(33.46573,-111.91425)); // (1032 of 1279.0) 2006-01-15T17:49:02Z 11238 03:07:18 21.6118061055969 Gooby 1.0.0
1055
- // points.push(new GLatLng(33.46575,-111.91393)); // (1033 of 1279.0) 2006-01-15T17:49:12Z 11248 03:07:28 21.6303012099434 Gooby 1.0.0
1056
- points.push(new GLatLng(33.46573,-111.91356)); // (1034 of 1279.0) 2006-01-15T17:49:24Z 11260 03:07:40 21.6516711982702 Gooby 1.0.0
1057
- // points.push(new GLatLng(33.46575,-111.91315)); // (1035 of 1279.0) 2006-01-15T17:49:36Z 11272 03:07:52 21.6753423519544 Gooby 1.0.0
1058
- // points.push(new GLatLng(33.46575,-111.91275)); // (1036 of 1279.0) 2006-01-15T17:49:48Z 11284 03:08:04 21.6983966227692 Gooby 1.0.0
1059
- // points.push(new GLatLng(33.46575,-111.9124)); // (1037 of 1279.0) 2006-01-15T17:49:59Z 11295 03:08:15 21.718569131293 Gooby 1.0.0
1060
- // points.push(new GLatLng(33.46575,-111.91197)); // (1038 of 1279.0) 2006-01-15T17:50:12Z 11308 03:08:28 21.743352540511 Gooby 1.0.0
1061
- // points.push(new GLatLng(33.46575,-111.9117)); // (1039 of 1279.0) 2006-01-15T17:50:20Z 11316 03:08:36 21.7589142146759 Gooby 1.0.0
1062
- points.push(new GLatLng(33.46577,-111.91129)); // (1040 of 1279.0) 2006-01-15T17:50:32Z 11328 03:08:48 21.7825852213667 Gooby 1.0.0
1063
- // points.push(new GLatLng(33.46577,-111.91082)); // (1041 of 1279.0) 2006-01-15T17:50:46Z 11342 03:09:02 21.8096741674737 Gooby 1.0.0
1064
- // points.push(new GLatLng(33.46575,-111.91058)); // (1042 of 1279.0) 2006-01-15T17:50:53Z 11349 03:09:09 21.8235756422343 Gooby 1.0.0
1065
- // points.push(new GLatLng(33.46575,-111.91017)); // (1043 of 1279.0) 2006-01-15T17:51:05Z 11361 03:09:21 21.8472063382883 Gooby 1.0.0
1066
- // points.push(new GLatLng(33.46573,-111.90983)); // (1044 of 1279.0) 2006-01-15T17:51:15Z 11371 03:09:31 21.8668512970647 Gooby 1.0.0
1067
- // points.push(new GLatLng(33.46573,-111.90948)); // (1045 of 1279.0) 2006-01-15T17:51:25Z 11381 03:09:41 21.8870238918317 Gooby 1.0.0
1068
- points.push(new GLatLng(33.46571,-111.90908)); // (1046 of 1279.0) 2006-01-15T17:51:37Z 11393 03:09:53 21.910119705371 Gooby 1.0.0
1069
- // points.push(new GLatLng(33.46566,-111.90903)); // (1047 of 1279.0) 2006-01-15T17:51:39Z 11395 03:09:55 21.9146182303543 Gooby 1.0.0
1070
- // points.push(new GLatLng(33.46556,-111.90899)); // (1048 of 1279.0) 2006-01-15T17:51:43Z 11399 03:09:59 21.9219018982901 Gooby 1.0.0
1071
- // points.push(new GLatLng(33.46549,-111.90897)); // (1049 of 1279.0) 2006-01-15T17:51:45Z 11401 03:10:01 21.926873649799 Gooby 1.0.0
1072
- // points.push(new GLatLng(33.46524,-111.90897)); // (1050 of 1279.0) 2006-01-15T17:51:54Z 11410 03:10:10 21.9441461315539 Gooby 1.0.0
1073
- // points.push(new GLatLng(33.46487,-111.90897)); // (1051 of 1279.0) 2006-01-15T17:52:07Z 11423 03:10:23 21.9697095218259 Gooby 1.0.0
1074
- points.push(new GLatLng(33.46446,-111.90899)); // (1052 of 1279.0) 2006-01-15T17:52:21Z 11437 03:10:37 21.9980598628604 Gooby 1.0.0
1075
- points.push(new GLatLng(33.46423,-111.90897)); // (1053 of 1279.0) 2006-01-15T17:52:29Z 11445 03:10:45 22.0139923102199 22.0 00:08:29 Gooby 1.0.0
1076
- // points.push(new GLatLng(33.46388,-111.90897)); // (1054 of 1279.0) 2006-01-15T17:52:41Z 11457 03:10:57 22.0381737616543 Gooby 1.0.0
1077
- // points.push(new GLatLng(33.46363,-111.90899)); // (1055 of 1279.0) 2006-01-15T17:52:51Z 11467 03:11:07 22.0554846770553 Gooby 1.0.0
1078
- // points.push(new GLatLng(33.46352,-111.90899)); // (1056 of 1279.0) 2006-01-15T17:52:54Z 11470 03:11:10 22.0630846488733 Gooby 1.0.0
1079
- // points.push(new GLatLng(33.46324,-111.90899)); // (1057 of 1279.0) 2006-01-15T17:53:04Z 11480 03:11:20 22.0824299395223 Gooby 1.0.0
1080
- // points.push(new GLatLng(33.46296,-111.90899)); // (1058 of 1279.0) 2006-01-15T17:53:14Z 11490 03:11:30 22.1017751402398 Gooby 1.0.0
1081
- points.push(new GLatLng(33.4627,-111.90899)); // (1059 of 1279.0) 2006-01-15T17:53:23Z 11499 03:11:39 22.1197385651183 Gooby 1.0.0
1082
- // points.push(new GLatLng(33.46249,-111.90901)); // (1060 of 1279.0) 2006-01-15T17:53:31Z 11507 03:11:47 22.1342932361284 Gooby 1.0.0
1083
- // points.push(new GLatLng(33.46215,-111.90901)); // (1061 of 1279.0) 2006-01-15T17:53:43Z 11519 03:11:59 22.157783855515 Gooby 1.0.0
1084
- // points.push(new GLatLng(33.46193,-111.90901)); // (1062 of 1279.0) 2006-01-15T17:53:51Z 11527 03:12:07 22.1729837991512 Gooby 1.0.0
1085
- // points.push(new GLatLng(33.46159,-111.90903)); // (1063 of 1279.0) 2006-01-15T17:54:03Z 11539 03:12:19 22.1965026929434 Gooby 1.0.0
1086
- // points.push(new GLatLng(33.46139,-111.90903)); // (1064 of 1279.0) 2006-01-15T17:54:10Z 11546 03:12:26 22.210320567551 Gooby 1.0.0
1087
- points.push(new GLatLng(33.46112,-111.90903)); // (1065 of 1279.0) 2006-01-15T17:54:20Z 11556 03:12:36 22.2289748973873 Gooby 1.0.0
1088
- // points.push(new GLatLng(33.46086,-111.90906)); // (1066 of 1279.0) 2006-01-15T17:54:30Z 11566 03:12:46 22.2470213241036 Gooby 1.0.0
1089
- // points.push(new GLatLng(33.4606,-111.90903)); // (1067 of 1279.0) 2006-01-15T17:54:39Z 11575 03:12:55 22.2650679436267 Gooby 1.0.0
1090
- // points.push(new GLatLng(33.46032,-111.90903)); // (1068 of 1279.0) 2006-01-15T17:54:49Z 11585 03:13:05 22.2844132342756 Gooby 1.0.0
1091
- // points.push(new GLatLng(33.46004,-111.90908)); // (1069 of 1279.0) 2006-01-15T17:55:00Z 11596 03:13:16 22.3039719238749 Gooby 1.0.0
1092
- // points.push(new GLatLng(33.45978,-111.9091)); // (1070 of 1279.0) 2006-01-15T17:55:09Z 11605 03:13:25 22.3219724038381 Gooby 1.0.0
1093
- points.push(new GLatLng(33.45948,-111.9091)); // (1071 of 1279.0) 2006-01-15T17:55:20Z 11616 03:13:36 22.3426993416546 Gooby 1.0.0
1094
- // points.push(new GLatLng(33.45927,-111.9091)); // (1072 of 1279.0) 2006-01-15T17:55:27Z 11623 03:13:43 22.3572081597551 Gooby 1.0.0
1095
- // points.push(new GLatLng(33.45906,-111.90912)); // (1073 of 1279.0) 2006-01-15T17:55:35Z 11631 03:13:51 22.3717627112329 Gooby 1.0.0
1096
- // points.push(new GLatLng(33.45882,-111.90912)); // (1074 of 1279.0) 2006-01-15T17:55:44Z 11640 03:14:00 22.3883443118479 Gooby 1.0.0
1097
- // points.push(new GLatLng(33.45858,-111.90914)); // (1075 of 1279.0) 2006-01-15T17:55:52Z 11648 03:14:08 22.4049659436872 Gooby 1.0.0
1098
- // points.push(new GLatLng(33.45815,-111.90916)); // (1076 of 1279.0) 2006-01-15T17:56:07Z 11663 03:14:23 22.4346970246387 Gooby 1.0.0
1099
- points.push(new GLatLng(33.45794,-111.90918)); // (1077 of 1279.0) 2006-01-15T17:56:16Z 11672 03:14:32 22.4492516956488 Gooby 1.0.0
1100
- // points.push(new GLatLng(33.45777,-111.90918)); // (1078 of 1279.0) 2006-01-15T17:56:23Z 11679 03:14:39 22.4609971164335 Gooby 1.0.0
1101
- // points.push(new GLatLng(33.45753,-111.90921)); // (1079 of 1279.0) 2006-01-15T17:56:32Z 11688 03:14:48 22.4776687043094 Gooby 1.0.0
1102
- // points.push(new GLatLng(33.4573,-111.90921)); // (1080 of 1279.0) 2006-01-15T17:56:41Z 11697 03:14:57 22.4935593843709 Gooby 1.0.0
1103
- // points.push(new GLatLng(33.45708,-111.90923)); // (1081 of 1279.0) 2006-01-15T17:56:49Z 11705 03:15:05 22.5088027597715 Gooby 1.0.0
1104
- // points.push(new GLatLng(33.45687,-111.90923)); // (1082 of 1279.0) 2006-01-15T17:56:57Z 11713 03:15:13 22.5233116977811 Gooby 1.0.0
1105
- points.push(new GLatLng(33.4567,-111.90925)); // (1083 of 1279.0) 2006-01-15T17:57:03Z 11719 03:15:19 22.5351132704082 Gooby 1.0.0
1106
- // points.push(new GLatLng(33.45642,-111.90925)); // (1084 of 1279.0) 2006-01-15T17:57:13Z 11729 03:15:29 22.5544584711256 Gooby 1.0.0
1107
- // points.push(new GLatLng(33.45616,-111.90925)); // (1085 of 1279.0) 2006-01-15T17:57:22Z 11738 03:15:38 22.5724217991546 Gooby 1.0.0
1108
- // points.push(new GLatLng(33.45577,-111.90925)); // (1086 of 1279.0) 2006-01-15T17:57:35Z 11751 03:15:51 22.5993668880478 Gooby 1.0.0
1109
- // points.push(new GLatLng(33.45551,-111.90925)); // (1087 of 1279.0) 2006-01-15T17:57:44Z 11760 03:16:00 22.6173302160767 Gooby 1.0.0
1110
- // points.push(new GLatLng(33.45519,-111.90927)); // (1088 of 1279.0) 2006-01-15T17:57:55Z 11771 03:16:11 22.639469056149 Gooby 1.0.0
1111
- points.push(new GLatLng(33.45481,-111.90925)); // (1089 of 1279.0) 2006-01-15T17:58:08Z 11784 03:16:24 22.6657485748791 Gooby 1.0.0
1112
- // points.push(new GLatLng(33.45457,-111.90925)); // (1090 of 1279.0) 2006-01-15T17:58:16Z 11792 03:16:32 22.6823301754941 Gooby 1.0.0
1113
- // points.push(new GLatLng(33.45436,-111.90927)); // (1091 of 1279.0) 2006-01-15T17:58:24Z 11800 03:16:40 22.6968848465042 Gooby 1.0.0
1114
- // points.push(new GLatLng(33.45416,-111.90927)); // (1092 of 1279.0) 2006-01-15T17:58:31Z 11807 03:16:47 22.7107027211118 Gooby 1.0.0
1115
- // points.push(new GLatLng(33.45391,-111.90929)); // (1093 of 1279.0) 2006-01-15T17:58:40Z 11816 03:16:56 22.7280136365128 Gooby 1.0.0
1116
- // points.push(new GLatLng(33.45358,-111.90929)); // (1094 of 1279.0) 2006-01-15T17:58:51Z 11827 03:17:07 22.7508133993567 Gooby 1.0.0
1117
- points.push(new GLatLng(33.45333,-111.90931)); // (1095 of 1279.0) 2006-01-15T17:59:00Z 11836 03:17:16 22.7681243147577 Gooby 1.0.0
1118
- // points.push(new GLatLng(33.45315,-111.90931)); // (1096 of 1279.0) 2006-01-15T17:59:06Z 11842 03:17:22 22.7805604102982 Gooby 1.0.0
1119
- // points.push(new GLatLng(33.4529,-111.90933)); // (1097 of 1279.0) 2006-01-15T17:59:15Z 11851 03:17:31 22.7978711246981 Gooby 1.0.0
1120
- // points.push(new GLatLng(33.45253,-111.90933)); // (1098 of 1279.0) 2006-01-15T17:59:28Z 11864 03:17:44 22.8234343788574 Gooby 1.0.0
1121
- // points.push(new GLatLng(33.45223,-111.90936)); // (1099 of 1279.0) 2006-01-15T17:59:39Z 11875 03:17:55 22.8442333767803 Gooby 1.0.0
1122
- // points.push(new GLatLng(33.45204,-111.90936)); // (1100 of 1279.0) 2006-01-15T17:59:46Z 11882 03:18:02 22.8573603861519 Gooby 1.0.0
1123
- points.push(new GLatLng(33.4518,-111.90936)); // (1101 of 1279.0) 2006-01-15T17:59:54Z 11890 03:18:10 22.873941776925 Gooby 1.0.0
1124
- // points.push(new GLatLng(33.45146,-111.90938)); // (1102 of 1279.0) 2006-01-15T18:00:06Z 11902 03:18:22 22.8974605967448 Gooby 1.0.0
1125
- // points.push(new GLatLng(33.45109,-111.90938)); // (1103 of 1279.0) 2006-01-15T18:00:19Z 11915 03:18:35 22.9230239189606 Gooby 1.0.0
1126
- // points.push(new GLatLng(33.45071,-111.9094)); // (1104 of 1279.0) 2006-01-15T18:00:32Z 11928 03:18:48 22.9493034376907 Gooby 1.0.0
1127
- // points.push(new GLatLng(33.45049,-111.9094)); // (1105 of 1279.0) 2006-01-15T18:00:40Z 11936 03:18:56 22.9645031524103 Gooby 1.0.0
1128
- // points.push(new GLatLng(33.45026,-111.9094)); // (1106 of 1279.0) 2006-01-15T18:00:48Z 11944 03:19:04 22.9803938324718 Gooby 1.0.0
1129
- points.push(new GLatLng(33.44998,-111.9094)); // (1107 of 1279.0) 2006-01-15T18:00:58Z 11954 03:19:14 22.9997390331893 Gooby 1.0.0
1130
- points.push(new GLatLng(33.4497,-111.9094)); // (1108 of 1279.0) 2006-01-15T18:01:08Z 11964 03:19:24 23.0190843238382 23.0 00:08:39 Gooby 1.0.0
1131
- // points.push(new GLatLng(33.44946,-111.9094)); // (1109 of 1279.0) 2006-01-15T18:01:16Z 11972 03:19:32 23.0356659244532 Gooby 1.0.0
1132
- // points.push(new GLatLng(33.44925,-111.90942)); // (1110 of 1279.0) 2006-01-15T18:01:24Z 11980 03:19:40 23.050220475931 Gooby 1.0.0
1133
- // points.push(new GLatLng(33.44914,-111.90942)); // (1111 of 1279.0) 2006-01-15T18:01:28Z 11984 03:19:44 23.0578204477491 Gooby 1.0.0
1134
- // points.push(new GLatLng(33.44901,-111.90942)); // (1112 of 1279.0) 2006-01-15T18:01:32Z 11988 03:19:48 23.0668020149131 Gooby 1.0.0
1135
- // points.push(new GLatLng(33.44878,-111.90942)); // (1113 of 1279.0) 2006-01-15T18:01:41Z 11997 03:19:57 23.0826926949746 Gooby 1.0.0
1136
- points.push(new GLatLng(33.44854,-111.90942)); // (1114 of 1279.0) 2006-01-15T18:01:49Z 12005 03:20:05 23.0992742955896 Gooby 1.0.0
1137
- // points.push(new GLatLng(33.44828,-111.90942)); // (1115 of 1279.0) 2006-01-15T18:01:58Z 12014 03:20:14 23.1172377204682 Gooby 1.0.0
1138
- // points.push(new GLatLng(33.44807,-111.90944)); // (1116 of 1279.0) 2006-01-15T18:02:06Z 12022 03:20:22 23.1317923914782 Gooby 1.0.0
1139
- // points.push(new GLatLng(33.44781,-111.90944)); // (1117 of 1279.0) 2006-01-15T18:02:15Z 12031 03:20:31 23.1497557195072 Gooby 1.0.0
1140
- // points.push(new GLatLng(33.44758,-111.90944)); // (1118 of 1279.0) 2006-01-15T18:02:23Z 12039 03:20:39 23.1656463995687 Gooby 1.0.0
1141
- // points.push(new GLatLng(33.44736,-111.90946)); // (1119 of 1279.0) 2006-01-15T18:02:31Z 12047 03:20:47 23.1808898891002 Gooby 1.0.0
1142
- points.push(new GLatLng(33.44717,-111.90946)); // (1120 of 1279.0) 2006-01-15T18:02:38Z 12054 03:20:54 23.1940168984717 Gooby 1.0.0
1143
- // points.push(new GLatLng(33.44695,-111.90946)); // (1121 of 1279.0) 2006-01-15T18:02:46Z 12062 03:21:02 23.2092166131913 Gooby 1.0.0
1144
- // points.push(new GLatLng(33.4467,-111.90946)); // (1122 of 1279.0) 2006-01-15T18:02:55Z 12071 03:21:11 23.2264890949463 Gooby 1.0.0
1145
- // points.push(new GLatLng(33.44644,-111.90946)); // (1123 of 1279.0) 2006-01-15T18:03:05Z 12081 03:21:21 23.244452616674 Gooby 1.0.0
1146
- // points.push(new GLatLng(33.44618,-111.90948)); // (1124 of 1279.0) 2006-01-15T18:03:14Z 12090 03:21:30 23.2624530966372 Gooby 1.0.0
1147
- // points.push(new GLatLng(33.44588,-111.90948)); // (1125 of 1279.0) 2006-01-15T18:03:25Z 12101 03:21:41 23.28318011839 Gooby 1.0.0
1148
- points.push(new GLatLng(33.44562,-111.90951)); // (1126 of 1279.0) 2006-01-15T18:03:34Z 12110 03:21:50 23.3012265451062 Gooby 1.0.0
1149
- // points.push(new GLatLng(33.44541,-111.90951)); // (1127 of 1279.0) 2006-01-15T18:03:42Z 12118 03:21:58 23.3157352432967 Gooby 1.0.0
1150
- // points.push(new GLatLng(33.44519,-111.90951)); // (1128 of 1279.0) 2006-01-15T18:03:49Z 12125 03:22:05 23.3309349580163 Gooby 1.0.0
1151
- // points.push(new GLatLng(33.44498,-111.90951)); // (1129 of 1279.0) 2006-01-15T18:03:57Z 12133 03:22:13 23.3454437761168 Gooby 1.0.0
1152
- // points.push(new GLatLng(33.44474,-111.90951)); // (1130 of 1279.0) 2006-01-15T18:04:06Z 12142 03:22:22 23.3620253767318 Gooby 1.0.0
1153
- // points.push(new GLatLng(33.44451,-111.90951)); // (1131 of 1279.0) 2006-01-15T18:04:14Z 12150 03:22:30 23.3779160567933 Gooby 1.0.0
1154
- points.push(new GLatLng(33.44429,-111.90953)); // (1132 of 1279.0) 2006-01-15T18:04:22Z 12158 03:22:38 23.3931595463247 Gooby 1.0.0
1155
- // points.push(new GLatLng(33.44406,-111.90955)); // (1133 of 1279.0) 2006-01-15T18:04:31Z 12167 03:22:47 23.4090919936842 Gooby 1.0.0
1156
- // points.push(new GLatLng(33.44386,-111.90955)); // (1134 of 1279.0) 2006-01-15T18:04:38Z 12174 03:22:54 23.4229098682918 Gooby 1.0.0
1157
- // points.push(new GLatLng(33.44363,-111.90955)); // (1135 of 1279.0) 2006-01-15T18:04:47Z 12183 03:23:03 23.4388005483532 Gooby 1.0.0
1158
- // points.push(new GLatLng(33.44341,-111.90955)); // (1136 of 1279.0) 2006-01-15T18:04:55Z 12191 03:23:11 23.4540002630728 Gooby 1.0.0
1159
- // points.push(new GLatLng(33.44318,-111.90955)); // (1137 of 1279.0) 2006-01-15T18:05:03Z 12199 03:23:19 23.4698909431343 Gooby 1.0.0
1160
- points.push(new GLatLng(33.44292,-111.90955)); // (1138 of 1279.0) 2006-01-15T18:05:13Z 12209 03:23:29 23.4878542711633 Gooby 1.0.0
1161
- // points.push(new GLatLng(33.44268,-111.90955)); // (1139 of 1279.0) 2006-01-15T18:05:21Z 12217 03:23:37 23.5044357668576 Gooby 1.0.0
1162
- // points.push(new GLatLng(33.44243,-111.90957)); // (1140 of 1279.0) 2006-01-15T18:05:30Z 12226 03:23:46 23.5217465817584 Gooby 1.0.0
1163
- // points.push(new GLatLng(33.44219,-111.90959)); // (1141 of 1279.0) 2006-01-15T18:05:38Z 12234 03:23:54 23.5383682135977 Gooby 1.0.0
1164
- // points.push(new GLatLng(33.44193,-111.90959)); // (1142 of 1279.0) 2006-01-15T18:05:47Z 12243 03:24:03 23.5563316384763 Gooby 1.0.0
1165
- // points.push(new GLatLng(33.44165,-111.90959)); // (1143 of 1279.0) 2006-01-15T18:05:57Z 12253 03:24:13 23.5756767492619 Gooby 1.0.0
1166
- points.push(new GLatLng(33.44135,-111.90961)); // (1144 of 1279.0) 2006-01-15T18:06:08Z 12264 03:24:24 23.5964357260501 Gooby 1.0.0
1167
- // points.push(new GLatLng(33.44099,-111.90961)); // (1145 of 1279.0) 2006-01-15T18:06:21Z 12277 03:24:37 23.6213081969193 Gooby 1.0.0
1168
- // points.push(new GLatLng(33.44075,-111.90961)); // (1146 of 1279.0) 2006-01-15T18:06:29Z 12285 03:24:45 23.6378897975343 Gooby 1.0.0
1169
- // points.push(new GLatLng(33.44054,-111.90961)); // (1147 of 1279.0) 2006-01-15T18:06:37Z 12293 03:24:53 23.6523987355439 Gooby 1.0.0
1170
- // points.push(new GLatLng(33.44028,-111.90964)); // (1148 of 1279.0) 2006-01-15T18:06:46Z 12302 03:25:02 23.6704452586638 Gooby 1.0.0
1171
- // points.push(new GLatLng(33.44002,-111.90964)); // (1149 of 1279.0) 2006-01-15T18:06:55Z 12311 03:25:11 23.6884085866928 Gooby 1.0.0
1172
- points.push(new GLatLng(33.43985,-111.90964)); // (1150 of 1279.0) 2006-01-15T18:07:01Z 12317 03:25:17 23.7001540074775 Gooby 1.0.0
1173
- // points.push(new GLatLng(33.43966,-111.90964)); // (1151 of 1279.0) 2006-01-15T18:07:08Z 12324 03:25:24 23.7132810168491 Gooby 1.0.0
1174
- // points.push(new GLatLng(33.4394,-111.90964)); // (1152 of 1279.0) 2006-01-15T18:07:17Z 12333 03:25:33 23.731244344878 Gooby 1.0.0
1175
- // points.push(new GLatLng(33.43914,-111.90966)); // (1153 of 1279.0) 2006-01-15T18:07:27Z 12343 03:25:43 23.7492446315403 Gooby 1.0.0
1176
- // points.push(new GLatLng(33.43884,-111.90964)); // (1154 of 1279.0) 2006-01-15T18:07:37Z 12353 03:25:53 23.7700036083285 Gooby 1.0.0
1177
- // points.push(new GLatLng(33.43865,-111.90966)); // (1155 of 1279.0) 2006-01-15T18:07:44Z 12360 03:26:00 23.7831811475937 Gooby 1.0.0
1178
- points.push(new GLatLng(33.43841,-111.90966)); // (1156 of 1279.0) 2006-01-15T18:07:52Z 12368 03:26:08 23.7997627482087 Gooby 1.0.0
1179
- // points.push(new GLatLng(33.43822,-111.9097)); // (1157 of 1279.0) 2006-01-15T18:07:59Z 12375 03:26:15 23.8130909888356 Gooby 1.0.0
1180
- // points.push(new GLatLng(33.43803,-111.9097)); // (1158 of 1279.0) 2006-01-15T18:08:06Z 12382 03:26:22 23.8262179982072 Gooby 1.0.0
1181
- // points.push(new GLatLng(33.43775,-111.9097)); // (1159 of 1279.0) 2006-01-15T18:08:16Z 12392 03:26:32 23.8455632888561 Gooby 1.0.0
1182
- // points.push(new GLatLng(33.43736,-111.9097)); // (1160 of 1279.0) 2006-01-15T18:08:30Z 12406 03:26:46 23.8725083777493 Gooby 1.0.0
1183
- // points.push(new GLatLng(33.43702,-111.9097)); // (1161 of 1279.0) 2006-01-15T18:08:43Z 12419 03:26:59 23.8959989230745 Gooby 1.0.0
1184
- points.push(new GLatLng(33.43672,-111.9097)); // (1162 of 1279.0) 2006-01-15T18:08:54Z 12430 03:27:10 23.9167259448272 Gooby 1.0.0
1185
- // points.push(new GLatLng(33.43642,-111.9097)); // (1163 of 1279.0) 2006-01-15T18:09:06Z 12442 03:27:22 23.937453050516 Gooby 1.0.0
1186
- // points.push(new GLatLng(33.43575,-111.90966)); // (1164 of 1279.0) 2006-01-15T18:09:30Z 12466 03:27:46 23.9838007933313 Gooby 1.0.0
1187
- points.push(new GLatLng(33.43537,-111.90957)); // (1165 of 1279.0) 2006-01-15T18:09:44Z 12480 03:28:00 24.0105627956912 24.0 00:08:36 Gooby 1.0.0
1188
- // points.push(new GLatLng(33.435,-111.90959)); // (1166 of 1279.0) 2006-01-15T18:09:58Z 12494 03:28:14 24.0361520342352 Gooby 1.0.0
1189
- // points.push(new GLatLng(33.43479,-111.90957)); // (1167 of 1279.0) 2006-01-15T18:10:06Z 12502 03:28:22 24.050706585713 Gooby 1.0.0
1190
- // points.push(new GLatLng(33.43466,-111.90957)); // (1168 of 1279.0) 2006-01-15T18:10:10Z 12506 03:28:26 24.059688152877 Gooby 1.0.0
1191
- // points.push(new GLatLng(33.43453,-111.90955)); // (1169 of 1279.0) 2006-01-15T18:10:15Z 12511 03:28:31 24.0687437960764 Gooby 1.0.0
1192
- // points.push(new GLatLng(33.43423,-111.90951)); // (1170 of 1279.0) 2006-01-15T18:10:26Z 12522 03:28:42 24.0895987612985 Gooby 1.0.0
1193
- points.push(new GLatLng(33.43404,-111.90948)); // (1171 of 1279.0) 2006-01-15T18:10:33Z 12529 03:28:49 24.1028393888472 Gooby 1.0.0
1194
- // points.push(new GLatLng(33.43378,-111.90948)); // (1172 of 1279.0) 2006-01-15T18:10:42Z 12538 03:28:58 24.1208027168762 Gooby 1.0.0
1195
- // points.push(new GLatLng(33.43354,-111.90946)); // (1173 of 1279.0) 2006-01-15T18:10:50Z 12546 03:29:06 24.1374242440475 Gooby 1.0.0
1196
- // points.push(new GLatLng(33.43335,-111.90944)); // (1174 of 1279.0) 2006-01-15T18:10:57Z 12553 03:29:13 24.1506017833128 Gooby 1.0.0
1197
- // points.push(new GLatLng(33.43316,-111.90942)); // (1175 of 1279.0) 2006-01-15T18:11:04Z 12560 03:29:20 24.1637794546009 Gooby 1.0.0
1198
- // points.push(new GLatLng(33.43294,-111.90942)); // (1176 of 1279.0) 2006-01-15T18:11:11Z 12567 03:29:27 24.1789791693206 Gooby 1.0.0
1199
- points.push(new GLatLng(33.43275,-111.90942)); // (1177 of 1279.0) 2006-01-15T18:11:18Z 12574 03:29:34 24.1921061786921 Gooby 1.0.0
1200
- // points.push(new GLatLng(33.43256,-111.9094)); // (1178 of 1279.0) 2006-01-15T18:11:25Z 12581 03:29:41 24.2052837179574 Gooby 1.0.0
1201
- // points.push(new GLatLng(33.43232,-111.90938)); // (1179 of 1279.0) 2006-01-15T18:11:33Z 12589 03:29:49 24.2219053497967 Gooby 1.0.0
1202
- // points.push(new GLatLng(33.4321,-111.90938)); // (1180 of 1279.0) 2006-01-15T18:11:41Z 12597 03:29:57 24.237105178975 Gooby 1.0.0
1203
- // points.push(new GLatLng(33.43187,-111.90933)); // (1181 of 1279.0) 2006-01-15T18:11:49Z 12605 03:30:05 24.2532551864161 Gooby 1.0.0
1204
- // points.push(new GLatLng(33.43165,-111.90931)); // (1182 of 1279.0) 2006-01-15T18:11:57Z 12613 03:30:13 24.2684986759476 Gooby 1.0.0
1205
- points.push(new GLatLng(33.43138,-111.90929)); // (1183 of 1279.0) 2006-01-15T18:12:07Z 12623 03:30:23 24.2871885980365 Gooby 1.0.0
1206
- // points.push(new GLatLng(33.43112,-111.90925)); // (1184 of 1279.0) 2006-01-15T18:12:17Z 12633 03:30:33 24.3052994041355 Gooby 1.0.0
1207
- // points.push(new GLatLng(33.43082,-111.90923)); // (1185 of 1279.0) 2006-01-15T18:12:28Z 12644 03:30:44 24.3260583809237 Gooby 1.0.0
1208
- // points.push(new GLatLng(33.43041,-111.90921)); // (1186 of 1279.0) 2006-01-15T18:12:43Z 12659 03:30:59 24.3544087219582 Gooby 1.0.0
1209
- // points.push(new GLatLng(33.43007,-111.90921)); // (1187 of 1279.0) 2006-01-15T18:12:55Z 12671 03:31:11 24.3778992672833 Gooby 1.0.0
1210
- // points.push(new GLatLng(33.42962,-111.90918)); // (1188 of 1279.0) 2006-01-15T18:13:11Z 12687 03:31:27 24.4090378162725 Gooby 1.0.0
1211
- points.push(new GLatLng(33.42947,-111.90916)); // (1189 of 1279.0) 2006-01-15T18:13:17Z 12693 03:31:33 24.419465048617 Gooby 1.0.0
1212
- // points.push(new GLatLng(33.42912,-111.90916)); // (1190 of 1279.0) 2006-01-15T18:13:30Z 12706 03:31:46 24.4436465000514 Gooby 1.0.0
1213
- // points.push(new GLatLng(33.42874,-111.90914)); // (1191 of 1279.0) 2006-01-15T18:13:44Z 12720 03:32:00 24.4699259525799 Gooby 1.0.0
1214
- // points.push(new GLatLng(33.42835,-111.90914)); // (1192 of 1279.0) 2006-01-15T18:13:58Z 12734 03:32:14 24.496871041473 Gooby 1.0.0
1215
- // points.push(new GLatLng(33.42807,-111.90912)); // (1193 of 1279.0) 2006-01-15T18:14:08Z 12744 03:32:24 24.5162506554098 Gooby 1.0.0
1216
- // points.push(new GLatLng(33.42768,-111.90912)); // (1194 of 1279.0) 2006-01-15T18:14:22Z 12758 03:32:38 24.543195744303 Gooby 1.0.0
1217
- points.push(new GLatLng(33.42741,-111.90914)); // (1195 of 1279.0) 2006-01-15T18:14:32Z 12768 03:32:48 24.5618856663919 Gooby 1.0.0
1218
- // points.push(new GLatLng(33.42704,-111.90912)); // (1196 of 1279.0) 2006-01-15T18:14:45Z 12781 03:33:01 24.5874749049358 Gooby 1.0.0
1219
- // points.push(new GLatLng(33.42676,-111.90912)); // (1197 of 1279.0) 2006-01-15T18:14:55Z 12791 03:33:11 24.6068200157214 Gooby 1.0.0
1220
- // points.push(new GLatLng(33.42642,-111.90914)); // (1198 of 1279.0) 2006-01-15T18:15:08Z 12804 03:33:24 24.6303388355413 Gooby 1.0.0
1221
- // points.push(new GLatLng(33.42612,-111.90912)); // (1199 of 1279.0) 2006-01-15T18:15:19Z 12815 03:33:35 24.6510978123295 Gooby 1.0.0
1222
- // points.push(new GLatLng(33.42582,-111.90914)); // (1200 of 1279.0) 2006-01-15T18:15:29Z 12825 03:33:45 24.6718567891177 Gooby 1.0.0
1223
- points.push(new GLatLng(33.42554,-111.90914)); // (1201 of 1279.0) 2006-01-15T18:15:39Z 12835 03:33:55 24.6912018999033 Gooby 1.0.0
1224
- // points.push(new GLatLng(33.42524,-111.90914)); // (1202 of 1279.0) 2006-01-15T18:15:50Z 12846 03:34:06 24.7119288377198 Gooby 1.0.0
1225
- // points.push(new GLatLng(33.42502,-111.90916)); // (1203 of 1279.0) 2006-01-15T18:15:58Z 12854 03:34:14 24.7271723272513 Gooby 1.0.0
1226
- // points.push(new GLatLng(33.42479,-111.90916)); // (1204 of 1279.0) 2006-01-15T18:16:06Z 12862 03:34:22 24.7430631167945 Gooby 1.0.0
1227
- // points.push(new GLatLng(33.42449,-111.90918)); // (1205 of 1279.0) 2006-01-15T18:16:17Z 12873 03:34:33 24.7638221773895 Gooby 1.0.0
1228
- // points.push(new GLatLng(33.42419,-111.90918)); // (1206 of 1279.0) 2006-01-15T18:16:28Z 12884 03:34:44 24.7845491991423 Gooby 1.0.0
1229
- points.push(new GLatLng(33.42393,-111.90918)); // (1207 of 1279.0) 2006-01-15T18:16:37Z 12893 03:34:53 24.8025125271713 Gooby 1.0.0
1230
- // points.push(new GLatLng(33.42354,-111.90921)); // (1208 of 1279.0) 2006-01-15T18:16:51Z 12907 03:35:07 24.8295130860323 Gooby 1.0.0
1231
- // points.push(new GLatLng(33.42326,-111.90921)); // (1209 of 1279.0) 2006-01-15T18:17:01Z 12917 03:35:17 24.8488583766813 Gooby 1.0.0
1232
- // points.push(new GLatLng(33.42292,-111.90923)); // (1210 of 1279.0) 2006-01-15T18:17:13Z 12929 03:35:29 24.8723771965011 Gooby 1.0.0
1233
- // points.push(new GLatLng(33.42264,-111.90925)); // (1211 of 1279.0) 2006-01-15T18:17:23Z 12939 03:35:39 24.8917566308931 Gooby 1.0.0
1234
- // points.push(new GLatLng(33.42234,-111.90923)); // (1212 of 1279.0) 2006-01-15T18:17:34Z 12950 03:35:50 24.9125156076813 Gooby 1.0.0
1235
- points.push(new GLatLng(33.42211,-111.90925)); // (1213 of 1279.0) 2006-01-15T18:17:43Z 12959 03:35:59 24.9284479458453 Gooby 1.0.0
1236
- // points.push(new GLatLng(33.42206,-111.90929)); // (1214 of 1279.0) 2006-01-15T18:17:45Z 12961 03:36:01 24.9326014170033 Gooby 1.0.0
1237
- // points.push(new GLatLng(33.422,-111.90948)); // (1215 of 1279.0) 2006-01-15T18:17:50Z 12966 03:36:06 24.9443156910326 Gooby 1.0.0
1238
- // points.push(new GLatLng(33.42202,-111.90981)); // (1216 of 1279.0) 2006-01-15T18:18:00Z 12976 03:36:16 24.9633951166266 Gooby 1.0.0
1239
- // points.push(new GLatLng(33.42202,-111.9103)); // (1217 of 1279.0) 2006-01-15T18:18:15Z 12991 03:36:31 24.9916509191752 Gooby 1.0.0
1240
- points.push(new GLatLng(33.42202,-111.91069)); // (1218 of 1279.0) 2006-01-15T18:18:27Z 13003 03:36:43 25.0141402179078 25.0 00:08:43 Gooby 1.0.0
1241
- // points.push(new GLatLng(33.42202,-111.91116)); // (1219 of 1279.0) 2006-01-15T18:18:42Z 13018 03:36:58 25.0412427117793 Gooby 1.0.0
1242
- // points.push(new GLatLng(33.42202,-111.9115)); // (1220 of 1279.0) 2006-01-15T18:18:53Z 13029 03:37:09 25.0608487544249 Gooby 1.0.0
1243
- // points.push(new GLatLng(33.42202,-111.91167)); // (1221 of 1279.0) 2006-01-15T18:18:58Z 13034 03:37:14 25.070651642644 Gooby 1.0.0
1244
- // points.push(new GLatLng(33.42204,-111.91208)); // (1222 of 1279.0) 2006-01-15T18:19:10Z 13046 03:37:26 25.0943345528432 Gooby 1.0.0
1245
- // points.push(new GLatLng(33.422,-111.91257)); // (1223 of 1279.0) 2006-01-15T18:19:25Z 13061 03:37:41 25.1227252439705 Gooby 1.0.0
1246
- points.push(new GLatLng(33.42198,-111.913)); // (1224 of 1279.0) 2006-01-15T18:19:38Z 13074 03:37:54 25.1475596347089 Gooby 1.0.0
1247
- // points.push(new GLatLng(33.422,-111.91348)); // (1225 of 1279.0) 2006-01-15T18:19:52Z 13088 03:38:08 25.175273272608 Gooby 1.0.0
1248
- // points.push(new GLatLng(33.422,-111.91397)); // (1226 of 1279.0) 2006-01-15T18:20:07Z 13103 03:38:23 25.2035290751566 Gooby 1.0.0
1249
- // points.push(new GLatLng(33.42202,-111.91448)); // (1227 of 1279.0) 2006-01-15T18:20:23Z 13119 03:38:39 25.2329706130686 Gooby 1.0.0
1250
- // points.push(new GLatLng(33.42204,-111.91498)); // (1228 of 1279.0) 2006-01-15T18:20:38Z 13134 03:38:54 25.2618361651205 Gooby 1.0.0
1251
- // points.push(new GLatLng(33.42202,-111.91536)); // (1229 of 1279.0) 2006-01-15T18:20:50Z 13146 03:39:06 25.2837924101237 Gooby 1.0.0
1252
- points.push(new GLatLng(33.422,-111.91579)); // (1230 of 1279.0) 2006-01-15T18:21:03Z 13159 03:39:19 25.3086268008621 Gooby 1.0.0
1253
- // points.push(new GLatLng(33.422,-111.91627)); // (1231 of 1279.0) 2006-01-15T18:21:18Z 13174 03:39:34 25.3363059533843 Gooby 1.0.0
1254
- // points.push(new GLatLng(33.42202,-111.91672)); // (1232 of 1279.0) 2006-01-15T18:21:32Z 13188 03:39:48 25.362291950061 Gooby 1.0.0
1255
- // points.push(new GLatLng(33.42204,-111.91715)); // (1233 of 1279.0) 2006-01-15T18:21:46Z 13202 03:40:02 25.3871263407995 Gooby 1.0.0
1256
- // points.push(new GLatLng(33.42204,-111.91764)); // (1234 of 1279.0) 2006-01-15T18:22:01Z 13217 03:40:17 25.4153822664904 Gooby 1.0.0
1257
- // points.push(new GLatLng(33.42202,-111.91805)); // (1235 of 1279.0) 2006-01-15T18:22:14Z 13230 03:40:30 25.4390651766896 Gooby 1.0.0
1258
- points.push(new GLatLng(33.42204,-111.91843)); // (1236 of 1279.0) 2006-01-15T18:22:26Z 13242 03:40:42 25.4610214216927 Gooby 1.0.0
1259
- // points.push(new GLatLng(33.42204,-111.91884)); // (1237 of 1279.0) 2006-01-15T18:22:39Z 13255 03:40:55 25.4846640415506 Gooby 1.0.0
1260
- // points.push(new GLatLng(33.42206,-111.91925)); // (1238 of 1279.0) 2006-01-15T18:22:52Z 13268 03:41:08 25.5083470252097 Gooby 1.0.0
1261
- // points.push(new GLatLng(33.42206,-111.91972)); // (1239 of 1279.0) 2006-01-15T18:23:07Z 13283 03:41:23 25.5354495832725 Gooby 1.0.0
1262
- // points.push(new GLatLng(33.42204,-111.92015)); // (1240 of 1279.0) 2006-01-15T18:23:21Z 13297 03:41:37 25.5602840440647 Gooby 1.0.0
1263
- // points.push(new GLatLng(33.42204,-111.9206)); // (1241 of 1279.0) 2006-01-15T18:23:37Z 13313 03:41:53 25.5862333265504 Gooby 1.0.0
1264
- points.push(new GLatLng(33.42202,-111.92105)); // (1242 of 1279.0) 2006-01-15T18:23:51Z 13327 03:42:07 25.6122193232271 Gooby 1.0.0
1265
- // points.push(new GLatLng(33.42202,-111.92148)); // (1243 of 1279.0) 2006-01-15T18:24:05Z 13341 03:42:21 25.6370152245435 Gooby 1.0.0
1266
- // points.push(new GLatLng(33.42204,-111.92193)); // (1244 of 1279.0) 2006-01-15T18:24:20Z 13356 03:42:36 25.6630012212202 Gooby 1.0.0
1267
- // points.push(new GLatLng(33.42204,-111.92238)); // (1245 of 1279.0) 2006-01-15T18:24:34Z 13370 03:42:50 25.6889505037059 Gooby 1.0.0
1268
- // points.push(new GLatLng(33.42202,-111.92283)); // (1246 of 1279.0) 2006-01-15T18:24:48Z 13384 03:43:04 25.7149365003826 Gooby 1.0.0
1269
- // points.push(new GLatLng(33.422,-111.92324)); // (1247 of 1279.0) 2006-01-15T18:25:01Z 13397 03:43:17 25.7386194105818 Gooby 1.0.0
1270
- points.push(new GLatLng(33.42202,-111.92371)); // (1248 of 1279.0) 2006-01-15T18:25:16Z 13412 03:43:32 25.7657571226319 Gooby 1.0.0
1271
- // points.push(new GLatLng(33.42204,-111.92414)); // (1249 of 1279.0) 2006-01-15T18:25:30Z 13426 03:43:46 25.7905915133703 Gooby 1.0.0
1272
- // points.push(new GLatLng(33.42204,-111.92459)); // (1250 of 1279.0) 2006-01-15T18:25:44Z 13440 03:44:00 25.8165407958559 Gooby 1.0.0
1273
- // points.push(new GLatLng(33.42206,-111.92498)); // (1251 of 1279.0) 2006-01-15T18:25:56Z 13452 03:44:12 25.8390726017807 Gooby 1.0.0
1274
- // points.push(new GLatLng(33.42206,-111.92549)); // (1252 of 1279.0) 2006-01-15T18:26:11Z 13467 03:44:27 25.868481739695 Gooby 1.0.0
1275
- // points.push(new GLatLng(33.42206,-111.92596)); // (1253 of 1279.0) 2006-01-15T18:26:26Z 13482 03:44:42 25.8955842977578 Gooby 1.0.0
1276
- points.push(new GLatLng(33.42206,-111.9262)); // (1254 of 1279.0) 2006-01-15T18:26:34Z 13490 03:44:50 25.9094239368728 Gooby 1.0.0
1277
- // points.push(new GLatLng(33.42219,-111.92629)); // (1255 of 1279.0) 2006-01-15T18:26:39Z 13495 03:44:55 25.9197973055568 Gooby 1.0.0
1278
- // points.push(new GLatLng(33.42223,-111.92629)); // (1256 of 1279.0) 2006-01-15T18:26:41Z 13497 03:44:57 25.9225602760659 Gooby 1.0.0
1279
- // points.push(new GLatLng(33.42245,-111.92633)); // (1257 of 1279.0) 2006-01-15T18:26:47Z 13503 03:45:03 25.9379341158832 Gooby 1.0.0
1280
- // points.push(new GLatLng(33.42283,-111.92641)); // (1258 of 1279.0) 2006-01-15T18:27:00Z 13516 03:45:16 25.964590466606 Gooby 1.0.0
1281
- // points.push(new GLatLng(33.42333,-111.92646)); // (1259 of 1279.0) 2006-01-15T18:27:16Z 13532 03:45:32 25.9992555356371 Gooby 1.0.0
1282
- points.push(new GLatLng(33.42382,-111.92646)); // (1260 of 1279.0) 2006-01-15T18:27:33Z 13549 03:45:49 26.0331096272572 26.0 00:09:06 Gooby 1.0.0
1283
- // points.push(new GLatLng(33.42425,-111.92648)); // (1261 of 1279.0) 2006-01-15T18:27:48Z 13564 03:46:04 26.0628407082088 Gooby 1.0.0
1284
- // points.push(new GLatLng(33.42451,-111.92652)); // (1262 of 1279.0) 2006-01-15T18:27:58Z 13574 03:46:14 26.0809516103687 Gooby 1.0.0
1285
- // points.push(new GLatLng(33.42455,-111.92674)); // (1263 of 1279.0) 2006-01-15T18:28:05Z 13581 03:46:21 26.0939352324119 Gooby 1.0.0
1286
- // points.push(new GLatLng(33.42453,-111.92717)); // (1264 of 1279.0) 2006-01-15T18:28:16Z 13592 03:46:32 26.1187689226014 Gooby 1.0.0
1287
- // points.push(new GLatLng(33.42451,-111.92772)); // (1265 of 1279.0) 2006-01-15T18:28:32Z 13608 03:46:48 26.1505138590308 Gooby 1.0.0
1288
- points.push(new GLatLng(33.42451,-111.92817)); // (1266 of 1279.0) 2006-01-15T18:28:45Z 13621 03:47:01 26.1764624710668 Gooby 1.0.0
1289
- // points.push(new GLatLng(33.4244,-111.92873)); // (1267 of 1279.0) 2006-01-15T18:29:02Z 13638 03:47:18 26.2096362675523 Gooby 1.0.0
1290
- // points.push(new GLatLng(33.42434,-111.9291)); // (1268 of 1279.0) 2006-01-15T18:29:14Z 13650 03:47:30 26.2313707173653 Gooby 1.0.0
1291
- // points.push(new GLatLng(33.42436,-111.92916)); // (1269 of 1279.0) 2006-01-15T18:29:16Z 13652 03:47:32 26.2350957965808 Gooby 1.0.0
1292
- // points.push(new GLatLng(33.42455,-111.92923)); // (1270 of 1279.0) 2006-01-15T18:29:22Z 13658 03:47:38 26.2488293087986 Gooby 1.0.0
1293
- // points.push(new GLatLng(33.42485,-111.92927)); // (1271 of 1279.0) 2006-01-15T18:29:32Z 13668 03:47:48 26.2696841905994 Gooby 1.0.0
1294
- points.push(new GLatLng(33.42539,-111.92929)); // (1272 of 1279.0) 2006-01-15T18:29:50Z 13686 03:48:06 26.3070105659075 Gooby 1.0.0
1295
- // points.push(new GLatLng(33.42567,-111.92929)); // (1273 of 1279.0) 2006-01-15T18:30:03Z 13699 03:48:19 26.3263558565564 Gooby 1.0.0
1296
- // points.push(new GLatLng(33.42569,-111.92929)); // (1274 of 1279.0) 2006-01-15T18:30:05Z 13701 03:48:21 26.3277392295166 Gooby 1.0.0
1297
- // points.push(new GLatLng(33.42573,-111.92929)); // (1275 of 1279.0) 2006-01-15T18:30:11Z 13707 03:48:27 26.3305034590691 Gooby 1.0.0
1298
- // points.push(new GLatLng(33.42586,-111.92929)); // (1276 of 1279.0) 2006-01-15T18:30:28Z 13724 03:48:44 26.3394850262332 Gooby 1.0.0
1299
- // points.push(new GLatLng(33.42599,-111.92927)); // (1277 of 1279.0) 2006-01-15T18:30:48Z 13744 03:49:04 26.3485402851896 Gooby 1.0.0
1300
- points.push(new GLatLng(33.42601,-111.92925)); // (1278 of 1279.0) 2006-01-15T18:30:55Z 13751 03:49:11 26.3503401205434 Gooby 1.0.0
1301
- points.push(new GLatLng(33.42601,-111.92927)); // (1279 of 1279.0) 2006-01-15T18:31:10Z 13766 03:49:26 26.3514930151813 Gooby 1.0.0
1302
-
1303
- var routePolyline = new GPolyline(points);
1304
- map.addOverlay(routePolyline);
1305
-
1306
- // Create a base icon for all of our markers that specifies the
1307
- // shadow, icon dimensions, etc.
1308
- var baseIcon = new GIcon();
1309
- baseIcon.shadow = "http://www.joakim-systems.com/gicons/shadow50.png";
1310
- baseIcon.iconSize = new GSize(20, 34);
1311
- baseIcon.shadowSize = new GSize(37, 34);
1312
- baseIcon.iconAnchor = new GPoint(9, 34);
1313
- baseIcon.infoWindowAnchor = new GPoint(9, 2);
1314
- baseIcon.infoShadowAnchor = new GPoint(18, 25);
1315
-
1316
- var iconStart = new GIcon(baseIcon);
1317
- iconStart.image = "http://www.joakim-systems.com/gicons/dd-start.png";
1318
- var pStart = new GPoint(-112.09089, 33.4482);
1319
- var mStart = new GMarker(pStart, iconStart);
1320
- GEvent.addListener(mStart, "click", function() {
1321
- mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td>0.0</td></tr><tr><td>Time of Day: </td><td>2006-01-15T14:41:44Z </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>33.4482 , -112.09089 </td></tr><tr><td>Altitude: </td><td>325.063m </td></tr></table>");
1322
- });
1323
- map.addOverlay(mStart);
1324
-
1325
- var icon1 = new GIcon(baseIcon);
1326
- icon1.image = "http://www.joakim-systems.com/gicons/marker1.png";
1327
- var p1 = new GPoint(-112.08258, 33.4559);
1328
- var m1 = new GMarker(p1, icon1);
1329
- GEvent.addListener(m1, "click", function() {
1330
- m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.0070480678755</td></tr><tr><td>Time of Day: </td><td>2006-01-15T14:50:26Z </td></tr><tr><td>Elapsed Time: </td><td>00:08:42 </td></tr><tr><td>Average Pace: </td><td>8:38.3 </td></tr><tr><td>Lat/Lng: </td><td>33.4559 , -112.08258 </td></tr><tr><td>Altitude: </td><td>321.218m </td></tr></table>");
1331
- });
1332
- map.addOverlay(m1);
1333
-
1334
- var icon2 = new GIcon(baseIcon);
1335
- icon2.image = "http://www.joakim-systems.com/gicons/marker2.png";
1336
- var p2 = new GPoint(-112.08282, 33.47039);
1337
- var m2 = new GMarker(p2, icon2);
1338
- GEvent.addListener(m2, "click", function() {
1339
- m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.01027199658201</td></tr><tr><td>Time of Day: </td><td>2006-01-15T14:59:02Z </td></tr><tr><td>Elapsed Time: </td><td>00:17:18 </td></tr><tr><td>Average Pace: </td><td>8:36.3 </td></tr><tr><td>Lat/Lng: </td><td>33.47039 , -112.08282 </td></tr><tr><td>Altitude: </td><td>321.698m </td></tr></table>");
1340
- });
1341
- map.addOverlay(m2);
1342
-
1343
- var icon3 = new GIcon(baseIcon);
1344
- icon3.image = "http://www.joakim-systems.com/gicons/marker3.png";
1345
- var p3 = new GPoint(-112.08316, 33.48472);
1346
- var m3 = new GMarker(p3, icon3);
1347
- GEvent.addListener(m3, "click", function() {
1348
- m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00302631956892</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:07:43Z </td></tr><tr><td>Elapsed Time: </td><td>00:25:59 </td></tr><tr><td>Average Pace: </td><td>8:39.1 </td></tr><tr><td>Lat/Lng: </td><td>33.48472 , -112.08316 </td></tr><tr><td>Altitude: </td><td>330.35m </td></tr></table>");
1349
- });
1350
- map.addOverlay(m3);
1351
-
1352
- var icon4 = new GIcon(baseIcon);
1353
- icon4.image = "http://www.joakim-systems.com/gicons/marker4.png";
1354
- var p4 = new GPoint(-112.08288, 33.49903);
1355
- var m4 = new GMarker(p4, icon4);
1356
- GEvent.addListener(m4, "click", function() {
1357
- m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.0029683466179</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:16:20Z </td></tr><tr><td>Elapsed Time: </td><td>00:34:36 </td></tr><tr><td>Average Pace: </td><td>8:38.6 </td></tr><tr><td>Lat/Lng: </td><td>33.49903 , -112.08288 </td></tr><tr><td>Altitude: </td><td>321.218m </td></tr></table>");
1358
- });
1359
- map.addOverlay(m4);
1360
-
1361
- var icon5 = new GIcon(baseIcon);
1362
- icon5.image = "http://www.joakim-systems.com/gicons/marker5.png";
1363
- var p5 = new GPoint(-112.0825, 33.51364);
1364
- var m5 = new GMarker(p5, icon5);
1365
- GEvent.addListener(m5, "click", function() {
1366
- m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.0170713050673</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:25:08Z </td></tr><tr><td>Elapsed Time: </td><td>00:43:24 </td></tr><tr><td>Average Pace: </td><td>8:39.0 </td></tr><tr><td>Lat/Lng: </td><td>33.51364 , -112.0825 </td></tr><tr><td>Altitude: </td><td>339.002m </td></tr></table>");
1367
- });
1368
- map.addOverlay(m5);
1369
-
1370
- var icon6 = new GIcon(baseIcon);
1371
- icon6.image = "http://www.joakim-systems.com/gicons/marker6.png";
1372
- var p6 = new GPoint(-112.06864, 33.51652);
1373
- var m6 = new GMarker(p6, icon6);
1374
- GEvent.addListener(m6, "click", function() {
1375
- m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.0150512126733</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:33:48Z </td></tr><tr><td>Elapsed Time: </td><td>00:52:04 </td></tr><tr><td>Average Pace: </td><td>8:39.4 </td></tr><tr><td>Lat/Lng: </td><td>33.51652 , -112.06864 </td></tr><tr><td>Altitude: </td><td>344.77m </td></tr></table>");
1376
- });
1377
- map.addOverlay(m6);
1378
-
1379
- var icon7 = new GIcon(baseIcon);
1380
- icon7.image = "http://www.joakim-systems.com/gicons/marker7.png";
1381
- var p7 = new GPoint(-112.05143, 33.51648);
1382
- var m7 = new GMarker(p7, icon7);
1383
- GEvent.addListener(m7, "click", function() {
1384
- m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.00799868928515</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:42:31Z </td></tr><tr><td>Elapsed Time: </td><td>01:00:47 </td></tr><tr><td>Average Pace: </td><td>8:40.4 </td></tr><tr><td>Lat/Lng: </td><td>33.51648 , -112.05143 </td></tr><tr><td>Altitude: </td><td>349.577m </td></tr></table>");
1385
- });
1386
- map.addOverlay(m7);
1387
-
1388
- var icon8 = new GIcon(baseIcon);
1389
- icon8.image = "http://www.joakim-systems.com/gicons/marker8.png";
1390
- var p8 = new GPoint(-112.03415, 33.5166);
1391
- var m8 = new GMarker(p8, icon8);
1392
- GEvent.addListener(m8, "click", function() {
1393
- m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.0055958970116</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:51:14Z </td></tr><tr><td>Elapsed Time: </td><td>01:09:30 </td></tr><tr><td>Average Pace: </td><td>8:40.9 </td></tr><tr><td>Lat/Lng: </td><td>33.5166 , -112.03415 </td></tr><tr><td>Altitude: </td><td>355.344m </td></tr></table>");
1394
- });
1395
- map.addOverlay(m8);
1396
-
1397
- var icon9 = new GIcon(baseIcon);
1398
- icon9.image = "http://www.joakim-systems.com/gicons/marker9.png";
1399
- var p9 = new GPoint(-112.02527, 33.50952);
1400
- var m9 = new GMarker(p9, icon9);
1401
- GEvent.addListener(m9, "click", function() {
1402
- m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.01625908213699</td></tr><tr><td>Time of Day: </td><td>2006-01-15T15:59:45Z </td></tr><tr><td>Elapsed Time: </td><td>01:18:01 </td></tr><tr><td>Average Pace: </td><td>8:39.2 </td></tr><tr><td>Lat/Lng: </td><td>33.50952 , -112.02527 </td></tr><tr><td>Altitude: </td><td>358.709m </td></tr></table>");
1403
- });
1404
- map.addOverlay(m9);
1405
-
1406
- var icon10 = new GIcon(baseIcon);
1407
- icon10.image = "http://www.joakim-systems.com/gicons/marker10.png";
1408
- var p10 = new GPoint(-112.00853, 33.51);
1409
- var m10 = new GMarker(p10, icon10);
1410
- GEvent.addListener(m10, "click", function() {
1411
- m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0042280139531</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:08:17Z </td></tr><tr><td>Elapsed Time: </td><td>01:26:33 </td></tr><tr><td>Average Pace: </td><td>8:39.1 </td></tr><tr><td>Lat/Lng: </td><td>33.51 , -112.00853 </td></tr><tr><td>Altitude: </td><td>371.206m </td></tr></table>");
1412
- });
1413
- map.addOverlay(m10);
1414
-
1415
- var icon11 = new GIcon(baseIcon);
1416
- icon11.image = "http://www.joakim-systems.com/gicons/marker11.png";
1417
- var p11 = new GPoint(-111.9912, 33.50967);
1418
- var m11 = new GMarker(p11, icon11);
1419
- GEvent.addListener(m11, "click", function() {
1420
- m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0070855549589</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:17:05Z </td></tr><tr><td>Elapsed Time: </td><td>01:35:21 </td></tr><tr><td>Average Pace: </td><td>8:39.8 </td></tr><tr><td>Lat/Lng: </td><td>33.50967 , -111.9912 </td></tr><tr><td>Altitude: </td><td>377.935m </td></tr></table>");
1421
- });
1422
- map.addOverlay(m11);
1423
-
1424
- var icon12 = new GIcon(baseIcon);
1425
- icon12.image = "http://www.joakim-systems.com/gicons/marker12.png";
1426
- var p12 = new GPoint(-111.9869, 33.4986);
1427
- var m12 = new GMarker(p12, icon12);
1428
- GEvent.addListener(m12, "click", function() {
1429
- m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0049259018489</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:25:34Z </td></tr><tr><td>Elapsed Time: </td><td>01:43:50 </td></tr><tr><td>Average Pace: </td><td>8:39.0 </td></tr><tr><td>Lat/Lng: </td><td>33.4986 , -111.9869 </td></tr><tr><td>Altitude: </td><td>376.974m </td></tr></table>");
1430
- });
1431
- map.addOverlay(m12);
1432
-
1433
- var icon13 = new GIcon(baseIcon);
1434
- icon13.image = "http://www.joakim-systems.com/gicons/marker13.png";
1435
- var p13 = new GPoint(-111.98699, 33.48412);
1436
- var m13 = new GMarker(p13, icon13);
1437
- GEvent.addListener(m13, "click", function() {
1438
- m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0060927100388</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:34:09Z </td></tr><tr><td>Elapsed Time: </td><td>01:52:25 </td></tr><tr><td>Average Pace: </td><td>8:38.6 </td></tr><tr><td>Lat/Lng: </td><td>33.48412 , -111.98699 </td></tr><tr><td>Altitude: </td><td>368.803m </td></tr></table>");
1439
- });
1440
- map.addOverlay(m13);
1441
-
1442
- var icon14 = new GIcon(baseIcon);
1443
- icon14.image = "http://www.joakim-systems.com/gicons/marker14.png";
1444
- var p14 = new GPoint(-111.98313, 33.4729);
1445
- var m14 = new GMarker(p14, icon14);
1446
- GEvent.addListener(m14, "click", function() {
1447
- m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 14</b></td></tr><tr><td>Distance: </td><td>14.0056445932232</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:42:50Z </td></tr><tr><td>Elapsed Time: </td><td>02:01:06 </td></tr><tr><td>Average Pace: </td><td>8:38.8 </td></tr><tr><td>Lat/Lng: </td><td>33.4729 , -111.98313 </td></tr><tr><td>Altitude: </td><td>358.228m </td></tr></table>");
1448
- });
1449
- map.addOverlay(m14);
1450
-
1451
- var icon15 = new GIcon(baseIcon);
1452
- icon15.image = "http://www.joakim-systems.com/gicons/marker15.png";
1453
- var p15 = new GPoint(-111.97809, 33.4836);
1454
- var m15 = new GMarker(p15, icon15);
1455
- GEvent.addListener(m15, "click", function() {
1456
- m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 15</b></td></tr><tr><td>Distance: </td><td>15.0154783729364</td></tr><tr><td>Time of Day: </td><td>2006-01-15T16:51:33Z </td></tr><tr><td>Elapsed Time: </td><td>02:09:49 </td></tr><tr><td>Average Pace: </td><td>8:38.7 </td></tr><tr><td>Lat/Lng: </td><td>33.4836 , -111.97809 </td></tr><tr><td>Altitude: </td><td>368.803m </td></tr></table>");
1457
- });
1458
- map.addOverlay(m15);
1459
-
1460
- var icon16 = new GIcon(baseIcon);
1461
- icon16.image = "http://www.joakim-systems.com/gicons/marker16.png";
1462
- var p16 = new GPoint(-111.97422, 33.49425);
1463
- var m16 = new GMarker(p16, icon16);
1464
- GEvent.addListener(m16, "click", function() {
1465
- m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 16</b></td></tr><tr><td>Distance: </td><td>16.0048549522358</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:00:14Z </td></tr><tr><td>Elapsed Time: </td><td>02:18:30 </td></tr><tr><td>Average Pace: </td><td>8:39.2 </td></tr><tr><td>Lat/Lng: </td><td>33.49425 , -111.97422 </td></tr><tr><td>Altitude: </td><td>375.052m </td></tr></table>");
1466
- });
1467
- map.addOverlay(m16);
1468
-
1469
- var icon17 = new GIcon(baseIcon);
1470
- icon17.image = "http://www.joakim-systems.com/gicons/marker17.png";
1471
- var p17 = new GPoint(-111.95864, 33.48933);
1472
- var m17 = new GMarker(p17, icon17);
1473
- GEvent.addListener(m17, "click", function() {
1474
- m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 17</b></td></tr><tr><td>Distance: </td><td>17.0024462349807</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:09:03Z </td></tr><tr><td>Elapsed Time: </td><td>02:27:19 </td></tr><tr><td>Average Pace: </td><td>8:39.9 </td></tr><tr><td>Lat/Lng: </td><td>33.48933 , -111.95864 </td></tr><tr><td>Altitude: </td><td>380.819m </td></tr></table>");
1475
- });
1476
- map.addOverlay(m17);
1477
-
1478
- var icon18 = new GIcon(baseIcon);
1479
- icon18.image = "http://www.joakim-systems.com/gicons/marker18.png";
1480
- var p18 = new GPoint(-111.94208, 33.49075);
1481
- var m18 = new GMarker(p18, icon18);
1482
- GEvent.addListener(m18, "click", function() {
1483
- m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 18</b></td></tr><tr><td>Distance: </td><td>18.008158710711</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:17:57Z </td></tr><tr><td>Elapsed Time: </td><td>02:36:13 </td></tr><tr><td>Average Pace: </td><td>8:40.5 </td></tr><tr><td>Lat/Lng: </td><td>33.49075 , -111.94208 </td></tr><tr><td>Altitude: </td><td>381.3m </td></tr></table>");
1484
- });
1485
- map.addOverlay(m18);
1486
-
1487
- var icon19 = new GIcon(baseIcon);
1488
- icon19.image = "http://www.joakim-systems.com/gicons/marker19.png";
1489
- var p19 = new GPoint(-111.92826, 33.49272);
1490
- var m19 = new GMarker(p19, icon19);
1491
- GEvent.addListener(m19, "click", function() {
1492
- m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 19</b></td></tr><tr><td>Distance: </td><td>19.002473750158</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:26:27Z </td></tr><tr><td>Elapsed Time: </td><td>02:44:43 </td></tr><tr><td>Average Pace: </td><td>8:40.1 </td></tr><tr><td>Lat/Lng: </td><td>33.49272 , -111.92826 </td></tr><tr><td>Altitude: </td><td>379.858m </td></tr></table>");
1493
- });
1494
- map.addOverlay(m19);
1495
-
1496
- var icon20 = new GIcon(baseIcon);
1497
- icon20.image = "http://www.joakim-systems.com/gicons/marker20.png";
1498
- var p20 = new GPoint(-111.92624, 33.47893);
1499
- var m20 = new GMarker(p20, icon20);
1500
- GEvent.addListener(m20, "click", function() {
1501
- m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 20</b></td></tr><tr><td>Distance: </td><td>20.0123150270121</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:35:15Z </td></tr><tr><td>Elapsed Time: </td><td>02:53:31 </td></tr><tr><td>Average Pace: </td><td>8:40.2 </td></tr><tr><td>Lat/Lng: </td><td>33.47893 , -111.92624 </td></tr><tr><td>Altitude: </td><td>374.571m </td></tr></table>");
1502
- });
1503
- map.addOverlay(m20);
1504
-
1505
- var icon21 = new GIcon(baseIcon);
1506
- icon21.image = "http://www.joakim-systems.com/gicons/marker21.png";
1507
- var p21 = new GPoint(-111.92457, 33.46571);
1508
- var m21 = new GMarker(p21, icon21);
1509
- GEvent.addListener(m21, "click", function() {
1510
- m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 21</b></td></tr><tr><td>Distance: </td><td>21.0164250162805</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:44:00Z </td></tr><tr><td>Elapsed Time: </td><td>03:02:16 </td></tr><tr><td>Average Pace: </td><td>8:40.4 </td></tr><tr><td>Lat/Lng: </td><td>33.46571 , -111.92457 </td></tr><tr><td>Altitude: </td><td>369.284m </td></tr></table>");
1511
- });
1512
- map.addOverlay(m21);
1513
-
1514
- var icon22 = new GIcon(baseIcon);
1515
- icon22.image = "http://www.joakim-systems.com/gicons/marker22.png";
1516
- var p22 = new GPoint(-111.90897, 33.46423);
1517
- var m22 = new GMarker(p22, icon22);
1518
- GEvent.addListener(m22, "click", function() {
1519
- m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 22</b></td></tr><tr><td>Distance: </td><td>22.0139923102199</td></tr><tr><td>Time of Day: </td><td>2006-01-15T17:52:29Z </td></tr><tr><td>Elapsed Time: </td><td>03:10:45 </td></tr><tr><td>Average Pace: </td><td>8:39.9 </td></tr><tr><td>Lat/Lng: </td><td>33.46423 , -111.90897 </td></tr><tr><td>Altitude: </td><td>368.322m </td></tr></table>");
1520
- });
1521
- map.addOverlay(m22);
1522
-
1523
- var icon23 = new GIcon(baseIcon);
1524
- icon23.image = "http://www.joakim-systems.com/gicons/marker23.png";
1525
- var p23 = new GPoint(-111.9094, 33.4497);
1526
- var m23 = new GMarker(p23, icon23);
1527
- GEvent.addListener(m23, "click", function() {
1528
- m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 23</b></td></tr><tr><td>Distance: </td><td>23.0190843238382</td></tr><tr><td>Time of Day: </td><td>2006-01-15T18:01:08Z </td></tr><tr><td>Elapsed Time: </td><td>03:19:24 </td></tr><tr><td>Average Pace: </td><td>8:39.7 </td></tr><tr><td>Lat/Lng: </td><td>33.4497 , -111.9094 </td></tr><tr><td>Altitude: </td><td>361.112m </td></tr></table>");
1529
- });
1530
- map.addOverlay(m23);
1531
-
1532
- var icon24 = new GIcon(baseIcon);
1533
- icon24.image = "http://www.joakim-systems.com/gicons/marker24.png";
1534
- var p24 = new GPoint(-111.90957, 33.43537);
1535
- var m24 = new GMarker(p24, icon24);
1536
- GEvent.addListener(m24, "click", function() {
1537
- m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 24</b></td></tr><tr><td>Distance: </td><td>24.0105627956912</td></tr><tr><td>Time of Day: </td><td>2006-01-15T18:09:44Z </td></tr><tr><td>Elapsed Time: </td><td>03:28:00 </td></tr><tr><td>Average Pace: </td><td>8:39.8 </td></tr><tr><td>Lat/Lng: </td><td>33.43537 , -111.90957 </td></tr><tr><td>Altitude: </td><td>363.516m </td></tr></table>");
1538
- });
1539
- map.addOverlay(m24);
1540
-
1541
- var icon25 = new GIcon(baseIcon);
1542
- icon25.image = "http://www.joakim-systems.com/gicons/marker25.png";
1543
- var p25 = new GPoint(-111.91069, 33.42202);
1544
- var m25 = new GMarker(p25, icon25);
1545
- GEvent.addListener(m25, "click", function() {
1546
- m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 25</b></td></tr><tr><td>Distance: </td><td>25.0141402179078</td></tr><tr><td>Time of Day: </td><td>2006-01-15T18:18:27Z </td></tr><tr><td>Elapsed Time: </td><td>03:36:43 </td></tr><tr><td>Average Pace: </td><td>8:39.8 </td></tr><tr><td>Lat/Lng: </td><td>33.42202 , -111.91069 </td></tr><tr><td>Altitude: </td><td>360.632m </td></tr></table>");
1547
- });
1548
- map.addOverlay(m25);
1549
-
1550
- var icon26 = new GIcon(baseIcon);
1551
- icon26.image = "http://www.joakim-systems.com/gicons/marker26.png";
1552
- var p26 = new GPoint(-111.92646, 33.42382);
1553
- var m26 = new GMarker(p26, icon26);
1554
- GEvent.addListener(m26, "click", function() {
1555
- m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 26</b></td></tr><tr><td>Distance: </td><td>26.0331096272572</td></tr><tr><td>Time of Day: </td><td>2006-01-15T18:27:33Z </td></tr><tr><td>Elapsed Time: </td><td>03:45:49 </td></tr><tr><td>Average Pace: </td><td>8:40.5 </td></tr><tr><td>Lat/Lng: </td><td>33.42382 , -111.92646 </td></tr><tr><td>Altitude: </td><td>348.615m </td></tr></table>");
1556
- });
1557
- map.addOverlay(m26);
1558
-
1559
- var iconFinish = new GIcon(baseIcon);
1560
- iconFinish.image = "http://www.joakim-systems.com/gicons/dd-end.png";
1561
- var pFinish = new GPoint(-111.92927, 33.42601);
1562
- var mFinish = new GMarker(pFinish, iconFinish);
1563
- GEvent.addListener(mFinish, "click", function() {
1564
- mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>26.3514930151813</td></tr><tr><td>Time of Day: </td><td>2006-01-15T18:31:10Z </td></tr><tr><td>Elapsed Time: </td><td>03:49:26 </td></tr><tr><td>Average Pace: </td><td>8:42.4 </td></tr><tr><td>Lat/Lng: </td><td>33.42601 , -111.92927 </td></tr><tr><td>Altitude: </td><td>347.654m </td></tr></table>");
1565
- });
1566
- map.addOverlay(mFinish);
1567
-
1568
-
1569
-
1570
-
1571
- GEvent.addListener(map, "click", function() {
1572
- var center = map.getCenter();
1573
-
1574
- document.getElementById("messages").innerHTML = 'click: ' + center.toString();
1575
- });
1576
- GEvent.addListener(map, "moveend", function() {
1577
- var center = map.getCenter();
1578
-
1579
- document.getElementById("messages").innerHTML = 'moveend: ' + center.toString();
1580
- });
1581
-
1582
- }
1583
- }
1584
- //]]>
1585
-
1586
- </script>
1587
- </head>
1588
- <body onload="load()" onunload="GUnload()">
1589
- <center>
1590
- <h3> 2006/01/15 - Phoenix Marathon </h3>
1591
- <h5> Generated by Gooby Thu Mar 15 06:15:14 EDT 2007 <br> Gooby = Google APIs + Ruby </h5>
1592
- <div id="map" style="width: 900px; height: 600px"></div>
1593
- <div id="messages"></div>
1594
- </center>
1595
- </body>
1596
- </html>