tf1_converter 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tf1_converter (0.1.2)
4
+ tf1_converter (0.2.0)
5
5
  builder
6
6
  geo_swap (= 0.2.1)
7
7
  nokogiri
@@ -31,6 +31,7 @@ GEM
31
31
  rspec-mocks (2.12.1)
32
32
  slop (3.4.3)
33
33
  thor (0.17.0)
34
+ timecop (0.5.9.2)
34
35
 
35
36
  PLATFORMS
36
37
  ruby
@@ -40,3 +41,4 @@ DEPENDENCIES
40
41
  rake (= 10.0.3)
41
42
  rspec (= 2.12.0)
42
43
  tf1_converter!
44
+ timecop (= 0.5.9.2)
data/bin/tf1convert CHANGED
@@ -4,7 +4,14 @@ require 'tf1_converter'
4
4
 
5
5
  config_file = ARGV[0]
6
6
  TF1Converter::Config.load(config_file)
7
+ input_path = TF1Converter::Config.input
8
+ output_path = TF1Converter::Config.output
7
9
 
8
- input = File.open(TF1Converter::Config.input, 'r')
9
- output = File.open(TF1Converter::Config.output, 'w')
10
- TF1Converter::Translation.from(input).into(output)
10
+ Dir.foreach(input_path) do |file|
11
+ unless ['.', '..'].include? file
12
+ input = File.open("#{input_path}/#{file}", 'r')
13
+ outfile = file.gsub(/\.gpx$/, '.kml')
14
+ output = File.open("#{output_path}/#{outfile}", 'w')
15
+ TF1Converter::Translation.from(input).into(output)
16
+ end
17
+ end
data/example/config.yml CHANGED
@@ -1,32 +1,32 @@
1
1
  tf1_converter:
2
- input: input/test.gpx
3
- output: output/test.kml
2
+ input: input
3
+ output: output
4
4
  icon_path: c:\program files\gpx2kml\icon\tf_ge\
5
5
  start_path: c:\program files\gpx2kml\test
6
6
  end_path: c:\program files\gpx2kml\test
