tf1_converter 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ require 'tf1_converter/version'
2
+ require 'tf1_converter/translation'
3
+ require 'tf1_converter/waypoint'
@@ -0,0 +1,168 @@
1
+ require 'nokogiri'
2
+ require 'geo_swap'
3
+ require 'pry'
4
+
5
+ module TF1Converter
6
+ class Translation
7
+ def self.from(file)
8
+ new(file)
9
+ end
10
+
11
+ def initialize(gpx_file)
12
+ @gpx = Nokogiri::XML(gpx_file)
13
+ @gpx.remove_namespaces!
14
+ end
15
+
16
+ def into(output_file)
17
+ @kml ||= build_kml_from(@gpx)
18
+ output_file.puts @kml.to_xml
19
+ output_file.close
20
+ end
21
+
22
+ #TODO: Config file
23
+ ICON_PATH = "c:\\program files\\gpx2kml\\icon\\tf_ge\\"
24
+ START_PATH = "c:\\program files\\gpx2kml\\test"
25
+ END_PATH = "c:\\program files\\gpx2kml\\test"
26
+
27
+ def build_kml_from(gpx)
28
+ Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
29
+ xml.kml('xmlns' => 'http://www.opengis.net/kml/2.2') do
30
+ xml.Document do
31
+ xml.open 1
32
+ xml.Snippet(maxLines: '1')
33
+ xml.description do
34
+ xml.cdata "#{Time.now.strftime('%m-%d-%Y %I:%M:%S %p')}<br/><br/>TF1 Converter Version 1.0<br/>MO Task Force 1<br/>"
35
+ end
36
+
37
+ xml.Style(id: "sn_noicon") { xml.IconStyle { xml.Icon } }
38
+
39
+ xml.Folder do
40
+ xml.name "Waypoints"
41
+
42
+ gpx.xpath('//gpx/wpt').each do |waypoint|
43
+ xml.Placemark do
44
+ xml.name(waypoint.xpath('//name').first.text)
45
+ xml.Snippet(maxLines: '0')
46
+ xml.Style(id: 'normalPlacemark') do
47
+ xml.IconStyle do
48
+ xml.Icon do
49
+ #TODO: put this path in a config file
50
+ xml.href("#{ICON_PATH}#{icon_name_for(waypoint)}")
51
+ end
52
+ end
53
+ end
54
+
55
+ lat = waypoint.attribute("lat").value
56
+ long = waypoint.attribute("lon").value
57
+
58
+ xml.description do
59
+ xml.cdata description_for(waypoint, lat, long)
60
+ end
61
+
62
+ xml.Point do
63
+ xml.coordinates "#{long},#{lat}"
64
+ end
65
+ end
66
+ end
67
+ end
68
+
69
+ xml.Folder do
70
+ xml.name "Tracks"
71
+
72
+ gpx.xpath('//gpx/trk').each do |track|
73
+ name = track.xpath('//name').first.text
74
+ xml.Style(id: "#{name}_Style") do
75
+ xml.LineStyle do
76
+ xml.color(color_for(track.xpath('//DisplayColor').first.text))
77
+ xml.width 3
78
+ end
79
+ end
80
+
81
+ xml.Placemark(id: name) do
82
+ xml.name name
83
+ xml.description do
84
+ xml.cdata "KML file, track, and waypoint comment."
85
+ end
86
+ xml.styleUrl "##{name}_Style"
87
+ xml.LineString do
88
+ xml.extrude 1
89
+ xml.tessellate 1
90
+ xml.altitudeMode 'clampedToGround'
91
+ xml.coordinates(coordinates_for(track))
92
+ end
93
+ end
94
+
95
+ end
96
+
97
+ end
98
+ end
99
+ end
100
+ end
101
+ end
102
+
103
+ #TODO: put this in a yml file
104
+ DATA_MAPPING = {
105
+ 'Custom 0' => { icon: '01.png', meaning: 'Search Start' },
106
+ 'Custom 1' => { icon: '02.png', meaning: 'Search Stop'},
107
+ 'Custom 2' => { icon: '03.png', meaning: 'Victim Detected'},
108
+ 'Custom 3' => { icon: '04.png', meaning: 'Victim Confirmed'},
109
+ 'Custom 4' => { icon: '05.png', meaning: 'Meaning 5'},
110
+ 'Custom 5' => { icon: '06.png', meaning: 'Meaning 6'},
111
+ 'Custom 6' => { icon: '07.png', meaning: 'Meaning 7'},
112
+ 'Custom 7' => { icon: '08.png', meaning: 'Meaning 8'},
113
+ 'Custom 8' => { icon: '09.png', meaning: 'Meaning 9'},
114
+ 'Custom 9' => { icon: '10.png', meaning: 'Meaning 10'},
115
+ 'Custom 10' => { icon: '11.png', meaning: 'Collection Point' },
116
+ 'Custom 11' => { icon: '12.png', meaning: 'Meaning 12'},
117
+ 'Custom 12' => { icon: '13.png', meaning: 'Command Post' },
118
+ 'Custom 13' => { icon: '14.png', meaning: 'Staging Area'},
119
+ 'Custom 14' => { icon: '15.png', meaning: 'Criminal Activity' },
120
+ 'Custom 15' => { icon: '16.png', meaning: 'Meaning 16'},
121
+ 'Custom 16' => { icon: '17.png', meaning: 'Water Level'},
122
+ 'Custom 17' => { icon: '18.png', meaning: 'Structure Damage / Safe' },
123
+ 'Custom 18' => { icon: '19.png', meaning: 'Meaning 19'},
124
+ 'Custom 19' => { icon: '20.png', meaning: 'Structure Not Safe' },
125
+ 'Custom 20' => { icon: '21.png', meaning: 'Extra 21' },
126
+ 'Custom 21' => { icon: '22.png', meaning: 'Extra 22' },
127
+ 'Custom 22' => { icon: '23.png', meaning: 'Extra 23'},
128
+ 'Residence' => { icon: 'default.png', meaning: 'Default' },
129
+ }
130
+
131
+ def icon_name_for(waypoint)
132
+ sym = field_for(waypoint, 'sym')
133
+ DATA_MAPPING[sym][:icon]
134
+ end
135
+
136
+ def description_for(waypoint, lat, long)
137
+ utm = GeoSwap.lat_long_to_utm(lat.to_f, long.to_f)
138
+ usng = GeoSwap.utm_to_usng(utm.easting, utm.northing, utm.zone.number, utm.zone.letter)
139
+ desc = ""
140
+ desc << field_for(waypoint, 'cmt')
141
+ desc << '<br>' << DATA_MAPPING[field_for(waypoint, 'sym')][:meaning]
142
+ desc << '<br>' << "KML file, track, and waypoint comment."
143
+ desc << "<br>" << "USNG: #{usng}"
144
+ desc << "<br>" << "UTM: #{utm.to_s}"
145
+ desc << "<br>" << "#{START_PATH} - #{END_PATH}"
146
+ end
147
+
148
+ COLOR_MAP = {
149
+ 'DarkRed' => 'f0000080',
150
+ 'Yellow' => 'f000ffff'
151
+ }
152
+
153
+ def color_for(color)
154
+ COLOR_MAP[color]
155
+ end
156
+
157
+ def coordinates_for(track)
158
+ track.xpath('//trkseg/trkpt').inject([]) { |points, trackpoint|
159
+ points << ("" << trackpoint.attribute('lon').value.strip << ',' << trackpoint.attribute('lat').value.strip << ',0')
160
+ }.join(' ')
161
+ end
162
+
163
+ def field_for(waypoint, field)
164
+ waypoint.children.select{|c| c.name == field }.first.text
165
+ end
166
+
167
+ end
168
+ end
@@ -0,0 +1,3 @@
1
+ module TF1Converter
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,48 @@
1
+ require 'nokogiri'
2
+ require 'builder'
3
+
4
+ module TF1Converter
5
+
6
+ class Waypoint
7
+ def initialize(gpx)
8
+ @gpx = gpx
9
+ end
10
+
11
+ def to_xml
12
+ gpx_doc = Nokogiri::XML(@gpx)
13
+ wpt_node = gpx_doc.xpath('//wpt').first
14
+
15
+ kml_builder = Builder::XmlMarkup.new
16
+
17
+ kml_builder.placemark do |placemark|
18
+ placemark.name(gpx_doc.xpath('//name').first.text)
19
+ placemark.Snippet(:maxLines => "0")
20
+
21
+ placemark.Style(:id => "normalPlacemark") do |style|
22
+ style.IconStyle do |is|
23
+ is.Icon do |i|
24
+ i.href
25
+ end
26
+ end
27
+ end
28
+
29
+ placemark.description do |desc|
30
+ timestamp = gpx_doc.xpath('//desc').first.text
31
+ utm = nil
32
+ usng = nil
33
+ filepaths = ''
34
+ desc.cdata!(%Q{#{timestamp}<br>Search Start<br>KML file, track, and waypoint comment.<br>USNG: #{usng}<br>UTM: #{utm}<br>#{filepaths}})
35
+ end
36
+
37
+ placemark.point do |point|
38
+ lon = wpt_node.attributes['lon'].value
39
+ lat = wpt_node.attributes['lat'].value
40
+ coords = "#{lon},#{lat}"
41
+ point.coordinates(coords)
42
+ end
43
+ end
44
+ end
45
+
46
+ end
47
+
48
+ end
data/output/test.kml ADDED
@@ -0,0 +1,329 @@
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[02-13-2013 09:20:09 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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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>001</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>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="001_Style">
243
+ <LineStyle>
244
+ <color>f0000080</color>
245
+ <width>3</width>
246
+ </LineStyle>
247
+ </Style>
248
+ <Placemark id="001">
249
+ <name>001</name>
250
+ <description><![CDATA[KML file, track, and waypoint comment.]]></description>
251
+ <styleUrl>#001_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 -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="001_Style">
260
+ <LineStyle>
261
+ <color>f0000080</color>
262
+ <width>3</width>
263
+ </LineStyle>
264
+ </Style>
265
+ <Placemark id="001">
266
+ <name>001</name>
267
+ <description><![CDATA[KML file, track, and waypoint comment.]]></description>
268
+ <styleUrl>#001_Style</styleUrl>
269
+ <LineString>
270
+ <extrude>1</extrude>
271
+ <tessellate>1</tessellate>
272
+ <altitudeMode>clampedToGround</altitudeMode>
273
+ <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 -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>
274
+ </LineString>
275
+ </Placemark>
276
+ <Style id="001_Style">
277
+ <LineStyle>
278
+ <color>f0000080</color>
279
+ <width>3</width>
280
+ </LineStyle>
281
+ </Style>
282
+ <Placemark id="001">
283
+ <name>001</name>
284
+ <description><![CDATA[KML file, track, and waypoint comment.]]></description>
285
+ <styleUrl>#001_Style</styleUrl>
286
+ <LineString>
287
+ <extrude>1</extrude>
288
+ <tessellate>1</tessellate>
289
+ <altitudeMode>clampedToGround</altitudeMode>
290
+ <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 -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>
291
+ </LineString>
292
+ </Placemark>
293
+ <Style id="001_Style">
294
+ <LineStyle>
295
+ <color>f0000080</color>
296
+ <width>3</width>
297
+ </LineStyle>
298
+ </Style>
299
+ <Placemark id="001">
300
+ <name>001</name>
301
+ <description><![CDATA[KML file, track, and waypoint comment.]]></description>
302
+ <styleUrl>#001_Style</styleUrl>
303
+ <LineString>
304
+ <extrude>1</extrude>
305
+ <tessellate>1</tessellate>
306
+ <altitudeMode>clampedToGround</altitudeMode>
307
+ <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 -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>
308
+ </LineString>
309
+ </Placemark>
310
+ <Style id="001_Style">
311
+ <LineStyle>
312
+ <color>f0000080</color>
313
+ <width>3</width>
314
+ </LineStyle>
315
+ </Style>
316
+ <Placemark id="001">
317
+ <name>001</name>
318
+ <description><![CDATA[KML file, track, and waypoint comment.]]></description>
319
+ <styleUrl>#001_Style</styleUrl>
320
+ <LineString>
321
+ <extrude>1</extrude>
322
+ <tessellate>1</tessellate>
323
+ <altitudeMode>clampedToGround</altitudeMode>
324
+ <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 -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>
325
+ </LineString>
326
+ </Placemark>
327
+ </Folder>
328
+ </Document>
329
+ </kml>