tf1_converter 0.5.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,8 @@
2
2
  *.DS_Store
3
3
  pkg/*
4
4
  output/*
5
+ output.kml
6
+ spec/fixtures/*.csv
7
+ spec/fixtures/test.kml
8
+ spec/fixtures/waypoint-by-name.kml
9
+ spec/fixtures/ftwood2.kml
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tf1_converter (0.5.0)
4
+ tf1_converter (0.6.1)
5
5
  builder
6
6
  geo_swap (= 0.2.1)
7
7
  nokogiri
data/example/config.yml CHANGED
@@ -30,4 +30,10 @@ tf1_converter:
30
30
  Residence: { icon: default.png, meaning: Default, name: icon_name_24 } }
31
31
  colors: { DarkRed: f0000080,
32
32
  Yellow: f000ffff,
33
- Blue: f0ff0000 }
33
+ Blue: f0ff0000,
34
+ Red: f01400ff,
35
+ Orange: f014b4ff,
36
+ Green: f000b414,
37
+ Purple: f0ff7878,
38
+ Pink: f0ff78f0 }
39
+
@@ -67,7 +67,7 @@ module TF1Converter
67
67
  def write_track_xml(track, xml)
68
68
  xml.Style(id: "#{track.name}_Style") do
69
69
  xml.LineStyle do
70
- xml.color track.display_color
70
+ xml.color next_color
71
71
  xml.width 3
72
72
  end
73
73
  end
@@ -99,5 +99,16 @@ module TF1Converter
99
99
  desc << "<br>" << "#{Config.start_path} - #{Config.end_path}"
100
100
  end
101
101
 
102
+ def next_color
103
+ @colors ||= Config.colors.values
104
+ @color_index ||= 0
105
+ return_color = @colors[@color_index]
106
+ @color_index += 1
107
+ if @color_index >= @colors.length
108
+ @color_index = 0
109
+ end
110
+ return_color
111
+ end
112
+
102
113
  end
103
114
  end
@@ -1,3 +1,3 @@
1
1
  module TF1Converter
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.1"
3
3
  end
@@ -275,7 +275,7 @@
275
275
  </Placemark>
276
276
  <Style id="ACTIVE LOG 002_Style">
277
277
  <LineStyle>
278
- <color>f000ffff</color>
278
+ <color>f0ff0000</color>
279
279
  <width>3</width>
280
280
  </LineStyle>
281
281
  </Style>
@@ -292,7 +292,7 @@
292
292
  </Placemark>
293
293
  <Style id="ACTIVE LOG 003_Style">
294
294
  <LineStyle>
295
- <color>f000ffff</color>
295
+ <color>f01400ff</color>
296
296
  <width>3</width>
297
297
  </LineStyle>
298
298
  </Style>
@@ -309,7 +309,7 @@
309
309
  </Placemark>
310
310
  <Style id="ACTIVE LOG 004_Style">
311
311
  <LineStyle>
312
- <color>f000ffff</color>
312
+ <color>f014b4ff</color>
313
313
  <width>3</width>
314
314
  </LineStyle>
315
315
  </Style>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tf1_converter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-21 00:00:00.000000000 Z
12
+ date: 2013-02-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -171,12 +171,9 @@ files:
171
171
  - output/test.kml
172
172
  - spec/fixtures/expected.kml
173
173
  - spec/fixtures/ftwood2.gpx
174
- - spec/fixtures/ftwood2.kml
175
174
  - spec/fixtures/ftwood2_expected.kml
176
175
  - spec/fixtures/test.gpx
177
- - spec/fixtures/test.kml
178
176
  - spec/fixtures/waypoint-by-name.gpx
179
- - spec/fixtures/waypoint-by-name.kml
180
177
  - spec/lib/tf1_converter/gpx/track_spec.rb
181
178
  - spec/lib/tf1_converter/gpx/waypoint_spec.rb
182
179
  - spec/lib/tf1_converter/translation_spec.rb
@@ -195,7 +192,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
195
192
  version: '0'
196
193
  segments:
197
194
  - 0
198
- hash: -105636011424227651
195
+ hash: 1128813594357026781
199
196
  required_rubygems_version: !ruby/object:Gem::Requirement
200
197
  none: false
201
198
  requirements:
@@ -204,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
201
  version: '0'
205
202
  segments:
206
203
  - 0
207
- hash: -105636011424227651
204
+ hash: 1128813594357026781
208
205
  requirements: []
209
206
  rubyforge_project:
210
207
  rubygems_version: 1.8.23
@@ -214,12 +211,9 @@ summary: A GPX to KML converter for Missouri Task Force 1
214
211
  test_files:
215
212
  - spec/fixtures/expected.kml
216
213
  - spec/fixtures/ftwood2.gpx
217
- - spec/fixtures/ftwood2.kml
218
214
  - spec/fixtures/ftwood2_expected.kml
219
215
  - spec/fixtures/test.gpx
220
- - spec/fixtures/test.kml
221
216
  - spec/fixtures/waypoint-by-name.gpx
222
- - spec/fixtures/waypoint-by-name.kml
223
217
  - spec/lib/tf1_converter/gpx/track_spec.rb
224
218
  - spec/lib/tf1_converter/gpx/waypoint_spec.rb
225
219
  - spec/lib/tf1_converter/translation_spec.rb
@@ -1,342 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <kml xmlns="http://www.opengis.net/kml/2.2">
3
- <Document>
4
- <open>1</open>
5
- <Snippet maxLines="1"/>
6
- <description><![CDATA[09-01-2008 12:00:00 PM<br/><br/>TF1 Converter Version 1.0<br/>MO Task Force 1<br/>]]></description>
7
- <Style id="sn_noicon">
8
- <IconStyle>
9
- <Icon/>
10
- </IconStyle>
11
- </Style>
12
- <Folder>
13
- <name>Waypoints</name>
14
- </Folder>
15
- <Folder>
16
- <name>Tracks</name>
17
- <Style id="ACTIVE LOG_Style">
18
- <LineStyle>
19
- <color>f0ff0000</color>
20
- <width>3</width>
21
- </LineStyle>
22
- </Style>
23
- <Placemark id="ACTIVE LOG">
24
- <name>ACTIVE LOG</name>
25
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
26
- <styleUrl>#ACTIVE LOG_Style</styleUrl>
27
- <LineString>
28
- <extrude>1</extrude>
29
- <tessellate>1</tessellate>
30
- <altitudeMode>clampedToGround</altitudeMode>
31
- <coordinates>-92.2171973,38.6558551,0 -92.2165014,38.6554721,0 -92.2158114,38.6550923,0 -92.2144598,38.6543536,0 -92.2137885,38.6539873,0 -92.2127836,38.6534392,0 -92.2080637,38.6515385,0 -92.2076787,38.6514148,0 -92.2034547,38.6487083,0 -92.2018063,38.6456055,0 -92.2013563,38.6447538,0 -92.1999512,38.6421021,0 -92.1997884,38.6417975,0 -92.1994613,38.6411855,0 -92.1992974,38.6408786,0 -92.1971029,38.6362056,0 -92.1970510,38.6349033,0 -92.1969694,38.6322946,0 -92.1968493,38.6316455,0 -92.1966223,38.6310203,0 -92.1954708,38.6289265,0 -92.1915983,38.6218855,0 -92.1881174,38.6155492,0 -92.1841660,38.6083993,0 -92.1825169,38.6061983,0 -92.1803968,38.6043587,0 -92.1781991,38.6032770,0 -92.1756838,38.6025404,0 -92.1735565,38.6019744,0 -92.1714255,38.6014112,0 -92.1700713,38.6003817,0 -92.1695617,38.5995492,0 -92.1694921,38.5993103,0 -92.1692891,38.5983599,0 -92.1697140,38.5970736,0 -92.1697140,38.5970736,0 -92.1724752,38.5942450,0 -92.1743466,38.5922744,0 -92.1747610,38.5918357,0 -92.1763405,38.5901632,0 -92.1767261,38.5897550,0 -92.1796680,38.5866904,0 -92.1810731,38.5852027,0 -92.1813827,38.5848344,0 -92.1818438,38.5843022,0 -92.1822266,38.5839736,0 -92.1824071,38.5838209,0 -92.1838592,38.5831516,0 -92.1841631,38.5829625,0 -92.1844769,38.5821550,0 -92.1843303,38.5818761,0 -92.1840500,38.5815416,0 -92.1823400,38.5804898,0 -92.1815586,38.5800362,0 -92.1806198,38.5793830,0 -92.1802946,38.5791604,0 -92.1793436,38.5785108,0 -92.1790297,38.5782964,0 -92.1767761,38.5767062,0 -92.1763986,38.5759310,0 -92.1761039,38.5746298,0 -92.1759048,38.5743825,0 -92.1755247,38.5740596,0 -92.1738121,38.5728306,0 -92.1728148,38.5720596,0 -92.1721519,38.5716088,0 -92.1709778,38.5708589,0 -92.1702430,38.5703953,0 -92.1697493,38.5700779,0 -92.1674943,38.5686286,0 -92.1662186,38.5677646,0 -92.1647061,38.5666686,0 -92.1639469,38.5661183,0 -92.1632195,38.5655413,0 -92.1623046,38.5647094,0 -92.1618404,38.5642874,0 -92.1589452,38.5624166,0 -92.1577895,38.5616626,0 -92.1566634,38.5608393,0 -92.1560915,38.5604212,0 -92.1535413,38.5585568,0 -92.1520930,38.5571703,0 -92.1515235,38.5563974,0 -92.1512429,38.5558560,0 -92.1509622,38.5553111,0 -92.1506815,38.5547661,0 -92.1503996,38.5542189,0 -92.1499701,38.5533975,0 -92.1496753,38.5528511,0 -92.1492413,38.5520285,0 -92.1487160,38.5512411,0 -92.1482941,38.5507430,0 -92.1478645,38.5502657,0 -92.1460637,38.5488541,0 -92.1448165,38.5482602,0 -92.1441824,38.5480170,0 -92.1438473,38.5479155,0 -92.1428216,38.5476254,0 -92.1421079,38.5474703,0 -92.1406167,38.5472519,0 -92.1394872,38.5470882,0 -92.1387289,38.5469773,0 -92.1372047,38.5467524,0 -92.1356884,38.5465203,0 -92.1349346,38.5464137,0 -92.1341822,38.5463074,0 -92.1334304,38.5462011,0 -92.1326764,38.5460946,0 -92.1315392,38.5459188,0 -92.1300310,38.5455725,0 -92.1262309,38.5445531,0 -92.1212816,38.5432161,0 -92.1197997,38.5428122,0 -92.1194250,38.5427105,0 -92.1190486,38.5426083,0 -92.1179143,38.5423002,0 -92.1171552,38.5420941,0 -92.1163932,38.5418873,0 -92.1152390,38.5415739,0 -92.1144631,38.5413632,0 -92.1136882,38.5411528,0 -92.1124856,38.5409559,0 -92.1116709,38.5408619,0 -92.1104367,38.5407196,0 -92.1032581,38.5399086,0 -92.1020774,38.5397797,0 -92.1009016,38.5396513,0 -92.1001255,38.5395666,0 -92.0989736,38.5394408,0 -92.0982089,38.5393574,0 -92.0970680,38.5392328,0 -92.0963091,38.5391500,0 -92.0951771,38.5390264,0 -92.0944238,38.5389441,0 -92.0929009,38.5387741,0 -92.0901563,38.5384634,0 -92.0885932,38.5382864,0 -92.0874215,38.5381538,0 -92.0866377,38.5380650,0 -92.0854567,38.5379313,0 -92.0838767,38.5377525,0 -92.0826848,38.5376175,0 -92.0814926,38.5374826,0 -92.0806977,38.5373926,0 -92.0794974,38.5372618,0 -92.0782936,38.5371343,0 -92.0778922,38.5370919,0 -92.0751293,38.5367703,0 -92.0736216,38.5365068,0 -92.0725309,38.5362059,0 -92.0703045,38.5350954,0 -92.0678734,38.5335471,0 -92.0669710,38.5329569,0 -92.0666722,38.5327615,0 -92.0634216,38.5306357,0 -92.0592200,38.5278878,0 -92.0583120,38.5272940,0 -92.0574435,38.5266735,0 -92.0566348,38.5260084,0 -92.0550436,38.5242913,0 -92.0535001,38.5225276,0 -92.0530630,38.5220211,0 -92.0519762,38.5207613,0 -92.0517591,38.5205098,0 -92.0508933,38.5195060,0 -92.0506768,38.5192551,0 -92.0489127,38.5176630,0 -92.0466468,38.5164057,0 -92.0423535,38.5140114,0 -92.0420972,38.5137763,0 -92.0407512,38.5126928,0 -92.0401505,38.5123370,0 -92.0392287,38.5117910,0 -92.0385944,38.5114154,0 -92.0379513,38.5110343,0 -92.0373008,38.5106491,0 -92.0366485,38.5102627,0 -92.0350173,38.5092965,0 -92.0343502,38.5089014,0 -92.0336816,38.5085053,0 -92.0330175,38.5081121,0 -92.0300682,38.5063651,0 -92.0291046,38.5057944,0 -92.0275241,38.5048582,0 -92.0268885,38.5044818,0 -92.0252848,38.5035319,0 -92.0246439,38.5031523,0 -92.0237197,38.5025623,0 -92.0222818,38.5014937,0 -92.0217118,38.5010435,0 -92.0214257,38.5008177,0 -92.0202940,38.4994961,0 -92.0200955,38.4992215,0 -92.0195266,38.4983870,0 -92.0193386,38.4981108,0 -92.0171678,38.4955211,0 -92.0149780,38.4941650,0 -92.0127694,38.4933884,0 -92.0108252,38.4929195,0 -92.0096834,38.4926159,0 -92.0081593,38.4922491,0 -92.0074045,38.4920651,0 -92.0070362,38.4919676,0 -92.0049056,38.4911007,0 -92.0046616,38.4909439,0 -92.0037618,38.4896316,0 -92.0035712,38.4888778,0 -92.0035788,38.4878354,0 -92.0035919,38.4875732,0 -92.0036312,38.4867893,0 -92.0037988,38.4857686,0 -92.0042336,38.4833605,0 -92.0043269,38.4828067,0 -92.0046082,38.4811353,0 -92.0051407,38.4781585,0 -92.0052310,38.4776388,0 -92.0051415,38.4758266,0 -92.0043297,38.4737589,0 -92.0028465,38.4702898,0 -92.0027327,38.4700238,0 -92.0020985,38.4676998,0 -92.0025653,38.4661619,0 -92.0036605,38.4635468,0 -92.0039905,38.4627587,0 -92.0042104,38.4622335,0 -92.0044053,38.4617055,0 -92.0045780,38.4611680,0 -92.0047339,38.4606281,0 -92.0048446,38.4600744,0 -92.0050030,38.4592415,0 -92.0050933,38.4586998,0 -92.0053283,38.4579379,0 -92.0054340,38.4577061,0 -92.0058914,38.4570621,0 -92.0065497,38.4565260,0 -92.0067958,38.4563761,0 -92.0089254,38.4553839,0 -92.0093833,38.4550705,0 -92.0103607,38.4538708,0 -92.0104916,38.4526125,0 -92.0100201,38.4514475,0 -92.0092615,38.4507489,0 -92.0084548,38.4501440,0 -92.0079406,38.4496755,0 -92.0077025,38.4493127,0 -92.0073339,38.4487335,0 -92.0066917,38.4477241,0 -92.0062906,38.4470940,0 -92.0058992,38.4464579,0 -92.0054964,38.4458107,0 -92.0050901,38.4451748,0 -92.0046754,38.4445590,0 -92.0043333,38.4441828,0 -92.0037458,38.4436587,0 -92.0033334,38.4433098,0 -92.0027233,38.4427829,0 -92.0017351,38.4418998,0 -92.0011497,38.4413677,0 -92.0001943,38.4404715,0 -91.9992503,38.4396139,0 -91.9983326,38.4388490,0 -91.9960839,38.4372467,0 -91.9936228,38.4354946,0 -91.9907120,38.4331570,0 -91.9886001,38.4313849,0 -91.9878271,38.4307383,0 -91.9873228,38.4302950,0 -91.9866957,38.4295498,0 -91.9864987,38.4292949,0 -91.9863023,38.4290407,0 -91.9859034,38.4285245,0 -91.9855076,38.4280114,0 -91.9851295,38.4274989,0 -91.9847514,38.4269864,0 -91.9841867,38.4262209,0 -91.9838102,38.4257107,0 -91.9832165,38.4249557,0 -91.9826033,38.4242061,0 -91.9821653,38.4237299,0 -91.9816979,38.4232810,0 -91.9814468,38.4230651,0 -91.9809440,38.4226326,0 -91.9799422,38.4217712,0 -91.9794826,38.4213138,0 -91.9790685,38.4208308,0 -91.9784560,38.4197776,0 -91.9771091,38.4163013,0 -91.9755686,38.4127099,0 -91.9743428,38.4114274,0 -91.9700780,38.4070935,0 -91.9681212,38.4054293,0 -91.9673965,38.4050940,0 -91.9660635,38.4047629,0 -91.9651965,38.4046477,0 -91.9618433,38.4042319,0 -91.9588828,38.4036000,0 -91.9547222,38.4022653,0 -91.9537412,38.4011170,0 -91.9533920,38.4001768,0 -91.9527808,38.3990456,0 -91.9514491,38.3979943,0 -91.9497692,38.3974091,0 -91.9480509,38.3969781,0 -91.9468830,38.3960281,0 -91.9452740,38.3944925,0 -91.9437256,38.3939538,0 -91.9431547,38.3938367,0 -91.9397598,38.3930970,0 -91.9384954,38.3928176,0 -91.9362496,38.3923394,0 -91.9356516,38.3921434,0 -91.9341853,38.3911535,0 -91.9337925,38.3907383,0 -91.9330140,38.3899153,0 -91.9326294,38.3895066,0 -91.9311387,38.3879035,0 -91.9305987,38.3872930,0 -91.9304241,38.3870957,0 -91.9303109,38.3868746,0 -91.9301176,38.3861635,0 -91.9303329,38.3852606,0 -91.9311360,38.3842609,0 -91.9336111,38.3817994,0 -91.9342009,38.3804160,0 -91.9341864,38.3789037,0 -91.9337687,38.3779472,0 -91.9327694,38.3766821,0 -91.9303673,38.3748227,0 -91.9291244,38.3733998,0 -91.9290125,38.3722552,0 -91.9291109,38.3718115,0 -91.9296526,38.3709720,0 -91.9302578,38.3701459,0 -91.9304562,38.3687502,0 -91.9303059,38.3683154,0 -91.9300785,38.3676573,0 -91.9299262,38.3672164,0 -91.9290720,38.3657402,0 -91.9281387,38.3651032,0 -91.9266109,38.3642097,0 -91.9255606,38.3629247,0 -91.9252682,38.3621979,0 -91.9253054,38.3606590,0 -91.9254981,38.3601540,0 -91.9262480,38.3587332,0 -91.9261387,38.3575983,0 -91.9260778,38.3573852,0 -91.9257240,38.3570042,0 -91.9245852,38.3562048,0 -91.9234891,38.3556417,0 -91.9229189,38.3553398,0 -91.9214636,38.3542393,0 -91.9203475,38.3529805,0 -91.9196790,38.3517940,0 -91.9193401,38.3510305,0 -91.9190559,38.3502258,0 -91.9185756,38.3488769,0 -91.9183709,38.3483570,0 -91.9180701,38.3475937,0 -91.9177665,38.3471431,0 -91.9173659,38.3467543,0 -91.9162751,38.3458043,0 -91.9154026,38.3450008,0 -91.9149666,38.3445950,0 -91.9127360,38.3418748,0 -91.9117669,38.3400904,0 -91.9116949,38.3398144,0 -91.9114836,38.3387110,0 -91.9114444,38.3384386,0 -91.9112046,38.3367743,0 -91.9111225,38.3362042,0 -91.9110396,38.3356297,0 -91.9109148,38.3347621,0 -91.9106438,38.3328413,0 -91.9105977,38.3317715,0 -91.9111152,38.3306092,0 -91.9121265,38.3297201,0 -91.9130979,38.3291013,0 -91.9146072,38.3281247,0 -91.9158546,38.3273251,0 -91.9178788,38.3260460,0 -91.9186591,38.3255546,0 -91.9215126,38.3236807,0 -91.9225837,38.3224329,0 -91.9230515,38.3213837,0 -91.9232209,38.3206663,0 -91.9232941,38.3193555,0 -91.9233370,38.3163972,0 -91.9233370,38.3153181,0 -91.9232854,38.3150169,0 -91.9232206,38.3148871,0 -91.9226347,38.3142497,0 -91.9217967,38.3136254,0 -91.9202322,38.3124157,0 -91.9196966,38.3118562,0 -91.9191907,38.3106881,0 -91.9189163,38.3098990,0 -91.9184812,38.3086388,0 -91.9182426,38.3079433,0 -91.9181060,38.3074570,0 -91.9179727,38.3067077,0 -91.9180373,38.3059654,0 -91.9181309,38.3054732,0 -91.9182026,38.3052268,0 -91.9182752,38.3049783,0 -91.9185988,38.3042459,0 -91.9189140,38.3037654,0 -91.9197305,38.3025300,0 -91.9200580,38.3020387,0 -91.9203895,38.3015471,0 -91.9207226,38.3010530,0 -91.9208898,38.3008048,0 -91.9215726,38.2997919,0 -91.9219180,38.2992796,0 -91.9220862,38.2990300,0 -91.9231963,38.2971846,0 -91.9233590,38.2964561,0 -91.9233947,38.2961997,0 -91.9240407,38.2941627,0 -91.9248119,38.2932984,0 -91.9255498,38.2927475,0 -91.9258057,38.2925703,0 -91.9260617,38.2923931,0 -91.9280265,38.2906672,0 -91.9285300,38.2891976,0 -91.9283243,38.2876579,0 -91.9280775,38.2871579,0 -91.9279263,38.2869211,0 -91.9275649,38.2864694,0 -91.9266457,38.2853205,0 -91.9264577,38.2850854,0 -91.9261645,38.2845908,0 -91.9259880,38.2840712,0 -91.9258690,38.2829788,0 -91.9258690,38.2824142,0 -91.9261305,38.2792970,0 -91.9263411,38.2787704,0 -91.9266675,38.2782809,0 -91.9276857,38.2771663,0 -91.9287376,38.2764657,0 -91.9297726,38.2757840,0 -91.9317020,38.2745131,0 -91.9319446,38.2743534,0 -91.9326801,38.2738688,0 -91.9347369,38.2725141,0 -91.9358016,38.2718129,0 -91.9378834,38.2704033,0 -91.9382462,38.2699724,0 -91.9386687,38.2690602,0 -91.9386652,38.2683412,0 -91.9385214,38.2678876,0 -91.9384184,38.2676611,0 -91.9375508,38.2667018,0 -91.9373325,38.2665340,0 -91.9360993,38.2657932,0 -91.9358586,38.2656400,0 -91.9353917,38.2653310,0 -91.9346998,38.2648568,0 -91.9341252,38.2643174,0 -91.9336377,38.2636999,0 -91.9333606,38.2632654,0 -91.9328600,38.2618177,0 -91.9328052,38.2613135,0 -91.9327629,38.2605483,0 -91.9326895,38.2592177,0 -91.9326444,38.2584033,0 -91.9324762,38.2553552,0 -91.9323869,38.2540087,0 -91.9322943,38.2532069,0 -91.9322496,38.2529389,0 -91.9315221,38.2499130,0 -91.9314504,38.2496298,0 -91.9311587,38.2482359,0 -91.9311348,38.2479610,0 -91.9311109,38.2476869,0 -91.9311601,38.2463004,0 -91.9313696,38.2452043,0 -91.9315348,38.2446755,0 -91.9316175,38.2444107,0 -91.9324806,38.2426531,0 -91.9326180,38.2424071,0 -91.9335769,38.2406900,0 -91.9337126,38.2404469,0 -91.9343521,38.2387581,0 -91.9341568,38.2369676,0 -91.9342008,38.2353784,0 -91.9344709,38.2345730,0 -91.9348972,38.2338182,0 -91.9359264,38.2326864,0 -91.9364485,38.2323033,0 -91.9377796,38.2313589,0 -91.9385638,38.2308115,0 -91.9393234,38.2302811,0 -91.9398182,38.2299356,0 -91.9405397,38.2290995,0 -91.9409844,38.2280850,0 -91.9412536,38.2272583,0 -91.9413375,38.2269775,0 -91.9415070,38.2264104,0 -91.9417622,38.2255559,0 -91.9418471,38.2252720,0 -91.9422590,38.2238935,0 -91.9425740,38.2228390,0 -91.9435229,38.2193103,0 -91.9435137,38.2184846,0 -91.9433628,38.2170992,0 -91.9432075,38.2156742,0 -91.9430806,38.2145105,0 -91.9430169,38.2139250,0 -91.9429535,38.2133444,0 -91.9428266,38.2121807,0 -91.9427947,38.2118874,0 -91.9426661,38.2107078,0 -91.9425719,38.2098435,0 -91.9424422,38.2086532,0 -91.9423455,38.2077673,0 -91.9422818,38.2071814,0 -91.9421536,38.2060047,0 -91.9420901,38.2054229,0 -91.9418140,38.2028923,0 -91.9418495,38.2018573,0 -91.9426727,38.2004753,0 -91.9430889,38.2001006,0 -91.9438602,38.1996701,0 -91.9456702,38.1983291,0 -91.9458246,38.1981325,0 -91.9467543,38.1959987,0 -91.9470417,38.1952455,0 -91.9473291,38.1944928,0 -91.9479136,38.1930036,0 -91.9481107,38.1925161,0 -91.9485649,38.1906953,0 -91.9486225,38.1898208,0 -91.9486570,38.1891530,0 -91.9486570,38.1884870,0 -91.9486373,38.1862687,0 -91.9485283,38.1850433,0 -91.9484125,38.1828371,0 -91.9482497,38.1818725,0 -91.9481715,38.1814591,0 -91.9480442,38.1807863,0 -91.9479541,38.1803109,0 -91.9479087,38.1800706,0 -91.9477291,38.1791211,0 -91.9475187,38.1779872,0 -91.9474774,38.1777637,0 -91.9472084,38.1762411,0 -91.9471208,38.1757661,0 -91.9469278,38.1747605,0 -91.9466350,38.1731580,0 -91.9463826,38.1717860,0 -91.9462773,38.1712138,0 -91.9461154,38.1703333,0 -91.9459013,38.1691690,0 -91.9457423,38.1683043,0 -91.9455348,38.1671760,0 -91.9453745,38.1663554,0 -91.9449217,38.1650978,0 -91.9439176,38.1634034,0 -91.9434680,38.1627077,0 -91.9425712,38.1613200,0 -91.9410579,38.1589783,0 -91.9406604,38.1583632,0 -91.9399732,38.1572999,0 -91.9396919,38.1568645,0 -91.9380098,38.1542826,0 -91.9370129,38.1529572,0 -91.9367304,38.1527306,0 -91.9361624,38.1524030,0 -91.9352671,38.1520935,0 -91.9343524,38.1518603,0 -91.9332985,38.1515914,0 -91.9310278,38.1510029,0 -91.9295467,38.1506304,0 -91.9288376,38.1504521,0 -91.9266870,38.1499113,0 -91.9261435,38.1497745,0 -91.9256224,38.1496435,0 -91.9227413,38.1491101,0 -91.9210988,38.1492410,0 -91.9194085,38.1496456,0 -91.9175444,38.1501463,0 -91.9141184,38.1510665,0 -91.9090370,38.1524256,0 -91.9078600,38.1527313,0 -91.9063257,38.1531262,0 -91.9055613,38.1532791,0 -91.9043869,38.1533550,0 -91.9016925,38.1531752,0 -91.8994927,38.1526047,0 -91.8958457,38.1512633,0 -91.8951121,38.1509934,0 -91.8922060,38.1499295,0 -91.8914902,38.1496682,0 -91.8904087,38.1492733,0 -91.8893140,38.1488737,0 -91.8885825,38.1486066,0 -91.8874803,38.1482043,0 -91.8867483,38.1479370,0 -91.8860202,38.1476712,0 -91.8852941,38.1474004,0 -91.8845666,38.1471290,0 -91.8834790,38.1467231,0 -91.8831199,38.1465893,0 -91.8813065,38.1459400,0 -91.8791278,38.1451186,0 -91.8787816,38.1449558,0 -91.8772954,38.1438941,0 -91.8758788,38.1423501,0 -91.8718911,38.1377332,0 -91.8699308,38.1362187,0 -91.8665704,38.1343988,0 -91.8638370,38.1329303,0 -91.8628345,38.1323917,0 -91.8618395,38.1318571,0 -91.8608444,38.1313211,0 -91.8598568,38.1307840,0 -91.8592023,38.1304280,0 -91.8588753,38.1302502,0 -91.8578700,38.1297262,0 -91.8575304,38.1295479,0 -91.8537698,38.1277161,0 -91.8514910,38.1270914,0 -91.8487438,38.1269789,0 -91.8460955,38.1274297,0 -91.8407703,38.1289671,0 -91.8327936,38.1312911,0 -91.8308704,38.1318514,0 -91.8301142,38.1320717,0 -91.8282460,38.1326160,0 -91.8267517,38.1329461,0 -91.8252355,38.1330289,0 -91.8236777,38.1329900,0 -91.8225154,38.1327834,0 -91.8209511,38.1324481,0 -91.8197740,38.1321769,0 -91.8182159,38.1318178,0 -91.8166827,38.1314644,0 -91.8151461,38.1311102,0 -91.8139915,38.1308442,0 -91.8132261,38.1306677,0 -91.8120846,38.1304046,0 -91.8113237,38.1302293,0 -91.8105622,38.1300538,0 -91.8097982,38.1298778,0 -91.8090350,38.1297018,0 -91.8082697,38.1295255,0 -91.8071185,38.1292601,0 -91.8063482,38.1290826,0 -91.8051908,38.1288159,0 -91.8044180,38.1286377,0 -91.8032527,38.1283692,0 -91.8024739,38.1281896,0 -91.8016931,38.1280097,0 -91.8005141,38.1277379,0 -91.7993353,38.1274663,0 -91.7977907,38.1271163,0 -91.7974079,38.1270296,0 -91.7906988,38.1254856,0 -91.7886512,38.1253359,0 -91.7872337,38.1253481,0 -91.7865206,38.1252670,0 -91.7847460,38.1249277,0 -91.7833245,38.1246572,0 -91.7805016,38.1240882,0 -91.7783567,38.1236466,0 -91.7732133,38.1224565,0 -91.7698285,38.1210338,0 -91.7676252,38.1198292,0 -91.7648586,38.1179538,0 -91.7646012,38.1177775,0 -91.7635863,38.1170820,0 -91.7628347,38.1165671,0 -91.7620991,38.1160442,0 -91.7616590,38.1156762,0 -91.7614623,38.1154797,0 -91.7608866,38.1146150,0 -91.7607642,38.1141340,0 -91.7607312,38.1136390,0 -91.7607178,38.1129093,0 -91.7606922,38.1114737,0 -91.7606858,38.1110113,0 -91.7606682,38.1091146,0 -91.7606636,38.1086194,0 -91.7606449,38.1061468,0 -91.7606449,38.1051226,0 -91.7606449,38.1032904,0 -91.7606878,38.1013821,0 -91.7605592,38.1002010,0 -91.7602872,38.0992765,0 -91.7597284,38.0975467,0 -91.7596034,38.0970241,0 -91.7595862,38.0965042,0 -91.7602773,38.0947866,0 -91.7603921,38.0945443,0 -91.7608392,38.0935881,0 -91.7610620,38.0931078,0 -91.7615260,38.0921078,0 -91.7616460,38.0918491,0 -91.7626282,38.0897323,0 -91.7627509,38.0894678,0 -91.7644380,38.0858314,0 -91.7646737,38.0853234,0 -91.7650043,38.0845637,0 -91.7653301,38.0832402,0 -91.7655308,38.0824243,0 -91.7659060,38.0813651,0 -91.7666744,38.0798079,0 -91.7670655,38.0790210,0 -91.7675948,38.0779564,0 -91.7682574,38.0766231,0 -91.7687731,38.0755859,0 -91.7689023,38.0753260,0 -91.7702347,38.0726518,0 -91.7709237,38.0712738,0 -91.7716152,38.0698906,0 -91.7718865,38.0693483,0 -91.7729752,38.0671706,0 -91.7739108,38.0652528,0 -91.7742887,38.0644386,0 -91.7744143,38.0641682,0 -91.7747638,38.0633653,0 -91.7748499,38.0625628,0 -91.7748499,38.0617409,0 -91.7748928,38.0603298,0 -91.7748928,38.0600407,0 -91.7749270,38.0582846,0 -91.7749618,38.0568042,0 -91.7750245,38.0541391,0 -91.7750530,38.0529246,0 -91.7751768,38.0504464,0 -91.7752053,38.0501394,0 -91.7753775,38.0482875,0 -91.7754349,38.0476704,0 -91.7755069,38.0464420,0 -91.7755554,38.0455288,0 -91.7756204,38.0443031,0 -91.7756855,38.0430760,0 -91.7757356,38.0421324,0 -91.7757862,38.0411780,0 -91.7758708,38.0395841,0 -91.7759209,38.0386391,0 -91.7759707,38.0376986,0 -91.7760205,38.0367592,0 -91.7760862,38.0355220,0 -91.7761348,38.0346064,0 -91.7761982,38.0334109,0 -91.7762573,38.0322959,0 -91.7762717,38.0320247,0 -91.7763290,38.0309384,0 -91.7763435,38.0306596,0 -91.7764341,38.0289109,0 -91.7765132,38.0273861,0 -91.7766094,38.0244896,0 -91.7766094,38.0235070,0 -91.7762352,38.0199454,0 -91.7760629,38.0183241,0 -91.7757836,38.0156951,0 -91.7757494,38.0153743,0 -91.7756450,38.0143910,0 -91.7754705,38.0127484,0 -91.7750766,38.0090748,0 -91.7748858,38.0073669,0 -91.7747345,38.0060127,0 -91.7745835,38.0046625,0 -91.7744349,38.0033322,0 -91.7741715,38.0009997,0 -91.7741339,38.0006694,0 -91.7735326,37.9987739,0 -91.7721549,37.9964454,0 -91.7716042,37.9955810,0 -91.7689946,37.9914844,0 -91.7674838,37.9891126,0 -91.7659686,37.9867340,0 -91.7648686,37.9850107,0 -91.7641589,37.9838950,0 -91.7630736,37.9819840,0 -91.7627339,37.9811489,0 -91.7624074,37.9806358,0 -91.7619131,37.9798593,0 -91.7615826,37.9793399,0 -91.7612492,37.9788160,0 -91.7609304,37.9782901,0 -91.7605396,37.9774761,0 -91.7603673,37.9766124,0 -91.7603105,37.9760287,0 -91.7603611,37.9754518,0 -91.7604379,37.9745774,0 -91.7604893,37.9739928,0 -91.7605698,37.9731118,0 -91.7609947,37.9715144,0 -91.7618940,37.9702889,0 -91.7634445,37.9682573,0 -91.7645734,37.9667780,0 -91.7649331,37.9663067,0 -91.7650799,37.9661142,0 -91.7657005,37.9652034,0 -91.7657569,37.9650584,0 -91.7659211,37.9645922,0 -91.7657600,37.9634308,0 -91.7656660,37.9625669,0 -91.7660041,37.9622798,0 -91.7665433,37.9620219,0 -91.7669427,37.9618627,0 -91.7674083,37.9616912,0 -91.7679740,37.9615847,0 -91.7691086,37.9613969,0 -91.7698801,37.9612782,0 -91.7723748,37.9609956,0 -91.7740239,37.9603765,0 -91.7752634,37.9594562,0 -91.7760193,37.9588573,0 -91.7768106,37.9582587,0 -91.7774251,37.9579235,0 -91.7790804,37.9571902,0 -91.7798199,37.9569536,0 -91.7828401,37.9560119,0 -91.7835809,37.9557808,0 -91.7849717,37.9552423,0 -91.7861862,37.9545518,0 -91.7870253,37.9539417,0 -91.7882881,37.9523876,0 -91.7890567,37.9506411,0 -91.7896679,37.9491485,0 -91.7900325,37.9482583,0 -91.7903932,37.9473777,0 -91.7907670,37.9465086,0 -91.7912933,37.9453771,0 -91.7918454,37.9445780,0 -91.7925620,37.9438573,0 -91.7934449,37.9432797,0 -91.7951597,37.9425597,0 -91.7955139,37.9424279,0 -91.7969918,37.9419738,0 -91.7981413,37.9416853,0 -91.7996780,37.9413377,0 -91.8011906,37.9409956,0 -91.8023212,37.9408003,0 -91.8042175,37.9404809,0 -91.8045965,37.9404348,0 -91.8061514,37.9402732,0 -91.8073325,37.9401607,0 -91.8084999,37.9400721,0 -91.8093020,37.9400478,0 -91.8101083,37.9400266,0 -91.8109118,37.9400073,0 -91.8125213,37.9399686,0 -91.8149244,37.9398671,0 -91.8194981,37.9394438,0 -91.8225195,37.9391332,0 -91.8259942,37.9387758,0 -91.8311016,37.9383659,0 -91.8319432,37.9383990,0 -91.8340068,37.9385715,0 -91.8348081,37.9386807,0 -91.8355790,37.9388341,0 -91.8363384,37.9390029,0 -91.8377891,37.9394702,0 -91.8427979,37.9414700,0 -91.8469992,37.9431088,0 -91.8480511,37.9434879,0 -91.8491226,37.9438477,0 -91.8505883,37.9442458,0 -91.8513445,37.9444160,0 -91.8524950,37.9446368,0 -91.8536753,37.9447907,0 -91.8544666,37.9448850,0 -91.8552813,37.9449280,0 -91.8560947,37.9449416,0 -91.8569151,37.9449524,0 -91.8611062,37.9449930,0 -91.8615246,37.9449970,0 -91.8640224,37.9450206,0 -91.8644449,37.9450245,0 -91.8682002,37.9450600,0 -91.8693745,37.9450705,0 -91.8713036,37.9450876,0 -91.8720789,37.9450945,0 -91.8732588,37.9451050,0 -91.8744505,37.9451155,0 -91.8776506,37.9451440,0 -91.8805082,37.9451675,0 -91.8825936,37.9451900,0 -91.8866590,37.9452207,0 -91.8882866,37.9452336,0 -91.8890983,37.9452437,0 -91.8899173,37.9452539,0 -91.8903267,37.9452590,0 -91.8911494,37.9452694,0 -91.8931765,37.9452909,0 -91.8955727,37.9453150,0 -91.8967762,37.9453271,0 -91.8987964,37.9453475,0 -91.9000039,37.9453596,0 -91.9008125,37.9453678,0 -91.9053221,37.9454043,0 -91.9131168,37.9454923,0 -91.9143650,37.9455073,0 -91.9156143,37.9455223,0 -91.9168362,37.9455370,0 -91.9180211,37.9455512,0 -91.9191959,37.9455653,0 -91.9199773,37.9455746,0 -91.9207538,37.9455840,0 -91.9223143,37.9456027,0 -91.9230952,37.9456121,0 -91.9246664,37.9455977,0 -91.9270182,37.9454454,0 -91.9274064,37.9454057,0 -91.9296813,37.9450357,0 -91.9300614,37.9449684,0 -91.9331257,37.9444291,0 -91.9362268,37.9438840,0 -91.9404742,37.9431372,0 -91.9428141,37.9426972,0 -91.9458816,37.9421154,0 -91.9470408,37.9418956,0 -91.9481817,37.9416792,0 -91.9492729,37.9413461,0 -91.9503067,37.9409000,0 -91.9516052,37.9401687,0 -91.9525050,37.9395382,0 -91.9534099,37.9389041,0 -91.9543159,37.9382693,0 -91.9561194,37.9370057,0 -91.9564164,37.9367975,0 -91.9570161,37.9363774,0 -91.9590772,37.9348959,0 -91.9601510,37.9339959,0 -91.9608400,37.9332514,0 -91.9612100,37.9327185,0 -91.9619070,37.9316064,0 -91.9636838,37.9287713,0 -91.9645762,37.9273473,0 -91.9649312,37.9267810,0 -91.9652858,37.9262149,0 -91.9658077,37.9253824,0 -91.9661531,37.9248313,0 -91.9664904,37.9242930,0 -91.9671457,37.9232473,0 -91.9674876,37.9227019,0 -91.9680174,37.9218566,0 -91.9685620,37.9209874,0 -91.9689164,37.9204210,0 -91.9694168,37.9195611,0 -91.9699445,37.9187169,0 -91.9701212,37.9184343,0 -91.9706550,37.9175802,0 -91.9712179,37.9167341,0 -91.9718243,37.9159067,0 -91.9744175,37.9125122,0 -91.9762050,37.9109517,0 -91.9784719,37.9097738,0 -91.9806664,37.9092601,0 -91.9836713,37.9088008,0 -91.9869638,37.9080540,0 -91.9880492,37.9077588,0 -91.9891365,37.9074633,0 -91.9902283,37.9071663,0 -91.9916927,37.9067698,0 -91.9920488,37.9066533,0 -91.9927640,37.9064192,0 -91.9934691,37.9061884,0 -91.9941958,37.9059924,0 -91.9949359,37.9058641,0 -91.9956938,37.9057856,0 -91.9964539,37.9057070,0 -91.9975788,37.9055411,0 -91.9982883,37.9053501,0 -91.9989288,37.9050584,0 -91.9995618,37.9047464,0 -92.0001987,37.9044325,0 -92.0005222,37.9042730,0 -92.0015087,37.9037849,0 -92.0048683,37.9020430,0 -92.0070721,37.9008254,0 -92.0094439,37.8990592,0 -92.0102853,37.8976890,0 -92.0105528,37.8964322,0 -92.0106114,37.8953495,0 -92.0107179,37.8945482,0 -92.0113744,37.8930048,0 -92.0133833,37.8903634,0 -92.0139449,37.8887596,0 -92.0140438,37.8870164,0 -92.0140676,37.8861318,0 -92.0145403,37.8838286,0 -92.0153560,37.8803224,0 -92.0164583,37.8755852,0 -92.0176671,37.8718725,0 -92.0182333,37.8708228,0 -92.0196295,37.8691530,0 -92.0215243,37.8678306,0 -92.0248177,37.8660436,0 -92.0251148,37.8658818,0 -92.0265863,37.8650807,0 -92.0271922,37.8647804,0 -92.0281485,37.8643785,0 -92.0305802,37.8637707,0 -92.0324351,37.8636177,0 -92.0377576,37.8633353,0 -92.0446879,37.8629676,0 -92.0450767,37.8629470,0 -92.0466235,37.8628649,0 -92.0477860,37.8628032,0 -92.0489650,37.8627406,0 -92.0501636,37.8626770,0 -92.0513726,37.8626129,0 -92.0525971,37.8625479,0 -92.0538185,37.8624831,0 -92.0546354,37.8624398,0 -92.0550451,37.8624180,0 -92.0558674,37.8623744,0 -92.0571003,37.8623090,0 -92.0579182,37.8622655,0 -92.0583306,37.8622437,0 -92.0604022,37.8621338,0 -92.0612375,37.8620894,0 -92.0620812,37.8620447,0 -92.0633482,37.8619708,0 -92.0662609,37.8616624,0 -92.0670429,37.8614675,0 -92.0691834,37.8606100,0 -92.0695080,37.8604457,0 -92.0709397,37.8594299,0 -92.0729450,37.8574265,0 -92.0741988,37.8561031,0 -92.0752043,37.8550508,0 -92.0756956,37.8545335,0 -92.0759367,37.8542756,0 -92.0761756,37.8540199,0 -92.0773606,37.8527523,0 -92.0783231,37.8517308,0 -92.0788111,37.8512132,0 -92.0795474,37.8504321,0 -92.0802803,37.8496546,0 -92.0812483,37.8486279,0 -92.0819769,37.8478548,0 -92.0824615,37.8473408,0 -92.0829436,37.8468294,0 -92.0831814,37.8465772,0 -92.0841320,37.8455917,0 -92.0846158,37.8451080,0 -92.0851628,37.8446658,0 -92.0872863,37.8432752,0 -92.0886103,37.8425972,0 -92.0889380,37.8424334,0 -92.0896052,37.8421084,0 -92.0912771,37.8413258,0 -92.0922136,37.8407800,0 -92.0933811,37.8399729,0 -92.0941936,37.8393120,0 -92.0946929,37.8388324,0 -92.0954477,37.8381071,0 -92.0957008,37.8378641,0 -92.0964437,37.8371607,0 -92.0975826,37.8360707,0 -92.0980282,37.8356373,0 -92.0982530,37.8354188,0 -92.0984884,37.8352052,0 -92.0987255,37.8349908,0 -92.0994838,37.8343689,0 -92.0997552,37.8341773,0 -92.1002962,37.8337954,0 -92.1018715,37.8326459,0 -92.1031859,37.8317045,0 -92.1034513,37.8315182,0 -92.1039803,37.8311470,0 -92.1042448,37.8309615,0 -92.1074103,37.8287400,0 -92.1079420,37.8283670,0 -92.1084755,37.8279925,0 -92.1098140,37.8270763,0 -92.1103663,37.8267249,0 -92.1109505,37.8264027,0 -92.1115451,37.8261050,0 -92.1118635,37.8259748,0 -92.1135458,37.8255221,0 -92.1146420,37.8254036,0 -92.1150156,37.8253659,0 -92.1157712,37.8253172,0 -92.1188369,37.8251198,0 -92.1196060,37.8250703,0 -92.1203628,37.8250215,0 -92.1218293,37.8249270,0 -92.1245500,37.8247518,0 -92.1272960,37.8245750,0 -92.1287061,37.8244837,0 -92.1290651,37.8244605,0 -92.1297804,37.8244141,0 -92.1332763,37.8241877,0 -92.1375590,37.8239103,0 -92.1397880,37.8237715,0 -92.1422483,37.8248824,0 -92.1425898,37.8249556,0 -92.1433079,37.8250111,0 -92.1437748,37.8249489,0 -92.1438861,37.8249282,0 -92.1440241,37.8244860,0 -92.1436391,37.8234045,0 -92.1434776,37.8228840,0 -92.1432628,37.8222334,0 -92.1431008,37.8218147,0 -92.1428270,37.8210765,0 -92.1425206,37.8202443,0 -92.1423291,37.8196672,0 -92.1420388,37.8188061,0 -92.1418190,37.8174292,0 -92.1419438,37.8155931,0 -92.1426738,37.8122133,0 -92.1430091,37.8106916,0 -92.1430596,37.8104696,0 -92.1434528,37.8087449,0 -92.1435542,37.8083001,0 -92.1435677,37.8082409,0 -92.1436958,37.8075846,0 -92.1438720,37.8061801,0 -92.1435030,37.8042432,0 -92.1429107,37.8028965,0 -92.1428033,37.8026674,0 -92.1423376,37.8020427,0 -92.1414610,37.8010651,0 -92.1405745,37.8001356,0 -92.1399091,37.7994702,0 -92.1389158,37.7984768,0 -92.1381424,37.7977035,0 -92.1364912,37.7960524,0 -92.1358098,37.7953709,0 -92.1354675,37.7950287,0 -92.1349432,37.7945042,0 -92.1346192,37.7941803,0 -92.1340548,37.7936159,0 -92.1345424,37.7928994,0 -92.1344287,37.7927868,0 -92.1340500,37.7918649,0 -92.1337996,37.7918550,0 -92.1337993,37.7922746,0 -92.1338031,37.7922775,0</coordinates>
32
- </LineString>
33
- </Placemark>
34
- <Style id="ACTIVE LOG 001_Style">
35
- <LineStyle>
36
- <color>f0ff0000</color>
37
- <width>3</width>
38
- </LineStyle>
39
- </Style>
40
- <Placemark id="ACTIVE LOG 001">
41
- <name>ACTIVE LOG 001</name>
42
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
43
- <styleUrl>#ACTIVE LOG 001_Style</styleUrl>
44
- <LineString>
45
- <extrude>1</extrude>
46
- <tessellate>1</tessellate>
47
- <altitudeMode>clampedToGround</altitudeMode>
48
- <coordinates>-92.1337942,37.7922644,0 -92.1337942,37.7922644,0</coordinates>
49
- </LineString>
50
- </Placemark>
51
- <Style id="ACTIVE LOG 002_Style">
52
- <LineStyle>
53
- <color>f0ff0000</color>
54
- <width>3</width>
55
- </LineStyle>
56
- </Style>
57
- <Placemark id="ACTIVE LOG 002">
58
- <name>ACTIVE LOG 002</name>
59
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
60
- <styleUrl>#ACTIVE LOG 002_Style</styleUrl>
61
- <LineString>
62
- <extrude>1</extrude>
63
- <tessellate>1</tessellate>
64
- <altitudeMode>clampedToGround</altitudeMode>
65
- <coordinates>-92.1338368,37.7924077,0 -92.1337926,37.7923061,0 -92.1334989,37.7919250,0 -92.1332146,37.7920890,0 -92.1331399,37.7921365,0 -92.1331356,37.7921392,0 -92.1320219,37.7915830,0 -92.1308226,37.7903837,0 -92.1302082,37.7897648,0 -92.1297252,37.7892781,0 -92.1288977,37.7884446,0 -92.1287274,37.7882730,0 -92.1280260,37.7875664,0 -92.1271301,37.7866640,0 -92.1264081,37.7859367,0 -92.1260503,37.7855762,0 -92.1258711,37.7853956,0 -92.1253322,37.7848529,0 -92.1247923,37.7843104,0 -92.1244328,37.7839510,0 -92.1242522,37.7837704,0 -92.1240711,37.7835893,0 -92.1237109,37.7832291,0 -92.1230030,37.7825210,0 -92.1221319,37.7816501,0 -92.1214106,37.7807375,0 -92.1209492,37.7799677,0 -92.1208462,37.7797746,0 -92.1204766,37.7790024,0 -92.1201525,37.7782183,0 -92.1199027,37.7776139,0 -92.1198187,37.7774107,0 -92.1193953,37.7763862,0 -92.1189865,37.7753592,0 -92.1185863,37.7743489,0 -92.1182505,37.7735430,0 -92.1179169,37.7727425,0 -92.1176645,37.7721364,0 -92.1171045,37.7707927,0 -92.1168944,37.7702036,0 -92.1167411,37.7698201,0 -92.1165445,37.7690327,0 -92.1165419,37.7690220,0 -92.1164989,37.7679920,0 -92.1164989,37.7679920,0 -92.1164989,37.7669636,0 -92.1165814,37.7653878,0 -92.1167217,37.7651007,0 -92.1170998,37.7646446,0 -92.1171615,37.7644186,0 -92.1172304,37.7641230,0 -92.1169247,37.7641639,0 -92.1166362,37.7641557,0 -92.1155753,37.7641296,0 -92.1139208,37.7640617,0 -92.1117838,37.7636711,0 -92.1116151,37.7636325,0 -92.1108831,37.7633724,0 -92.1106625,37.7630138,0 -92.1106625,37.7630138,0 -92.1106625,37.7619511,0 -92.1106625,37.7614941,0 -92.1106625,37.7606522,0 -92.1106526,37.7592799,0 -92.1106325,37.7576980,0 -92.1106195,37.7552787,0 -92.1106195,37.7544713,0 -92.1106195,37.7535283,0 -92.1106195,37.7524015,0 -92.1106195,37.7516310,0 -92.1106195,37.7485916,0 -92.1106195,37.7480182,0 -92.1106195,37.7463524,0 -92.1106195,37.7456229,0 -92.1106195,37.7455123,0 -92.1106195,37.7448529,0 -92.1102227,37.7448575,0 -92.1096817,37.7451994,0 -92.1088008,37.7461443,0 -92.1074850,37.7475939,0 -92.1066422,37.7482860,0 -92.1057943,37.7485276,0 -92.1054885,37.7485401,0 -92.1052531,37.7484835,0 -92.1048689,37.7486365,0 -92.1048676,37.7492582,0 -92.1047618,37.7501605,0 -92.1046683,37.7505217,0 -92.1046275,37.7506374,0 -92.1045042,37.7509869,0 -92.1044667,37.7510934,0 -92.1042879,37.7511449,0 -92.1041219,37.7511184,0 -92.1041219,37.7511184,0 -92.1037782,37.7510633,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035606,37.7510286,0 -92.1035514,37.7510271,0 -92.1035514,37.7510271,0 -92.1035514,37.7510271,0 -92.1037237,37.7510546,0 -92.1039226,37.7510865,0 -92.1041086,37.7511162,0 -92.1042555,37.7511398,0 -92.1043211,37.7511503,0 -92.1043804,37.7512880,0 -92.1043346,37.7513795,0 -92.1043107,37.7514275,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042535,37.7515417,0 -92.1042887,37.7514715,0 -92.1042887,37.7514715,0 -92.1042851,37.7514785,0 -92.1043150,37.7514189,0 -92.1043316,37.7513855,0 -92.1043680,37.7513128,0 -92.1044112,37.7512265,0 -92.1042933,37.7511458,0 -92.1041654,37.7511254,0 -92.1040475,37.7511065,0 -92.1037700,37.7510621,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1037143,37.7510531,0 -92.1038236,37.7510706,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1038935,37.7510819,0 -92.1045005,37.7509975,0 -92.1045759,37.7507838,0 -92.1046386,37.7506062,0 -92.1047004,37.7504267,0 -92.1047226,37.7503298,0 -92.1047685,37.7501314,0 -92.1047799,37.7500820,0 -92.1047883,37.7500454,0 -92.1047981,37.7500034,0 -92.1046025,37.7498817,0 -92.1046025,37.7498817,0 -92.1046025,37.7498817,0 -92.1046025,37.7498817,0 -92.1046025,37.7498817,0 -92.1046025,37.7498817,0 -92.1043081,37.7498817,0 -92.1042701,37.7498817,0 -92.1042130,37.7498817,0 -92.1042130,37.7498817,0 -92.1040230,37.7498817,0 -92.1040106,37.7498817,0 -92.1040106,37.7498817,0 -92.1040106,37.7498817,0 -92.1040106,37.7498817,0 -92.1040106,37.7498817,0 -92.1040106,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1040380,37.7498817,0 -92.1036222,37.7497631,0 -92.1036129,37.7498449,0 -92.1036046,37.7498355,0 -92.1035824,37.7498425,0 -92.1035528,37.7498396,0 -92.1035476,37.7498335,0 -92.1035720,37.7498490,0 -92.1035578,37.7497585,0 -92.1035678,37.7497916,0 -92.1035658,37.7497973,0 -92.1035413,37.7498522,0 -92.1036356,37.7498942,0 -92.1038315,37.7498791,0 -92.1038652,37.7498741,0 -92.1038916,37.7498686,0 -92.1039770,37.7498304,0 -92.1039855,37.7497821,0 -92.1039362,37.7497496,0 -92.1039694,37.7497526,0 -92.1039905,37.7497988,0 -92.1038289,37.7498287,0 -92.1038028,37.7498342,0 -92.1036397,37.7498295,0 -92.1035676,37.7497298,0 -92.1035379,37.7497157,0 -92.1035280,37.7497429,0 -92.1034186,37.7497962,0 -92.1034273,37.7497903,0 -92.1033630,37.7497900,0 -92.1033735,37.7497912,0 -92.1033860,37.7497951,0 -92.1033854,37.7498103,0 -92.1034418,37.7498253,0 -92.1035011,37.7498816,0 -92.1035162,37.7498526,0 -92.1035537,37.7498252,0 -92.1035740,37.7497631,0 -92.1035768,37.7497774,0 -92.1035523,37.7498331,0 -92.1035113,37.7498398,0 -92.1033388,37.7498354,0 -92.1031928,37.7498346,0 -92.1031203,37.7498570,0 -92.1029923,37.7498859,0 -92.1029940,37.7499336,0 -92.1029277,37.7499304,0 -92.1029486,37.7499283,0 -92.1030142,37.7499154,0 -92.1029969,37.7499419,0 -92.1029859,37.7499134,0 -92.1029912,37.7499040,0 -92.1029722,37.7498936,0 -92.1030000,37.7498833,0 -92.1029897,37.7498879,0 -92.1028933,37.7499072,0 -92.1028084,37.7499088,0 -92.1027780,37.7498801,0 -92.1027402,37.7498889,0 -92.1027508,37.7498967,0 -92.1027463,37.7499729,0 -92.1027396,37.7500393,0 -92.1026918,37.7500889,0 -92.1025292,37.7501718,0 -92.1024061,37.7501707,0 -92.1023120,37.7501434,0 -92.1022551,37.7501499,0 -92.1022107,37.7501488,0 -92.1021012,37.7501573,0 -92.1020238,37.7501685,0 -92.1019670,37.7502047,0 -92.1019531,37.7501967,0 -92.1018209,37.7501830,0 -92.1017749,37.7501643,0 -92.1017355,37.7501494,0 -92.1017606,37.7501438,0 -92.1017154,37.7501661,0 -92.1016102,37.7501904,0 -92.1015486,37.7501759,0 -92.1015734,37.7501848,0 -92.1016501,37.7501945,0 -92.1017059,37.7501794,0 -92.1018158,37.7501460,0 -92.1018569,37.7500977,0 -92.1018476,37.7501108,0 -92.1017463,37.7501511,0 -92.1015999,37.7501853,0 -92.1015305,37.7501728,0 -92.1015113,37.7501773,0 -92.1014482,37.7501334,0 -92.1014518,37.7501395,0 -92.1015077,37.7501893,0 -92.1017057,37.7501867,0 -92.1018076,37.7501902,0 -92.1018092,37.7501701,0 -92.1016459,37.7502169,0 -92.1015039,37.7502583,0 -92.1013068,37.7502521,0 -92.1010612,37.7502903,0 -92.1008394,37.7503858,0 -92.1008079,37.7504193,0 -92.1007033,37.7504785,0 -92.1005870,37.7505711,0 -92.1006323,37.7505733,0 -92.1007224,37.7505758,0 -92.1007560,37.7505710,0 -92.1007705,37.7505927,0 -92.1008048,37.7506093,0 -92.1008435,37.7506322,0 -92.1008809,37.7506383,0 -92.1009794,37.7505836,0 -92.1009447,37.7506107,0 -92.1009581,37.7506089,0 -92.1009835,37.7505878,0 -92.1010903,37.7505348,0 -92.1011356,37.7505402,0 -92.1011289,37.7504883,0 -92.1011682,37.7504682,0 -92.1012837,37.7504448,0 -92.1013024,37.7504364,0 -92.1013908,37.7504458,0 -92.1014491,37.7504376,0 -92.1014070,37.7504101,0 -92.1015353,37.7504075,0 -92.1016051,37.7504116,0 -92.1017217,37.7503418,0 -92.1018025,37.7503213,0 -92.1017698,37.7503111,0 -92.1018800,37.7503011,0 -92.1019423,37.7503099,0 -92.1020744,37.7502962,0 -92.1021680,37.7502888,0 -92.1021858,37.7502820,0 -92.1023055,37.7502056,0 -92.1023442,37.7501903,0 -92.1023534,37.7501405,0 -92.1023260,37.7500826,0 -92.1023240,37.7500766,0 -92.1023418,37.7502173,0 -92.1022778,37.7503422,0 -92.1022863,37.7503718,0 -92.1022697,37.7504099,0 -92.1022738,37.7503821,0 -92.1022609,37.7503617,0 -92.1022954,37.7503526,0 -92.1023724,37.7503309,0 -92.1024451,37.7503301,0 -92.1024467,37.7503410,0 -92.1024509,37.7503029,0 -92.1024454,37.7502985,0 -92.1025658,37.7502624,0 -92.1025458,37.7502683,0 -92.1025720,37.7502577,0 -92.1025965,37.7502505,0 -92.1026383,37.7502314,0 -92.1026577,37.7502118,0 -92.1026107,37.7503047,0 -92.1025992,37.7503499,0 -92.1026436,37.7503044,0 -92.1026872,37.7503169,0 -92.1026687,37.7502946,0 -92.1026805,37.7502495,0 -92.1027436,37.7502288,0 -92.1027246,37.7502301,0 -92.1027875,37.7502639,0 -92.1028080,37.7502546,0 -92.1027953,37.7502648,0 -92.1028217,37.7502333,0 -92.1028171,37.7502573,0 -92.1027903,37.7502863,0 -92.1027909,37.7502636,0 -92.1027686,37.7502432,0 -92.1028143,37.7501847,0 -92.1028479,37.7501682,0 -92.1028748,37.7501635,0 -92.1029613,37.7501965,0 -92.1029670,37.7502213,0 -92.1029541,37.7502205,0 -92.1029571,37.7501945,0 -92.1029700,37.7501664,0 -92.1029766,37.7501552,0 -92.1031187,37.7501530,0 -92.1031281,37.7501599,0 -92.1031476,37.7501893,0 -92.1031498,37.7501894,0 -92.1031681,37.7502007,0 -92.1032056,37.7501465,0 -92.1032579,37.7501468,0 -92.1033083,37.7501323,0 -92.1033539,37.7501092,0 -92.1033881,37.7501162,0 -92.1034062,37.7501294,0 -92.1034794,37.7500889,0 -92.1035211,37.7501257,0 -92.1035066,37.7502101,0 -92.1034244,37.7502534,0 -92.1033777,37.7502557,0 -92.1034185,37.7502529,0 -92.1034620,37.7502291,0 -92.1035300,37.7501769,0 -92.1035906,37.7502085,0 -92.1036645,37.7502505,0 -92.1036772,37.7502416,0 -92.1038527,37.7502416,0 -92.1040158,37.7502297,0 -92.1040697,37.7502354,0 -92.1041485,37.7502092,0 -92.1041677,37.7501919,0 -92.1041273,37.7500744,0 -92.1040988,37.7500738,0 -92.1041448,37.7501106,0 -92.1041488,37.7501061,0 -92.1041454,37.7501037,0 -92.1041637,37.7501597,0 -92.1042070,37.7502001,0 -92.1042103,37.7503308,0 -92.1041981,37.7504985,0 -92.1041883,37.7506328,0 -92.1041782,37.7507214,0 -92.1041597,37.7507958,0 -92.1040863,37.7509383,0 -92.1040216,37.7510187,0 -92.1040259,37.7510413,0 -92.1040817,37.7510755,0 -92.1040624,37.7510416,0 -92.1040496,37.7510211,0 -92.1040776,37.7510087,0 -92.1040502,37.7510110,0 -92.1039981,37.7510275,0 -92.1040233,37.7510647,0 -92.1040544,37.7510419,0 -92.1040294,37.7510286,0 -92.1040106,37.7510513,0 -92.1040180,37.7510519,0 -92.1040681,37.7510375,0 -92.1040667,37.7510409,0 -92.1040719,37.7510358,0 -92.1040729,37.7510349,0 -92.1040815,37.7510509,0 -92.1040686,37.7510479,0 -92.1041004,37.7510404,0 -92.1041369,37.7510514,0 -92.1041148,37.7510584,0 -92.1040140,37.7510825,0 -92.1039682,37.7510610,0 -92.1039541,37.7510564,0 -92.1039531,37.7510549,0 -92.1039583,37.7510468,0 -92.1039707,37.7510507,0 -92.1040289,37.7510685,0 -92.1042975,37.7511444,0 -92.1043837,37.7511659,0 -92.1043771,37.7511942,0 -92.1043718,37.7512107,0 -92.1042776,37.7515839,0 -92.1040016,37.7521874,0 -92.1037404,37.7530798,0 -92.1035160,37.7543056,0 -92.1035782,37.7552482,0 -92.1036790,37.7561029,0 -92.1036980,37.7562611,0 -92.1036959,37.7567925,0 -92.1036205,37.7581295,0 -92.1034826,37.7584051,0 -92.1030458,37.7591231,0 -92.1026851,37.7603874,0 -92.1028667,37.7615830,0 -92.1033751,37.7625555,0 -92.1038088,37.7629812,0 -92.1040898,37.7632060,0 -92.1050783,37.7639010,0 -92.1061827,37.7646166,0 -92.1073223,37.7652594,0 -92.1075513,37.7653886,0 -92.1082683,37.7657005,0 -92.1084860,37.7657774,0 -92.1090360,37.7659303,0 -92.1091262,37.7659544,0 -92.1089568,37.7662216,0 -92.1080386,37.7668792,0 -92.1075842,37.7671064,0 -92.1073649,37.7672015,0 -92.1072787,37.7672371,0 -92.1071975,37.7672705,0 -92.1060953,37.7662653,0</coordinates>
66
- </LineString>
67
- </Placemark>
68
- <Style id="ACTIVE LOG 003_Style">
69
- <LineStyle>
70
- <color>f0ff0000</color>
71
- <width>3</width>
72
- </LineStyle>
73
- </Style>
74
- <Placemark id="ACTIVE LOG 003">
75
- <name>ACTIVE LOG 003</name>
76
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
77
- <styleUrl>#ACTIVE LOG 003_Style</styleUrl>
78
- <LineString>
79
- <extrude>1</extrude>
80
- <tessellate>1</tessellate>
81
- <altitudeMode>clampedToGround</altitudeMode>
82
- <coordinates>-92.1060681,37.7662581,0 -92.1060740,37.7662549,0 -92.1060750,37.7662395,0 -92.1061424,37.7661410,0 -92.1062361,37.7660945,0 -92.1062666,37.7661209,0 -92.1063742,37.7662202,0 -92.1062901,37.7662437,0 -92.1062663,37.7662580,0 -92.1062447,37.7662437,0 -92.1062346,37.7661574,0 -92.1063123,37.7661108,0 -92.1063667,37.7660675,0 -92.1063522,37.7660515,0 -92.1063934,37.7659742,0 -92.1064279,37.7659286,0 -92.1064180,37.7659477,0 -92.1063965,37.7660244,0 -92.1064467,37.7660141,0 -92.1066024,37.7659898,0 -92.1064599,37.7658984,0 -92.1063870,37.7658970,0 -92.1066592,37.7658602,0 -92.1063642,37.7658442,0 -92.1061931,37.7658416,0 -92.1060906,37.7659481,0 -92.1061091,37.7660291,0</coordinates>
83
- </LineString>
84
- </Placemark>
85
- <Style id="ACTIVE LOG 004_Style">
86
- <LineStyle>
87
- <color>f0ff0000</color>
88
- <width>3</width>
89
- </LineStyle>
90
- </Style>
91
- <Placemark id="ACTIVE LOG 004">
92
- <name>ACTIVE LOG 004</name>
93
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
94
- <styleUrl>#ACTIVE LOG 004_Style</styleUrl>
95
- <LineString>
96
- <extrude>1</extrude>
97
- <tessellate>1</tessellate>
98
- <altitudeMode>clampedToGround</altitudeMode>
99
- <coordinates>-92.1074273,37.7666216,0 -92.1074273,37.7666216,0 -92.1062977,37.7660732,0 -92.1062864,37.7660073,0 -92.1063957,37.7658823,0 -92.1063889,37.7658851,0</coordinates>
100
- </LineString>
101
- </Placemark>
102
- <Style id="ACTIVE LOG 005_Style">
103
- <LineStyle>
104
- <color>f0ff0000</color>
105
- <width>3</width>
106
- </LineStyle>
107
- </Style>
108
- <Placemark id="ACTIVE LOG 005">
109
- <name>ACTIVE LOG 005</name>
110
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
111
- <styleUrl>#ACTIVE LOG 005_Style</styleUrl>
112
- <LineString>
113
- <extrude>1</extrude>
114
- <tessellate>1</tessellate>
115
- <altitudeMode>clampedToGround</altitudeMode>
116
- <coordinates>-92.1058074,37.7665135,0 -92.1058074,37.7665135,0 -92.1057110,37.7660926,0 -92.1058709,37.7661566,0</coordinates>
117
- </LineString>
118
- </Placemark>
119
- <Style id="ACTIVE LOG 006_Style">
120
- <LineStyle>
121
- <color>f0ff0000</color>
122
- <width>3</width>
123
- </LineStyle>
124
- </Style>
125
- <Placemark id="ACTIVE LOG 006">
126
- <name>ACTIVE LOG 006</name>
127
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
128
- <styleUrl>#ACTIVE LOG 006_Style</styleUrl>
129
- <LineString>
130
- <extrude>1</extrude>
131
- <tessellate>1</tessellate>
132
- <altitudeMode>clampedToGround</altitudeMode>
133
- <coordinates>-92.1059849,37.7661409,0</coordinates>
134
- </LineString>
135
- </Placemark>
136
- <Style id="ACTIVE LOG 007_Style">
137
- <LineStyle>
138
- <color>f0ff0000</color>
139
- <width>3</width>
140
- </LineStyle>
141
- </Style>
142
- <Placemark id="ACTIVE LOG 007">
143
- <name>ACTIVE LOG 007</name>
144
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
145
- <styleUrl>#ACTIVE LOG 007_Style</styleUrl>
146
- <LineString>
147
- <extrude>1</extrude>
148
- <tessellate>1</tessellate>
149
- <altitudeMode>clampedToGround</altitudeMode>
150
- <coordinates>-92.1063424,37.7660410,0 -92.1063484,37.7660343,0 -92.1064072,37.7660116,0 -92.1063222,37.7660255,0 -92.1063159,37.7660276,0 -92.1061872,37.7660959,0 -92.1061567,37.7661315,0 -92.1061508,37.7660695,0 -92.1062979,37.7658969,0 -92.1064438,37.7659811,0 -92.1063133,37.7659177,0 -92.1064520,37.7659557,0 -92.1064931,37.7659042,0 -92.1068083,37.7660882,0 -92.1068132,37.7660871,0 -92.1068298,37.7660067,0 -92.1067251,37.7660606,0 -92.1068829,37.7662063,0 -92.1068303,37.7662405,0 -92.1075316,37.7666790,0 -92.1074118,37.7666291,0</coordinates>
151
- </LineString>
152
- </Placemark>
153
- <Style id="ACTIVE LOG 008_Style">
154
- <LineStyle>
155
- <color>f0ff0000</color>
156
- <width>3</width>
157
- </LineStyle>
158
- </Style>
159
- <Placemark id="ACTIVE LOG 008">
160
- <name>ACTIVE LOG 008</name>
161
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
162
- <styleUrl>#ACTIVE LOG 008_Style</styleUrl>
163
- <LineString>
164
- <extrude>1</extrude>
165
- <tessellate>1</tessellate>
166
- <altitudeMode>clampedToGround</altitudeMode>
167
- <coordinates>-92.1069771,37.7659726,0 -92.1069771,37.7659726,0 -92.1067309,37.7660416,0 -92.1067057,37.7661384,0 -92.1066506,37.7661938,0 -92.1063597,37.7660353,0 -92.1064123,37.7660545,0 -92.1063966,37.7660382,0 -92.1064588,37.7659492,0 -92.1067473,37.7661197,0 -92.1069075,37.7663063,0</coordinates>
168
- </LineString>
169
- </Placemark>
170
- <Style id="ACTIVE LOG 009_Style">
171
- <LineStyle>
172
- <color>f0ff0000</color>
173
- <width>3</width>
174
- </LineStyle>
175
- </Style>
176
- <Placemark id="ACTIVE LOG 009">
177
- <name>ACTIVE LOG 009</name>
178
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
179
- <styleUrl>#ACTIVE LOG 009_Style</styleUrl>
180
- <LineString>
181
- <extrude>1</extrude>
182
- <tessellate>1</tessellate>
183
- <altitudeMode>clampedToGround</altitudeMode>
184
- <coordinates>-92.1069515,37.7663531,0 -92.1069515,37.7663531,0 -92.1061399,37.7661688,0 -92.1061226,37.7661273,0 -92.1060357,37.7662964,0 -92.1060300,37.7662592,0 -92.1059749,37.7662893,0 -92.1060920,37.7661804,0 -92.1062142,37.7660973,0 -92.1062267,37.7660834,0 -92.1062943,37.7660476,0 -92.1062820,37.7659425,0 -92.1056927,37.7660307,0 -92.1054921,37.7663635,0</coordinates>
185
- </LineString>
186
- </Placemark>
187
- <Style id="ACTIVE LOG 010_Style">
188
- <LineStyle>
189
- <color>f0ff0000</color>
190
- <width>3</width>
191
- </LineStyle>
192
- </Style>
193
- <Placemark id="ACTIVE LOG 010">
194
- <name>ACTIVE LOG 010</name>
195
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
196
- <styleUrl>#ACTIVE LOG 010_Style</styleUrl>
197
- <LineString>
198
- <extrude>1</extrude>
199
- <tessellate>1</tessellate>
200
- <altitudeMode>clampedToGround</altitudeMode>
201
- <coordinates>-92.1045702,37.7656328,0 -92.1045702,37.7656328,0 -92.1064434,37.7659841,0 -92.1064302,37.7659949,0 -92.1063949,37.7660570,0 -92.1071474,37.7661763,0</coordinates>
202
- </LineString>
203
- </Placemark>
204
- <Style id="ACTIVE LOG 011_Style">
205
- <LineStyle>
206
- <color>f0ff0000</color>
207
- <width>3</width>
208
- </LineStyle>
209
- </Style>
210
- <Placemark id="ACTIVE LOG 011">
211
- <name>ACTIVE LOG 011</name>
212
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
213
- <styleUrl>#ACTIVE LOG 011_Style</styleUrl>
214
- <LineString>
215
- <extrude>1</extrude>
216
- <tessellate>1</tessellate>
217
- <altitudeMode>clampedToGround</altitudeMode>
218
- <coordinates>-92.1071474,37.7661763,0 -92.1071474,37.7661763,0 -92.1061273,37.7656282,0</coordinates>
219
- </LineString>
220
- </Placemark>
221
- <Style id="ACTIVE LOG 012_Style">
222
- <LineStyle>
223
- <color>f0ff0000</color>
224
- <width>3</width>
225
- </LineStyle>
226
- </Style>
227
- <Placemark id="ACTIVE LOG 012">
228
- <name>ACTIVE LOG 012</name>
229
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
230
- <styleUrl>#ACTIVE LOG 012_Style</styleUrl>
231
- <LineString>
232
- <extrude>1</extrude>
233
- <tessellate>1</tessellate>
234
- <altitudeMode>clampedToGround</altitudeMode>
235
- <coordinates>-92.1058989,37.7654762,0</coordinates>
236
- </LineString>
237
- </Placemark>
238
- <Style id="ACTIVE LOG 013_Style">
239
- <LineStyle>
240
- <color>f0ff0000</color>
241
- <width>3</width>
242
- </LineStyle>
243
- </Style>
244
- <Placemark id="ACTIVE LOG 013">
245
- <name>ACTIVE LOG 013</name>
246
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
247
- <styleUrl>#ACTIVE LOG 013_Style</styleUrl>
248
- <LineString>
249
- <extrude>1</extrude>
250
- <tessellate>1</tessellate>
251
- <altitudeMode>clampedToGround</altitudeMode>
252
- <coordinates>-92.1063792,37.7662093,0 -92.1063469,37.7661321,0</coordinates>
253
- </LineString>
254
- </Placemark>
255
- <Style id="ACTIVE LOG 014_Style">
256
- <LineStyle>
257
- <color>f0ff0000</color>
258
- <width>3</width>
259
- </LineStyle>
260
- </Style>
261
- <Placemark id="ACTIVE LOG 014">
262
- <name>ACTIVE LOG 014</name>
263
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
264
- <styleUrl>#ACTIVE LOG 014_Style</styleUrl>
265
- <LineString>
266
- <extrude>1</extrude>
267
- <tessellate>1</tessellate>
268
- <altitudeMode>clampedToGround</altitudeMode>
269
- <coordinates>-92.1063765,37.7659876,0</coordinates>
270
- </LineString>
271
- </Placemark>
272
- <Style id="ACTIVE LOG 015_Style">
273
- <LineStyle>
274
- <color>f0ff0000</color>
275
- <width>3</width>
276
- </LineStyle>
277
- </Style>
278
- <Placemark id="ACTIVE LOG 015">
279
- <name>ACTIVE LOG 015</name>
280
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
281
- <styleUrl>#ACTIVE LOG 015_Style</styleUrl>
282
- <LineString>
283
- <extrude>1</extrude>
284
- <tessellate>1</tessellate>
285
- <altitudeMode>clampedToGround</altitudeMode>
286
- <coordinates>-92.1062901,37.7656944,0 -92.1062822,37.7657354,0 -92.1065175,37.7657769,0 -92.1064029,37.7658271,0</coordinates>
287
- </LineString>
288
- </Placemark>
289
- <Style id="ACTIVE LOG 016_Style">
290
- <LineStyle>
291
- <color>f0ff0000</color>
292
- <width>3</width>
293
- </LineStyle>
294
- </Style>
295
- <Placemark id="ACTIVE LOG 016">
296
- <name>ACTIVE LOG 016</name>
297
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
298
- <styleUrl>#ACTIVE LOG 016_Style</styleUrl>
299
- <LineString>
300
- <extrude>1</extrude>
301
- <tessellate>1</tessellate>
302
- <altitudeMode>clampedToGround</altitudeMode>
303
- <coordinates>-92.1058823,37.7664187,0 -92.1058823,37.7664187,0 -92.1059405,37.7656725,0</coordinates>
304
- </LineString>
305
- </Placemark>
306
- <Style id="ACTIVE LOG 017_Style">
307
- <LineStyle>
308
- <color>f0ff0000</color>
309
- <width>3</width>
310
- </LineStyle>
311
- </Style>
312
- <Placemark id="ACTIVE LOG 017">
313
- <name>ACTIVE LOG 017</name>
314
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
315
- <styleUrl>#ACTIVE LOG 017_Style</styleUrl>
316
- <LineString>
317
- <extrude>1</extrude>
318
- <tessellate>1</tessellate>
319
- <altitudeMode>clampedToGround</altitudeMode>
320
- <coordinates>-92.1059930,37.7657111,0 -92.1059930,37.7657111,0 -92.1059930,37.7657111,0 -92.1059930,37.7657111,0 -92.1062242,37.7661133,0 -92.1061401,37.7661300,0 -92.1060727,37.7662337,0 -92.1060062,37.7662161,0 -92.1060678,37.7662626,0 -92.1061414,37.7662984,0 -92.1060942,37.7662715,0 -92.1060832,37.7662916,0 -92.1061544,37.7663038,0 -92.1059558,37.7661940,0 -92.1059113,37.7661710,0 -92.1054410,37.7657596,0 -92.1055711,37.7655537,0 -92.1057742,37.7654022,0 -92.1060735,37.7652946,0 -92.1066692,37.7648910,0 -92.1065956,37.7651515,0 -92.1066760,37.7650822,0 -92.1067111,37.7650038,0 -92.1064272,37.7647545,0 -92.1059477,37.7644661,0 -92.1045818,37.7635783,0 -92.1039362,37.7630832,0 -92.1034788,37.7626780,0 -92.1032514,37.7624093,0 -92.1027825,37.7612277,0 -92.1027225,37.7599740,0 -92.1030759,37.7590553,0 -92.1035380,37.7582943,0 -92.1036424,37.7579241,0 -92.1036923,37.7569009,0 -92.1037033,37.7565710,0 -92.1036894,37.7561894,0 -92.1036233,37.7556396,0 -92.1036001,37.7554459,0 -92.1035578,37.7549819,0 -92.1035057,37.7541099,0 -92.1037858,37.7529248,0 -92.1039433,37.7523864,0 -92.1043190,37.7514107,0 -92.1044008,37.7512472,0 -92.1044320,37.7511847,0 -92.1041966,37.7511303,0 -92.1041966,37.7511303,0 -92.1041966,37.7511303,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0 -92.1044485,37.7511449,0</coordinates>
321
- </LineString>
322
- </Placemark>
323
- <Style id="ACTIVE LOG 018_Style">
324
- <LineStyle>
325
- <color>f0ff0000</color>
326
- <width>3</width>
327
- </LineStyle>
328
- </Style>
329
- <Placemark id="ACTIVE LOG 018">
330
- <name>ACTIVE LOG 018</name>
331
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
332
- <styleUrl>#ACTIVE LOG 018_Style</styleUrl>
333
- <LineString>
334
- <extrude>1</extrude>
335
- <tessellate>1</tessellate>
336
- <altitudeMode>clampedToGround</altitudeMode>
337
- <coordinates>-92.1040640,37.7511047,0 -92.1040640,37.7511047,0 -92.1040640,37.7511047,0</coordinates>
338
- </LineString>
339
- </Placemark>
340
- </Folder>
341
- </Document>
342
- </kml>
@@ -1,329 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <kml xmlns="http://www.opengis.net/kml/2.2">
3
- <Document>
4
- <open>1</open>
5
- <Snippet maxLines="1"/>
6
- <description><![CDATA[09-01-2008 12:00:00 PM<br/><br/>TF1 Converter Version 1.0<br/>MO Task Force 1<br/>]]></description>
7
- <Style id="sn_noicon">
8
- <IconStyle>
9
- <Icon/>
10
- </IconStyle>
11
- </Style>
12
- <Folder>
13
- <name>Waypoints</name>
14
- <Placemark>
15
- <name>001</name>
16
- <Snippet maxLines="0"/>
17
- <Style id="normalPlacemark">
18
- <IconStyle>
19
- <Icon>
20
- <href>c:\program files\gpx2kml\icon\tf_ge\01.png</href>
21
- </Icon>
22
- </IconStyle>
23
- </Style>
24
- <description><![CDATA[18-OCT-09 2:17:38PM<br>Search Start<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60922 8133<br>UTM: 15S 560922mE 4308133mN<br>Lat/Long: 38.9199972/-92.2972443<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
25
- <Point>
26
- <coordinates>-92.2972443,38.9199972</coordinates>
27
- </Point>
28
- </Placemark>
29
- <Placemark>
30
- <name>002</name>
31
- <Snippet maxLines="0"/>
32
- <Style id="normalPlacemark">
33
- <IconStyle>
34
- <Icon>
35
- <href>c:\program files\gpx2kml\icon\tf_ge\03.png</href>
36
- </Icon>
37
- </IconStyle>
38
- </Style>
39
- <description><![CDATA[18-OCT-09 2:18:07PM<br>Victim Detected<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60946 8109<br>UTM: 15S 560946mE 4308109mN<br>Lat/Long: 38.9197762/-92.2969611<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
40
- <Point>
41
- <coordinates>-92.2969611,38.9197762</coordinates>
42
- </Point>
43
- </Placemark>
44
- <Placemark>
45
- <name>003</name>
46
- <Snippet maxLines="0"/>
47
- <Style id="normalPlacemark">
48
- <IconStyle>
49
- <Icon>
50
- <href>c:\program files\gpx2kml\icon\tf_ge\04.png</href>
51
- </Icon>
52
- </IconStyle>
53
- </Style>
54
- <description><![CDATA[18-OCT-09 2:18:36PM<br>Victim Confirmed<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60928 8079<br>UTM: 15S 560928mE 4308079mN<br>Lat/Long: 38.9195040/-92.2971813<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
55
- <Point>
56
- <coordinates>-92.2971813,38.9195040</coordinates>
57
- </Point>
58
- </Placemark>
59
- <Placemark>
60
- <name>004</name>
61
- <Snippet maxLines="0"/>
62
- <Style id="normalPlacemark">
63
- <IconStyle>
64
- <Icon>
65
- <href>c:\program files\gpx2kml\icon\tf_ge\11.png</href>
66
- </Icon>
67
- </IconStyle>
68
- </Style>
69
- <description><![CDATA[18-OCT-09 2:19:49PM<br>Collection Point<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60883 8039<br>UTM: 15S 560883mE 4308039mN<br>Lat/Long: 38.9191455/-92.2977024<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
70
- <Point>
71
- <coordinates>-92.2977024,38.9191455</coordinates>
72
- </Point>
73
- </Placemark>
74
- <Placemark>
75
- <name>005</name>
76
- <Snippet maxLines="0"/>
77
- <Style id="normalPlacemark">
78
- <IconStyle>
79
- <Icon>
80
- <href>c:\program files\gpx2kml\icon\tf_ge\18.png</href>
81
- </Icon>
82
- </IconStyle>
83
- </Style>
84
- <description><![CDATA[18-OCT-09 2:20:33PM<br>Structure Damage / Safe<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60912 8043<br>UTM: 15S 560912mE 4308043mN<br>Lat/Long: 38.9191831/-92.2973642<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
85
- <Point>
86
- <coordinates>-92.2973642,38.9191831</coordinates>
87
- </Point>
88
- </Placemark>
89
- <Placemark>
90
- <name>006</name>
91
- <Snippet maxLines="0"/>
92
- <Style id="normalPlacemark">
93
- <IconStyle>
94
- <Icon>
95
- <href>c:\program files\gpx2kml\icon\tf_ge\15.png</href>
96
- </Icon>
97
- </IconStyle>
98
- </Style>
99
- <description><![CDATA[18-OCT-09 2:21:40PM<br>Criminal Activity<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60966 8093<br>UTM: 15S 560966mE 4308093mN<br>Lat/Long: 38.9196337/-92.2967348<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
100
- <Point>
101
- <coordinates>-92.2967348,38.9196337</coordinates>
102
- </Point>
103
- </Placemark>
104
- <Placemark>
105
- <name>007</name>
106
- <Snippet maxLines="0"/>
107
- <Style id="normalPlacemark">
108
- <IconStyle>
109
- <Icon>
110
- <href>c:\program files\gpx2kml\icon\tf_ge\13.png</href>
111
- </Icon>
112
- </IconStyle>
113
- </Style>
114
- <description><![CDATA[18-OCT-09 2:22:29PM<br>Command Post<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 61002 8066<br>UTM: 15S 561002mE 4308066mN<br>Lat/Long: 38.9193832/-92.2963225<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
115
- <Point>
116
- <coordinates>-92.2963225,38.9193832</coordinates>
117
- </Point>
118
- </Placemark>
119
- <Placemark>
120
- <name>008</name>
121
- <Snippet maxLines="0"/>
122
- <Style id="normalPlacemark">
123
- <IconStyle>
124
- <Icon>
125
- <href>c:\program files\gpx2kml\icon\tf_ge\14.png</href>
126
- </Icon>
127
- </IconStyle>
128
- </Style>
129
- <description><![CDATA[18-OCT-09 2:23:14PM<br>Staging Area<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 61033 8055<br>UTM: 15S 561033mE 4308055mN<br>Lat/Long: 38.9192829/-92.2959630<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
130
- <Point>
131
- <coordinates>-92.2959630,38.9192829</coordinates>
132
- </Point>
133
- </Placemark>
134
- <Placemark>
135
- <name>009</name>
136
- <Snippet maxLines="0"/>
137
- <Style id="normalPlacemark">
138
- <IconStyle>
139
- <Icon>
140
- <href>c:\program files\gpx2kml\icon\tf_ge\19.png</href>
141
- </Icon>
142
- </IconStyle>
143
- </Style>
144
- <description><![CDATA[18-OCT-09 2:24:06PM<br>Meaning 19<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60985 8098<br>UTM: 15S 560985mE 4308098mN<br>Lat/Long: 38.9196773/-92.2965171<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
145
- <Point>
146
- <coordinates>-92.2965171,38.9196773</coordinates>
147
- </Point>
148
- </Placemark>
149
- <Placemark>
150
- <name>010</name>
151
- <Snippet maxLines="0"/>
152
- <Style id="normalPlacemark">
153
- <IconStyle>
154
- <Icon>
155
- <href>c:\program files\gpx2kml\icon\tf_ge\16.png</href>
156
- </Icon>
157
- </IconStyle>
158
- </Style>
159
- <description><![CDATA[18-OCT-09 2:25:24PM<br>Meaning 16<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60909 8156<br>UTM: 15S 560909mE 4308156mN<br>Lat/Long: 38.9202020/-92.2973907<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
160
- <Point>
161
- <coordinates>-92.2973907,38.9202020</coordinates>
162
- </Point>
163
- </Placemark>
164
- <Placemark>
165
- <name>011</name>
166
- <Snippet maxLines="0"/>
167
- <Style id="normalPlacemark">
168
- <IconStyle>
169
- <Icon>
170
- <href>c:\program files\gpx2kml\icon\tf_ge\21.png</href>
171
- </Icon>
172
- </IconStyle>
173
- </Style>
174
- <description><![CDATA[18-OCT-09 2:26:20PM<br>Extra 21<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60918 8213<br>UTM: 15S 560918mE 4308213mN<br>Lat/Long: 38.9207150/-92.2972759<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
175
- <Point>
176
- <coordinates>-92.2972759,38.9207150</coordinates>
177
- </Point>
178
- </Placemark>
179
- <Placemark>
180
- <name>012</name>
181
- <Snippet maxLines="0"/>
182
- <Style id="normalPlacemark">
183
- <IconStyle>
184
- <Icon>
185
- <href>c:\program files\gpx2kml\icon\tf_ge\22.png</href>
186
- </Icon>
187
- </IconStyle>
188
- </Style>
189
- <description><![CDATA[18-OCT-09 2:26:40PM<br>Extra 22<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60902 8223<br>UTM: 15S 560902mE 4308223mN<br>Lat/Long: 38.9208083/-92.2974574<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
190
- <Point>
191
- <coordinates>-92.2974574,38.9208083</coordinates>
192
- </Point>
193
- </Placemark>
194
- <Placemark>
195
- <name>013</name>
196
- <Snippet maxLines="0"/>
197
- <Style id="normalPlacemark">
198
- <IconStyle>
199
- <Icon>
200
- <href>c:\program files\gpx2kml\icon\tf_ge\23.png</href>
201
- </Icon>
202
- </IconStyle>
203
- </Style>
204
- <description><![CDATA[18-OCT-09 2:27:10PM<br>Extra 23<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60880 8191<br>UTM: 15S 560880mE 4308191mN<br>Lat/Long: 38.9205154/-92.2977240<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
205
- <Point>
206
- <coordinates>-92.2977240,38.9205154</coordinates>
207
- </Point>
208
- </Placemark>
209
- <Placemark>
210
- <name>014</name>
211
- <Snippet maxLines="0"/>
212
- <Style id="normalPlacemark">
213
- <IconStyle>
214
- <Icon>
215
- <href>c:\program files\gpx2kml\icon\tf_ge\02.png</href>
216
- </Icon>
217
- </IconStyle>
218
- </Style>
219
- <description><![CDATA[18-OCT-09 2:29:16PM<br>Search Stop<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60822 8145<br>UTM: 15S 560822mE 4308145mN<br>Lat/Long: 38.9201116/-92.2983951<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
220
- <Point>
221
- <coordinates>-92.2983951,38.9201116</coordinates>
222
- </Point>
223
- </Placemark>
224
- <Placemark>
225
- <name>2804 Wild Plum</name>
226
- <Snippet maxLines="0"/>
227
- <Style id="normalPlacemark">
228
- <IconStyle>
229
- <Icon>
230
- <href>c:\program files\gpx2kml\icon\tf_ge\default.png</href>
231
- </Icon>
232
- </IconStyle>
233
- </Style>
234
- <description><![CDATA[Weber Home<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60826 8138<br>UTM: 15S 560826mE 4308138mN<br>Lat/Long: 38.9200473/-92.2983507<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
235
- <Point>
236
- <coordinates>-92.2983507,38.9200473</coordinates>
237
- </Point>
238
- </Placemark>
239
- </Folder>
240
- <Folder>
241
- <name>Tracks</name>
242
- <Style id="18-OCT-09_Style">
243
- <LineStyle>
244
- <color>f0000080</color>
245
- <width>3</width>
246
- </LineStyle>
247
- </Style>
248
- <Placemark id="18-OCT-09">
249
- <name>18-OCT-09</name>
250
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
251
- <styleUrl>#18-OCT-09_Style</styleUrl>
252
- <LineString>
253
- <extrude>1</extrude>
254
- <tessellate>1</tessellate>
255
- <altitudeMode>clampedToGround</altitudeMode>
256
- <coordinates>-92.2974500,38.9192166,0 -92.2974480,38.9192131,0 -92.2974491,38.9192131,0 -92.2974498,38.9192121,0 -92.2974481,38.9192053,0 -92.2974619,38.9191897,0 -92.2975066,38.9191654,0 -92.2975411,38.9191634,0 -92.2975676,38.9191661,0 -92.2977170,38.9191401,0 -92.2977401,38.9190596,0 -92.2977100,38.9190338,0 -92.2976056,38.9190399,0 -92.2975292,38.9190577,0 -92.2974253,38.9191198,0 -92.2973117,38.9192653,0 -92.2971953,38.9193899,0 -92.2970750,38.9195301,0 -92.2969539,38.9196197,0 -92.2968409,38.9196836,0 -92.2968185,38.9196751,0 -92.2966788,38.9195942,0 -92.2965691,38.9195161,0 -92.2964531,38.9194482,0 -92.2963269,38.9193805,0 -92.2963000,38.9193815,0 -92.2961640,38.9192872,0 -92.2960841,38.9192231,0 -92.2960546,38.9192064,0 -92.2959645,38.9193209,0 -92.2960287,38.9193560,0 -92.2960931,38.9193992,0 -92.2961377,38.9194369,0 -92.2962814,38.9195250,0 -92.2962871,38.9195328,0 -92.2963490,38.9195311,0 -92.2963994,38.9195736,0 -92.2964627,38.9196379,0 -92.2964759,38.9196596,0 -92.2966064,38.9197274,0 -92.2968050,38.9198301,0 -92.2968177,38.9198532,0 -92.2968948,38.9199238,0 -92.2969240,38.9199364,0 -92.2969881,38.9199673,0 -92.2971074,38.9200326,0 -92.2971658,38.9200600,0 -92.2972693,38.9201327,0 -92.2974267,38.9202471,0 -92.2973874,38.9203061,0 -92.2973550,38.9204382,0 -92.2972989,38.9206033,0 -92.2972725,38.9207438,0 -92.2972764,38.9207743,0 -92.2974020,38.9208257,0 -92.2974725,38.9207973,0 -92.2976285,38.9206118,0 -92.2977527,38.9204926,0 -92.2979666,38.9202957,0 -92.2981386,38.9201607,0 -92.2982495,38.9200683,0 -92.2982619,38.9200570,0 -92.2983682,38.9200564,0 -92.2983768,38.9200948,0 -92.2983971,38.9201153,0 -92.2983873,38.9201652,0</coordinates>
257
- </LineString>
258
- </Placemark>
259
- <Style id="ACTIVE LOG 001_Style">
260
- <LineStyle>
261
- <color>f000ffff</color>
262
- <width>3</width>
263
- </LineStyle>
264
- </Style>
265
- <Placemark id="ACTIVE LOG 001">
266
- <name>ACTIVE LOG 001</name>
267
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
268
- <styleUrl>#ACTIVE LOG 001_Style</styleUrl>
269
- <LineString>
270
- <extrude>1</extrude>
271
- <tessellate>1</tessellate>
272
- <altitudeMode>clampedToGround</altitudeMode>
273
- <coordinates>-92.2974500,38.9192166,0</coordinates>
274
- </LineString>
275
- </Placemark>
276
- <Style id="ACTIVE LOG 002_Style">
277
- <LineStyle>
278
- <color>f000ffff</color>
279
- <width>3</width>
280
- </LineStyle>
281
- </Style>
282
- <Placemark id="ACTIVE LOG 002">
283
- <name>ACTIVE LOG 002</name>
284
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
285
- <styleUrl>#ACTIVE LOG 002_Style</styleUrl>
286
- <LineString>
287
- <extrude>1</extrude>
288
- <tessellate>1</tessellate>
289
- <altitudeMode>clampedToGround</altitudeMode>
290
- <coordinates>-92.2974480,38.9192131,0</coordinates>
291
- </LineString>
292
- </Placemark>
293
- <Style id="ACTIVE LOG 003_Style">
294
- <LineStyle>
295
- <color>f000ffff</color>
296
- <width>3</width>
297
- </LineStyle>
298
- </Style>
299
- <Placemark id="ACTIVE LOG 003">
300
- <name>ACTIVE LOG 003</name>
301
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
302
- <styleUrl>#ACTIVE LOG 003_Style</styleUrl>
303
- <LineString>
304
- <extrude>1</extrude>
305
- <tessellate>1</tessellate>
306
- <altitudeMode>clampedToGround</altitudeMode>
307
- <coordinates>-92.2974491,38.9192131,0</coordinates>
308
- </LineString>
309
- </Placemark>
310
- <Style id="ACTIVE LOG 004_Style">
311
- <LineStyle>
312
- <color>f000ffff</color>
313
- <width>3</width>
314
- </LineStyle>
315
- </Style>
316
- <Placemark id="ACTIVE LOG 004">
317
- <name>ACTIVE LOG 004</name>
318
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
319
- <styleUrl>#ACTIVE LOG 004_Style</styleUrl>
320
- <LineString>
321
- <extrude>1</extrude>
322
- <tessellate>1</tessellate>
323
- <altitudeMode>clampedToGround</altitudeMode>
324
- <coordinates>-92.2974498,38.9192121,0 -92.2974481,38.9192053,0 -92.2974619,38.9191897,0 -92.2975066,38.9191654,0 -92.2975411,38.9191634,0 -92.2975676,38.9191661,0 -92.2977170,38.9191401,0 -92.2977401,38.9190596,0 -92.2977100,38.9190338,0 -92.2976056,38.9190399,0 -92.2975292,38.9190577,0 -92.2974253,38.9191198,0 -92.2973117,38.9192653,0 -92.2971953,38.9193899,0 -92.2970750,38.9195301,0 -92.2969539,38.9196197,0 -92.2968409,38.9196836,0 -92.2968185,38.9196751,0 -92.2966788,38.9195942,0 -92.2965691,38.9195161,0 -92.2964531,38.9194482,0 -92.2963269,38.9193805,0 -92.2963000,38.9193815,0 -92.2961640,38.9192872,0 -92.2960841,38.9192231,0 -92.2960546,38.9192064,0 -92.2959645,38.9193209,0 -92.2960287,38.9193560,0 -92.2960931,38.9193992,0 -92.2961377,38.9194369,0 -92.2962814,38.9195250,0 -92.2962871,38.9195328,0 -92.2963490,38.9195311,0 -92.2963994,38.9195736,0 -92.2964627,38.9196379,0 -92.2964759,38.9196596,0 -92.2966064,38.9197274,0 -92.2968050,38.9198301,0 -92.2968177,38.9198532,0 -92.2968948,38.9199238,0 -92.2969240,38.9199364,0 -92.2969881,38.9199673,0 -92.2971074,38.9200326,0 -92.2971658,38.9200600,0 -92.2972693,38.9201327,0 -92.2974267,38.9202471,0 -92.2973874,38.9203061,0 -92.2973550,38.9204382,0 -92.2972989,38.9206033,0 -92.2972725,38.9207438,0 -92.2972764,38.9207743,0 -92.2974020,38.9208257,0 -92.2974725,38.9207973,0 -92.2976285,38.9206118,0 -92.2977527,38.9204926,0 -92.2979666,38.9202957,0 -92.2981386,38.9201607,0 -92.2982495,38.9200683,0 -92.2982619,38.9200570,0 -92.2983682,38.9200564,0 -92.2983768,38.9200948,0 -92.2983971,38.9201153,0 -92.2983873,38.9201652,0</coordinates>
325
- </LineString>
326
- </Placemark>
327
- </Folder>
328
- </Document>
329
- </kml>
@@ -1,329 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <kml xmlns="http://www.opengis.net/kml/2.2">
3
- <Document>
4
- <open>1</open>
5
- <Snippet maxLines="1"/>
6
- <description><![CDATA[09-01-2008 12:00:00 PM<br/><br/>TF1 Converter Version 1.0<br/>MO Task Force 1<br/>]]></description>
7
- <Style id="sn_noicon">
8
- <IconStyle>
9
- <Icon/>
10
- </IconStyle>
11
- </Style>
12
- <Folder>
13
- <name>Waypoints</name>
14
- <Placemark>
15
- <name>icon_name_1</name>
16
- <Snippet maxLines="0"/>
17
- <Style id="normalPlacemark">
18
- <IconStyle>
19
- <Icon>
20
- <href>c:\program files\gpx2kml\icon\tf_ge\01.png</href>
21
- </Icon>
22
- </IconStyle>
23
- </Style>
24
- <description><![CDATA[18-OCT-09 2:17:38PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60922 8133<br>UTM: 15S 560922mE 4308133mN<br>Lat/Long: 38.9199972/-92.2972443<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
25
- <Point>
26
- <coordinates>-92.2972443,38.9199972</coordinates>
27
- </Point>
28
- </Placemark>
29
- <Placemark>
30
- <name>icon_name_3</name>
31
- <Snippet maxLines="0"/>
32
- <Style id="normalPlacemark">
33
- <IconStyle>
34
- <Icon>
35
- <href>c:\program files\gpx2kml\icon\tf_ge\03.png</href>
36
- </Icon>
37
- </IconStyle>
38
- </Style>
39
- <description><![CDATA[18-OCT-09 2:18:07PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60946 8109<br>UTM: 15S 560946mE 4308109mN<br>Lat/Long: 38.9197762/-92.2969611<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
40
- <Point>
41
- <coordinates>-92.2969611,38.9197762</coordinates>
42
- </Point>
43
- </Placemark>
44
- <Placemark>
45
- <name>icon_name_4</name>
46
- <Snippet maxLines="0"/>
47
- <Style id="normalPlacemark">
48
- <IconStyle>
49
- <Icon>
50
- <href>c:\program files\gpx2kml\icon\tf_ge\04.png</href>
51
- </Icon>
52
- </IconStyle>
53
- </Style>
54
- <description><![CDATA[18-OCT-09 2:18:36PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60928 8079<br>UTM: 15S 560928mE 4308079mN<br>Lat/Long: 38.9195040/-92.2971813<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
55
- <Point>
56
- <coordinates>-92.2971813,38.9195040</coordinates>
57
- </Point>
58
- </Placemark>
59
- <Placemark>
60
- <name>icon_name_11</name>
61
- <Snippet maxLines="0"/>
62
- <Style id="normalPlacemark">
63
- <IconStyle>
64
- <Icon>
65
- <href>c:\program files\gpx2kml\icon\tf_ge\11.png</href>
66
- </Icon>
67
- </IconStyle>
68
- </Style>
69
- <description><![CDATA[18-OCT-09 2:19:49PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60883 8039<br>UTM: 15S 560883mE 4308039mN<br>Lat/Long: 38.9191455/-92.2977024<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
70
- <Point>
71
- <coordinates>-92.2977024,38.9191455</coordinates>
72
- </Point>
73
- </Placemark>
74
- <Placemark>
75
- <name>icon_name_18</name>
76
- <Snippet maxLines="0"/>
77
- <Style id="normalPlacemark">
78
- <IconStyle>
79
- <Icon>
80
- <href>c:\program files\gpx2kml\icon\tf_ge\18.png</href>
81
- </Icon>
82
- </IconStyle>
83
- </Style>
84
- <description><![CDATA[18-OCT-09 2:20:33PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60912 8043<br>UTM: 15S 560912mE 4308043mN<br>Lat/Long: 38.9191831/-92.2973642<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
85
- <Point>
86
- <coordinates>-92.2973642,38.9191831</coordinates>
87
- </Point>
88
- </Placemark>
89
- <Placemark>
90
- <name>icon_name_15</name>
91
- <Snippet maxLines="0"/>
92
- <Style id="normalPlacemark">
93
- <IconStyle>
94
- <Icon>
95
- <href>c:\program files\gpx2kml\icon\tf_ge\15.png</href>
96
- </Icon>
97
- </IconStyle>
98
- </Style>
99
- <description><![CDATA[18-OCT-09 2:21:40PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60966 8093<br>UTM: 15S 560966mE 4308093mN<br>Lat/Long: 38.9196337/-92.2967348<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
100
- <Point>
101
- <coordinates>-92.2967348,38.9196337</coordinates>
102
- </Point>
103
- </Placemark>
104
- <Placemark>
105
- <name>icon_name_13</name>
106
- <Snippet maxLines="0"/>
107
- <Style id="normalPlacemark">
108
- <IconStyle>
109
- <Icon>
110
- <href>c:\program files\gpx2kml\icon\tf_ge\13.png</href>
111
- </Icon>
112
- </IconStyle>
113
- </Style>
114
- <description><![CDATA[18-OCT-09 2:22:29PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 61002 8066<br>UTM: 15S 561002mE 4308066mN<br>Lat/Long: 38.9193832/-92.2963225<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
115
- <Point>
116
- <coordinates>-92.2963225,38.9193832</coordinates>
117
- </Point>
118
- </Placemark>
119
- <Placemark>
120
- <name>icon_name_14</name>
121
- <Snippet maxLines="0"/>
122
- <Style id="normalPlacemark">
123
- <IconStyle>
124
- <Icon>
125
- <href>c:\program files\gpx2kml\icon\tf_ge\14.png</href>
126
- </Icon>
127
- </IconStyle>
128
- </Style>
129
- <description><![CDATA[18-OCT-09 2:23:14PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 61033 8055<br>UTM: 15S 561033mE 4308055mN<br>Lat/Long: 38.9192829/-92.2959630<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
130
- <Point>
131
- <coordinates>-92.2959630,38.9192829</coordinates>
132
- </Point>
133
- </Placemark>
134
- <Placemark>
135
- <name>icon_name_19</name>
136
- <Snippet maxLines="0"/>
137
- <Style id="normalPlacemark">
138
- <IconStyle>
139
- <Icon>
140
- <href>c:\program files\gpx2kml\icon\tf_ge\19.png</href>
141
- </Icon>
142
- </IconStyle>
143
- </Style>
144
- <description><![CDATA[18-OCT-09 2:24:06PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60985 8098<br>UTM: 15S 560985mE 4308098mN<br>Lat/Long: 38.9196773/-92.2965171<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
145
- <Point>
146
- <coordinates>-92.2965171,38.9196773</coordinates>
147
- </Point>
148
- </Placemark>
149
- <Placemark>
150
- <name>icon_name_16</name>
151
- <Snippet maxLines="0"/>
152
- <Style id="normalPlacemark">
153
- <IconStyle>
154
- <Icon>
155
- <href>c:\program files\gpx2kml\icon\tf_ge\16.png</href>
156
- </Icon>
157
- </IconStyle>
158
- </Style>
159
- <description><![CDATA[18-OCT-09 2:25:24PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60909 8156<br>UTM: 15S 560909mE 4308156mN<br>Lat/Long: 38.9202020/-92.2973907<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
160
- <Point>
161
- <coordinates>-92.2973907,38.9202020</coordinates>
162
- </Point>
163
- </Placemark>
164
- <Placemark>
165
- <name>icon_name_21</name>
166
- <Snippet maxLines="0"/>
167
- <Style id="normalPlacemark">
168
- <IconStyle>
169
- <Icon>
170
- <href>c:\program files\gpx2kml\icon\tf_ge\21.png</href>
171
- </Icon>
172
- </IconStyle>
173
- </Style>
174
- <description><![CDATA[18-OCT-09 2:26:20PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60918 8213<br>UTM: 15S 560918mE 4308213mN<br>Lat/Long: 38.9207150/-92.2972759<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
175
- <Point>
176
- <coordinates>-92.2972759,38.9207150</coordinates>
177
- </Point>
178
- </Placemark>
179
- <Placemark>
180
- <name>icon_name_22</name>
181
- <Snippet maxLines="0"/>
182
- <Style id="normalPlacemark">
183
- <IconStyle>
184
- <Icon>
185
- <href>c:\program files\gpx2kml\icon\tf_ge\22.png</href>
186
- </Icon>
187
- </IconStyle>
188
- </Style>
189
- <description><![CDATA[18-OCT-09 2:26:40PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60902 8223<br>UTM: 15S 560902mE 4308223mN<br>Lat/Long: 38.9208083/-92.2974574<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
190
- <Point>
191
- <coordinates>-92.2974574,38.9208083</coordinates>
192
- </Point>
193
- </Placemark>
194
- <Placemark>
195
- <name>icon_name_23</name>
196
- <Snippet maxLines="0"/>
197
- <Style id="normalPlacemark">
198
- <IconStyle>
199
- <Icon>
200
- <href>c:\program files\gpx2kml\icon\tf_ge\23.png</href>
201
- </Icon>
202
- </IconStyle>
203
- </Style>
204
- <description><![CDATA[18-OCT-09 2:27:10PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60880 8191<br>UTM: 15S 560880mE 4308191mN<br>Lat/Long: 38.9205154/-92.2977240<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
205
- <Point>
206
- <coordinates>-92.2977240,38.9205154</coordinates>
207
- </Point>
208
- </Placemark>
209
- <Placemark>
210
- <name>icon_name_2</name>
211
- <Snippet maxLines="0"/>
212
- <Style id="normalPlacemark">
213
- <IconStyle>
214
- <Icon>
215
- <href>c:\program files\gpx2kml\icon\tf_ge\02.png</href>
216
- </Icon>
217
- </IconStyle>
218
- </Style>
219
- <description><![CDATA[18-OCT-09 2:29:16PM<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60822 8145<br>UTM: 15S 560822mE 4308145mN<br>Lat/Long: 38.9201116/-92.2983951<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
220
- <Point>
221
- <coordinates>-92.2983951,38.9201116</coordinates>
222
- </Point>
223
- </Placemark>
224
- <Placemark>
225
- <name>icon_name_20</name>
226
- <Snippet maxLines="0"/>
227
- <Style id="normalPlacemark">
228
- <IconStyle>
229
- <Icon>
230
- <href>c:\program files\gpx2kml\icon\tf_ge\20.png</href>
231
- </Icon>
232
- </IconStyle>
233
- </Style>
234
- <description><![CDATA[Weber Home<br>Default<br>KML file, track, and waypoint comment.<br>USNG: 15S WD 60826 8138<br>UTM: 15S 560826mE 4308138mN<br>Lat/Long: 38.9200473/-92.2983507<br>c:\program files\gpx2kml\test - c:\program files\gpx2kml\test]]></description>
235
- <Point>
236
- <coordinates>-92.2983507,38.9200473</coordinates>
237
- </Point>
238
- </Placemark>
239
- </Folder>
240
- <Folder>
241
- <name>Tracks</name>
242
- <Style id="18-OCT-09_Style">
243
- <LineStyle>
244
- <color>f0000080</color>
245
- <width>3</width>
246
- </LineStyle>
247
- </Style>
248
- <Placemark id="18-OCT-09">
249
- <name>18-OCT-09</name>
250
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
251
- <styleUrl>#18-OCT-09_Style</styleUrl>
252
- <LineString>
253
- <extrude>1</extrude>
254
- <tessellate>1</tessellate>
255
- <altitudeMode>clampedToGround</altitudeMode>
256
- <coordinates>-92.2974500,38.9192166,0 -92.2974480,38.9192131,0 -92.2974491,38.9192131,0 -92.2974498,38.9192121,0 -92.2974481,38.9192053,0 -92.2974619,38.9191897,0 -92.2975066,38.9191654,0 -92.2975411,38.9191634,0 -92.2975676,38.9191661,0 -92.2977170,38.9191401,0 -92.2977401,38.9190596,0 -92.2977100,38.9190338,0 -92.2976056,38.9190399,0 -92.2975292,38.9190577,0 -92.2974253,38.9191198,0 -92.2973117,38.9192653,0 -92.2971953,38.9193899,0 -92.2970750,38.9195301,0 -92.2969539,38.9196197,0 -92.2968409,38.9196836,0 -92.2968185,38.9196751,0 -92.2966788,38.9195942,0 -92.2965691,38.9195161,0 -92.2964531,38.9194482,0 -92.2963269,38.9193805,0 -92.2963000,38.9193815,0 -92.2961640,38.9192872,0 -92.2960841,38.9192231,0 -92.2960546,38.9192064,0 -92.2959645,38.9193209,0 -92.2960287,38.9193560,0 -92.2960931,38.9193992,0 -92.2961377,38.9194369,0 -92.2962814,38.9195250,0 -92.2962871,38.9195328,0 -92.2963490,38.9195311,0 -92.2963994,38.9195736,0 -92.2964627,38.9196379,0 -92.2964759,38.9196596,0 -92.2966064,38.9197274,0 -92.2968050,38.9198301,0 -92.2968177,38.9198532,0 -92.2968948,38.9199238,0 -92.2969240,38.9199364,0 -92.2969881,38.9199673,0 -92.2971074,38.9200326,0 -92.2971658,38.9200600,0 -92.2972693,38.9201327,0 -92.2974267,38.9202471,0 -92.2973874,38.9203061,0 -92.2973550,38.9204382,0 -92.2972989,38.9206033,0 -92.2972725,38.9207438,0 -92.2972764,38.9207743,0 -92.2974020,38.9208257,0 -92.2974725,38.9207973,0 -92.2976285,38.9206118,0 -92.2977527,38.9204926,0 -92.2979666,38.9202957,0 -92.2981386,38.9201607,0 -92.2982495,38.9200683,0 -92.2982619,38.9200570,0 -92.2983682,38.9200564,0 -92.2983768,38.9200948,0 -92.2983971,38.9201153,0 -92.2983873,38.9201652,0</coordinates>
257
- </LineString>
258
- </Placemark>
259
- <Style id="ACTIVE LOG 001_Style">
260
- <LineStyle>
261
- <color>f000ffff</color>
262
- <width>3</width>
263
- </LineStyle>
264
- </Style>
265
- <Placemark id="ACTIVE LOG 001">
266
- <name>ACTIVE LOG 001</name>
267
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
268
- <styleUrl>#ACTIVE LOG 001_Style</styleUrl>
269
- <LineString>
270
- <extrude>1</extrude>
271
- <tessellate>1</tessellate>
272
- <altitudeMode>clampedToGround</altitudeMode>
273
- <coordinates>-92.2974500,38.9192166,0</coordinates>
274
- </LineString>
275
- </Placemark>
276
- <Style id="ACTIVE LOG 002_Style">
277
- <LineStyle>
278
- <color>f000ffff</color>
279
- <width>3</width>
280
- </LineStyle>
281
- </Style>
282
- <Placemark id="ACTIVE LOG 002">
283
- <name>ACTIVE LOG 002</name>
284
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
285
- <styleUrl>#ACTIVE LOG 002_Style</styleUrl>
286
- <LineString>
287
- <extrude>1</extrude>
288
- <tessellate>1</tessellate>
289
- <altitudeMode>clampedToGround</altitudeMode>
290
- <coordinates>-92.2974480,38.9192131,0</coordinates>
291
- </LineString>
292
- </Placemark>
293
- <Style id="ACTIVE LOG 003_Style">
294
- <LineStyle>
295
- <color>f000ffff</color>
296
- <width>3</width>
297
- </LineStyle>
298
- </Style>
299
- <Placemark id="ACTIVE LOG 003">
300
- <name>ACTIVE LOG 003</name>
301
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
302
- <styleUrl>#ACTIVE LOG 003_Style</styleUrl>
303
- <LineString>
304
- <extrude>1</extrude>
305
- <tessellate>1</tessellate>
306
- <altitudeMode>clampedToGround</altitudeMode>
307
- <coordinates>-92.2974491,38.9192131,0</coordinates>
308
- </LineString>
309
- </Placemark>
310
- <Style id="ACTIVE LOG 004_Style">
311
- <LineStyle>
312
- <color>f000ffff</color>
313
- <width>3</width>
314
- </LineStyle>
315
- </Style>
316
- <Placemark id="ACTIVE LOG 004">
317
- <name>ACTIVE LOG 004</name>
318
- <description><![CDATA[KML file, track, and waypoint comment.]]></description>
319
- <styleUrl>#ACTIVE LOG 004_Style</styleUrl>
320
- <LineString>
321
- <extrude>1</extrude>
322
- <tessellate>1</tessellate>
323
- <altitudeMode>clampedToGround</altitudeMode>
324
- <coordinates>-92.2974498,38.9192121,0 -92.2974481,38.9192053,0 -92.2974619,38.9191897,0 -92.2975066,38.9191654,0 -92.2975411,38.9191634,0 -92.2975676,38.9191661,0 -92.2977170,38.9191401,0 -92.2977401,38.9190596,0 -92.2977100,38.9190338,0 -92.2976056,38.9190399,0 -92.2975292,38.9190577,0 -92.2974253,38.9191198,0 -92.2973117,38.9192653,0 -92.2971953,38.9193899,0 -92.2970750,38.9195301,0 -92.2969539,38.9196197,0 -92.2968409,38.9196836,0 -92.2968185,38.9196751,0 -92.2966788,38.9195942,0 -92.2965691,38.9195161,0 -92.2964531,38.9194482,0 -92.2963269,38.9193805,0 -92.2963000,38.9193815,0 -92.2961640,38.9192872,0 -92.2960841,38.9192231,0 -92.2960546,38.9192064,0 -92.2959645,38.9193209,0 -92.2960287,38.9193560,0 -92.2960931,38.9193992,0 -92.2961377,38.9194369,0 -92.2962814,38.9195250,0 -92.2962871,38.9195328,0 -92.2963490,38.9195311,0 -92.2963994,38.9195736,0 -92.2964627,38.9196379,0 -92.2964759,38.9196596,0 -92.2966064,38.9197274,0 -92.2968050,38.9198301,0 -92.2968177,38.9198532,0 -92.2968948,38.9199238,0 -92.2969240,38.9199364,0 -92.2969881,38.9199673,0 -92.2971074,38.9200326,0 -92.2971658,38.9200600,0 -92.2972693,38.9201327,0 -92.2974267,38.9202471,0 -92.2973874,38.9203061,0 -92.2973550,38.9204382,0 -92.2972989,38.9206033,0 -92.2972725,38.9207438,0 -92.2972764,38.9207743,0 -92.2974020,38.9208257,0 -92.2974725,38.9207973,0 -92.2976285,38.9206118,0 -92.2977527,38.9204926,0 -92.2979666,38.9202957,0 -92.2981386,38.9201607,0 -92.2982495,38.9200683,0 -92.2982619,38.9200570,0 -92.2983682,38.9200564,0 -92.2983768,38.9200948,0 -92.2983971,38.9201153,0 -92.2983873,38.9201652,0</coordinates>
325
- </LineString>
326
- </Placemark>
327
- </Folder>
328
- </Document>
329
- </kml>