7
7
  icons: { Custom 0: { icon: 01.png, meaning: Search Start },
8
8
  Custom 1: { icon: 02.png, meaning: Search Stop},
9
9
  Custom 2: { icon: 03.png, meaning: Victim Detected},
10
- Custom 3: { icon: 04.png, meaning: Victim Confirmed},
11
- Custom 4: { icon: 05.png, meaning: Meaning 5},
12
- Custom 5: { icon: 06.png, meaning: Meaning 6},
13
- Custom 6: { icon: 07.png, meaning: Meaning 7},
14
- Custom 7: { icon: 08.png, meaning: Meaning 8},
15
- Custom 8: { icon: 09.png, meaning: Meaning 9},
16
- Custom 9: { icon: 10.png, meaning: Meaning 10},
17
- Custom 10: { icon: 11.png, meaning: Collection Point },
18
- Custom 11: { icon: 12.png, meaning: Meaning 12},
19
- Custom 12: { icon: 13.png, meaning: Command Post },
20
- Custom 13: { icon: 14.png, meaning: Staging Area},
21
- Custom 14: { icon: 15.png, meaning: Criminal Activity },
22
- Custom 15: { icon: 16.png, meaning: Meaning 16},
23
- Custom 16: { icon: 17.png, meaning: Water Level},
24
- Custom 17: { icon: 18.png, meaning: Structure Damage / Safe },
25
- Custom 18: { icon: 19.png, meaning: Meaning 19},
26
- Custom 19: { icon: 20.png, meaning: Structure Not Safe },
27
- Custom 20: { icon: 21.png, meaning: Extra 21 },
28
- Custom 21: { icon: 22.png, meaning: Extra 22 },
29
- Custom 22: { icon: 23.png, meaning: Extra 23},
30
- Residence: { icon: default.png, meaning: Default } }
10
+ Custom 3: { icon: 04.png, meaning: Victim Confirmed},
11
+ Custom 4: { icon: 05.png, meaning: Meaning 5},
12
+ Custom 5: { icon: 06.png, meaning: Meaning 6},
13
+ Custom 6: { icon: 07.png, meaning: Meaning 7},
14
+ Custom 7: { icon: 08.png, meaning: Meaning 8},
15
+ Custom 8: { icon: 09.png, meaning: Meaning 9},
16
+ Custom 9: { icon: 10.png, meaning: Meaning 10},
17
+ Custom 10: { icon: 11.png, meaning: Collection Point },
18
+ Custom 11: { icon: 12.png, meaning: Meaning 12},
19
+ Custom 12: { icon: 13.png, meaning: Command Post },
20
+ Custom 13: { icon: 14.png, meaning: Staging Area},
21
+ Custom 14: { icon: 15.png, meaning: Criminal Activity },
22
+ Custom 15: { icon: 16.png, meaning: Meaning 16},
23
+ Custom 16: { icon: 17.png, meaning: Water Level},
24
+ Custom 17: { icon: 18.png, meaning: Structure Damage / Safe },
25
+ Custom 18: { icon: 19.png, meaning: Meaning 19},
26
+ Custom 19: { icon: 20.png, meaning: Structure Not Safe },
27
+ Custom 20: { icon: 21.png, meaning: Extra 21 },
28
+ Custom 21: { icon: 22.png, meaning: Extra 22 },
29
+ Custom 22: { icon: 23.png, meaning: Extra 23},
30
+ Residence: { icon: default.png, meaning: Default } }
31
31
  colors: { DarkRed: f0000080,
32
- Yellow: f000ffff }
32
+ Yellow: f000ffff }
@@ -0,0 +1,32 @@
1
+ tf1_converter:
2
+ input: c:\Documents and Settings\FEMA\TF1Converter\Input\test.gpx
3
+ output: c:\Documents and Settings\FEMA\TF1Converter\Output\test.kml
4
+ icon_path: c:\Program Files\GPX2KML\icon\tf_ge\
5
+ start_path: c:\Program Files\GPX2KML\test
6
+ end_path: c:\Program Files\GPX2KML\test
7
+ icons: { Custom 0: { icon: 01.png, meaning: Search Start },
8
+ Custom 1: { icon: 02.png, meaning: Search Stop},
9
+ Custom 2: { icon: 03.png, meaning: Victim Detected},
10
+ Custom 3: { icon: 04.png, meaning: Victim Confirmed},
11
+ Custom 4: { icon: 05.png, meaning: Meaning 5},
12
+ Custom 5: { icon: 06.png, meaning: Meaning 6},
13
+ Custom 6: { icon: 07.png, meaning: Meaning 7},
14
+ Custom 7: { icon: 08.png, meaning: Meaning 8},
15
+ Custom 8: { icon: 09.png, meaning: Meaning 9},
16
+ Custom 9: { icon: 10.png, meaning: Meaning 10},
17
+ Custom 10: { icon: 11.png, meaning: Collection Point },
18
+ Custom 11: { icon: 12.png, meaning: Meaning 12},
19
+ Custom 12: { icon: 13.png, meaning: Command Post },
20
+ Custom 13: { icon: 14.png, meaning: Staging Area},
21
+ Custom 14: { icon: 15.png, meaning: Criminal Activity },
22
+ Custom 15: { icon: 16.png, meaning: Meaning 16},
23
+ Custom 16: { icon: 17.png, meaning: Water Level},
24
+ Custom 17: { icon: 18.png, meaning: Structure Damage / Safe },
25
+ Custom 18: { icon: 19.png, meaning: Meaning 19},
26
+ Custom 19: { icon: 20.png, meaning: Structure Not Safe },
27
+ Custom 20: { icon: 21.png, meaning: Extra 21 },
28
+ Custom 21: { icon: 22.png, meaning: Extra 22 },
29
+ Custom 22: { icon: 23.png, meaning: Extra 23},
30
+ Residence: { icon: default.png, meaning: Default } }
31
+ colors: { DarkRed: f0000080,
32
+ Yellow: f000ffff }
@@ -36,7 +36,7 @@ module TF1Converter
36
36
 
37
37
  gpx.xpath('//gpx/wpt').each do |waypoint|
38
38
  xml.Placemark do
39
- xml.name(waypoint.xpath('//name').first.text)
39
+ xml.name(waypoint.xpath('name').first.text)
40
40
  xml.Snippet(maxLines: '0')
41
41
  xml.Style(id: 'normalPlacemark') do
42
42
  xml.IconStyle do
@@ -65,10 +65,11 @@ module TF1Converter
65
65
  xml.name "Tracks"
66
66
 
67
67
  gpx.xpath('//gpx/trk').each do |track|
68
- name = track.xpath('//name').first.text
68
+ name = track.xpath('name').first.text
69
69
  xml.Style(id: "#{name}_Style") do
70
70
  xml.LineStyle do
71
- xml.color(color_for(track.xpath('//DisplayColor').first.text))
71
+ display_color = track.xpath('extensions/TrackExtension/DisplayColor').first.text
72
+ xml.color(color_for(display_color))
72
73
  xml.width 3
73
74
  end
74
75
  end
@@ -117,7 +118,7 @@ module TF1Converter
117
118
  end
118
119
 
119
120
  def coordinates_for(track)
120
- track.xpath('//trkseg/trkpt').inject([]) { |points, trackpoint|
121
+ track.xpath('trkseg/trkpt').inject([]) { |points, trackpoint|
121
122
  points << ("" << trackpoint.attribute('lon').value.strip << ',' << trackpoint.attribute('lat').value.strip << ',0')
122
123
  }.join(' ')
123
124
  end
@@ -1,3 +1,3 @@
1
1
  module TF1Converter
2
- VERSION = "0.1.2"
3
- end
2
+ VERSION = "0.2.0"
3
+ end
data/lib/tf1_converter.rb CHANGED
@@ -1,4 +1,3 @@
1
1
  require 'tf1_converter/config'
2
2
  require 'tf1_converter/version'
3
3
  require 'tf1_converter/translation'
4
- require 'tf1_converter/waypoint'
data/output/test.kml CHANGED
@@ -3,7 +3,7 @@
3
3
  <Document>
4
4
  <open>1</open>
5
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>
6
+ <description><![CDATA[02-15-2013 03:00:24 PM<br/><br/>TF1 Converter Version 1.0<br/>MO Task Force 1<br/>]]></description>
7
7
  <Style id="sn_noicon">
8
8
  <IconStyle>
9
9
  <Icon/>
@@ -27,7 +27,7 @@
27
27
  </Point>
28
28
  </Placemark>
29
29
  <Placemark>
30
- <name>001</name>
30
+ <name>002</name>
31
31
  <Snippet maxLines="0"/>
32
32
  <Style id="normalPlacemark">
33
33
  <IconStyle>
@@ -42,7 +42,7 @@
42
42
  </Point>
43
43
  </Placemark>
44
44
  <Placemark>
45
- <name>001</name>
45
+ <name>003</name>
46
46
  <Snippet maxLines="0"/>
47
47
  <Style id="normalPlacemark">
48
48
  <IconStyle>
@@ -57,7 +57,7 @@
57
57
  </Point>
58
58
  </Placemark>
59
59
  <Placemark>
60
- <name>001</name>
60
+ <name>004</name>
61
61
  <Snippet maxLines="0"/>
62
62
  <Style id="normalPlacemark">
63
63
  <IconStyle>
@@ -72,7 +72,7 @@
72
72
  </Point>
73
73
  </Placemark>
74
74
  <Placemark>
75
- <name>001</name>
75
+ <name>005</name>
76
76
  <Snippet maxLines="0"/>
77
77
  <Style id="normalPlacemark">
78
78
  <IconStyle>
@@ -87,7 +87,7 @@
87
87
  </Point>
88
88
  </Placemark>
89
89
  <Placemark>
90
- <name>001</name>
90
+ <name>006</name>
91
91
  <Snippet maxLines="0"/>
92
92
  <Style id="normalPlacemark">
93
93
  <IconStyle>
@@ -102,7 +102,7 @@
102
102
  </Point>
103
103
  </Placemark>
104
104
  <Placemark>
105
- <name>001</name>
105
+ <name>007</name>
106
106
  <Snippet maxLines="0"/>
107
107
  <Style id="normalPlacemark">
108
108
  <IconStyle>
@@ -117,7 +117,7 @@
117
117
  </Point>
118
118
  </Placemark>
119
119
  <Placemark>
120
- <name>001</name>
120
+ <name>008</name>
121
121
  <Snippet maxLines="0"/>
122
122
  <Style id="normalPlacemark">
123
123
  <IconStyle>
@@ -132,7 +132,7 @@
132
132
  </Point>
133
133
  </Placemark>
134
134
  <Placemark>
135
- <name>001</name>
135
+ <name>009</name>
136
136
  <Snippet maxLines="0"/>
137
137
  <Style id="normalPlacemark">
138
138
  <IconStyle>
@@ -147,7 +147,7 @@
147
147
  </Point>
148
148
  </Placemark>
149
149
  <Placemark>
150
- <name>001</name>
150
+ <name>010</name>
151
151
  <Snippet maxLines="0"/>
152
152
  <Style id="normalPlacemark">
153
153
  <IconStyle>
@@ -162,7 +162,7 @@
162
162
  </Point>
163
163
  </Placemark>
164
164
  <Placemark>
165
- <name>001</name>
165
+ <name>011</name>
166
166
  <Snippet maxLines="0"/>
167
167
  <Style id="normalPlacemark">
168
168
  <IconStyle>
@@ -177,7 +177,7 @@
177
177
  </Point>
178
178
  </Placemark>
179
179
  <Placemark>
180
- <name>001</name>
180
+ <name>012</name>
181
181
  <Snippet maxLines="0"/>
182
182
  <Style id="normalPlacemark">
183
183
  <IconStyle>
@@ -192,7 +192,7 @@
192
192
  </Point>
193
193
  </Placemark>
194
194
  <Placemark>
195
- <name>001</name>
195
+ <name>013</name>
196
196
  <Snippet maxLines="0"/>
197
197
  <Style id="normalPlacemark">
198
198
  <IconStyle>
@@ -207,7 +207,7 @@
207
207
  </Point>
208
208
  </Placemark>
209
209
  <Placemark>
210
- <name>001</name>
210
+ <name>014</name>
211
211
  <Snippet maxLines="0"/>
212
212
  <Style id="normalPlacemark">
213
213
  <IconStyle>
@@ -222,7 +222,7 @@
222
222
  </Point>
223
223
  </Placemark>
224
224
  <Placemark>
225
- <name>001</name>
225
+ <name>2804 Wild Plum</name>
226
226
  <Snippet maxLines="0"/>
227
227
  <Style id="normalPlacemark">
228
228
  <IconStyle>
@@ -239,89 +239,89 @@
239
239
  </Folder>
240
240
  <Folder>
241
241
  <name>Tracks</name>
242
- <Style id="001_Style">
242
+ <Style id="18-OCT-09_Style">
243
243
  <LineStyle>
244
244
  <color>f0000080</color>
245
245
  <width>3</width>
246
246
  </LineStyle>
247
247
  </Style>
248
- <Placemark id="001">
249
- <name>001</name>
248
+ <Placemark id="18-OCT-09">
249
+ <name>18-OCT-09</name>
250
250
  <description><![CDATA[KML file, track, and waypoint comment.]]></description>
251
- <styleUrl>#001_Style</styleUrl>
251
+ <styleUrl>#18-OCT-09_Style</styleUrl>
252
252
  <LineString>
253
253
  <extrude>1</extrude>
254
254
  <tessellate>1</tessellate>
255
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>
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
257
  </LineString>
258
258
  </Placemark>
259
- <Style id="001_Style">
259
+ <Style id="ACTIVE LOG 001_Style">
260
260
  <LineStyle>
261
- <color>f0000080</color>
261
+ <color>f000ffff</color>
262
262
  <width>3</width>
263
263
  </LineStyle>
264
264
  </Style>
265
- <Placemark id="001">
266
- <name>001</name>
265
+ <Placemark id="ACTIVE LOG 001">
266
+ <name>ACTIVE LOG 001</name>
267
267
  <description><![CDATA[KML file, track, and waypoint comment.]]></description>
268
- <styleUrl>#001_Style</styleUrl>
268
+ <styleUrl>#ACTIVE LOG 001_Style</styleUrl>
269
269
  <LineString>
270
270
  <extrude>1</extrude>
271
271
  <tessellate>1</tessellate>
272
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>
273
+ <coordinates>-92.2974500,38.9192166,0</coordinates>
274
274
  </LineString>
275
275
  </Placemark>
276
- <Style id="001_Style">
276
+ <Style id="ACTIVE LOG 002_Style">
277
277
  <LineStyle>
278
- <color>f0000080</color>
278
+ <color>f000ffff</color>
279
279
  <width>3</width>
280
280
  </LineStyle>
281
281
  </Style>
282
- <Placemark id="001">
283
- <name>001</name>
282
+ <Placemark id="ACTIVE LOG 002">
283
+ <name>ACTIVE LOG 002</name>
284
284
  <description><![CDATA[KML file, track, and waypoint comment.]]></description>
285
- <styleUrl>#001_Style</styleUrl>
285
+ <styleUrl>#ACTIVE LOG 002_Style</styleUrl>
286
286
  <LineString>
287
287
  <extrude>1</extrude>
288
288
  <tessellate>1</tessellate>
289
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>
290
+ <coordinates>-92.2974480,38.9192131,0</coordinates>
291
291
  </LineString>
292
292
  </Placemark>
293
- <Style id="001_Style">
293
+ <Style id="ACTIVE LOG 003_Style">
294
294
  <LineStyle>
295
- <color>f0000080</color>
295
+ <color>f000ffff</color>
296
296
  <width>3</width>
297
297
  </LineStyle>
298
298
  </Style>
299
- <Placemark id="001">
300
- <name>001</name>
299
+ <Placemark id="ACTIVE LOG 003">
300
+ <name>ACTIVE LOG 003</name>
301
301
  <description><![CDATA[KML file, track, and waypoint comment.]]></description>
302
- <styleUrl>#001_Style</styleUrl>
302
+ <styleUrl>#ACTIVE LOG 003_Style</styleUrl>
303
303
  <LineString>
304
304
  <extrude>1</extrude>
305
305
  <tessellate>1</tessellate>
306
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>
307
+ <coordinates>-92.2974491,38.9192131,0</coordinates>
308
308
  </LineString>
309
309
  </Placemark>
310
- <Style id="001_Style">
310
+ <Style id="ACTIVE LOG 004_Style">
311
311
  <LineStyle>
312
- <color>f0000080</color>
312
+ <color>f000ffff</color>
313
313
  <width>3</width>
314
314
  </LineStyle>
315
315
  </Style>
316
- <Placemark id="001">
317
- <name>001</name>
316
+ <Placemark id="ACTIVE LOG 004">
317
+ <name>ACTIVE LOG 004</name>
318
318
  <description><![CDATA[KML file, track, and waypoint comment.]]></description>
319
- <styleUrl>#001_Style</styleUrl>
319
+ <styleUrl>#ACTIVE LOG 004_Style</styleUrl>
320
320
  <LineString>
321
321
  <extrude>1</extrude>
322
322
  <tessellate>1</tessellate>
323
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>
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
325
  </LineString>
326
326
  </Placemark>
327
327
  </Folder>