tf1_converter 0.3.2 → 0.4.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.3.2)
4
+ tf1_converter (0.4.0)
5
5
  builder
6
6
  geo_swap (= 0.2.1)
7
7
  nokogiri
data/example/config.yml CHANGED
@@ -4,30 +4,30 @@ tf1_converter:
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
- 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 } }
7
+ icons: { Custom 0: { icon: 01.png, meaning: Search Start, name: icon_name_1 },
8
+ Custom 1: { icon: 02.png, meaning: Search Stop, name: icon_name_2 },
9
+ Custom 2: { icon: 03.png, meaning: Victim Detected, name: icon_name_3},
10
+ Custom 3: { icon: 04.png, meaning: Victim Confirmed, name: icon_name_4},
11
+ Custom 4: { icon: 05.png, meaning: Meaning 5, name: icon_name_5},
12
+ Custom 5: { icon: 06.png, meaning: Meaning 6, name: icon_name_6},
13
+ Custom 6: { icon: 07.png, meaning: Meaning 7, name: icon_name_7},
14
+ Custom 7: { icon: 08.png, meaning: Meaning 8, name: icon_name_8},
15
+ Custom 8: { icon: 09.png, meaning: Meaning 9, name: icon_name_9},
16
+ Custom 9: { icon: 10.png, meaning: Meaning 10, name: icon_name_10},
17
+ Custom 10: { icon: 11.png, meaning: Collection Point , name: icon_name_11},
18
+ Custom 11: { icon: 12.png, meaning: Meaning 12, name: icon_name_12},
19
+ Custom 12: { icon: 13.png, meaning: Command Post, name: icon_name_13 },
20
+ Custom 13: { icon: 14.png, meaning: Staging Area, name: icon_name_14 },
21
+ Custom 14: { icon: 15.png, meaning: Criminal Activity, name: icon_name_15 },
22
+ Custom 15: { icon: 16.png, meaning: Meaning 16, name: icon_name_16 },
23
+ Custom 16: { icon: 17.png, meaning: Water Level, name: icon_name_17 },
24
+ Custom 17: { icon: 18.png, meaning: Structure Damage / Safe, name: icon_name_18 },
25
+ Custom 18: { icon: 19.png, meaning: Meaning 19, name: icon_name_19 },
26
+ Custom 19: { icon: 20.png, meaning: Structure Not Safe, name: icon_name_20 },
27
+ Custom 20: { icon: 21.png, meaning: Extra 21, name: icon_name_21 },
28
+ Custom 21: { icon: 22.png, meaning: Extra 22, name: icon_name_22 },
29
+ Custom 22: { icon: 23.png, meaning: Extra 23, name: icon_name_23 },
30
+ Residence: { icon: default.png, meaning: Default, name: icon_name_24 } }
31
31
  colors: { DarkRed: f0000080,
32
32
  Yellow: f000ffff,
33
33
  Blue: f0ff0000 }
@@ -7,13 +7,18 @@ module TF1Converter
7
7
  end
8
8
 
9
9
  def name
10
- @node.xpath('name').first.text
10
+ name_node = @node.xpath('name').first
11
+ name_node.nil? ? '' : name_node.text
11
12
  end
12
13
 
13
14
  def icon_name
14
15
  if symbol_name
15
16
  map_entry = @icon_map[symbol_name]
16
17
  return map_entry['icon'] if map_entry
18
+ elsif name
19
+ @icon_map.values.each do |icon_data|
20
+ return icon_data['icon'] if icon_data['name'] == name
21
+ end
17
22
  end
18
23
  'default.png'
19
24
  end
@@ -95,6 +95,7 @@ module TF1Converter
95
95
  desc << '<br>' << "KML file, track, and waypoint comment."
96
96
  desc << "<br>" << "USNG: #{waypoint.usng}"
97
97
  desc << "<br>" << "UTM: #{waypoint.utm}"
98
+ desc << "<br>" << "Lat/Long: #{waypoint.lat}/#{waypoint.long}"
98
99
  desc << "<br>" << "#{Config.start_path} - #{Config.end_path}"
99
100
  end
100
101
 
@@ -1,3 +1,3 @@
1
1
  module TF1Converter
2
- VERSION = "0.3.2"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -21,7 +21,7 @@
21
21
  </Icon>
22
22
  </IconStyle>
23
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>
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
25
  <Point>
26
26
  <coordinates>-92.2972443,38.9199972</coordinates>
27
27
  </Point>
@@ -36,7 +36,7 @@
36
36
  </Icon>
37
37
  </IconStyle>
38
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>
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
40
  <Point>
41
41
  <coordinates>-92.2969611,38.9197762</coordinates>
42
42
  </Point>
@@ -51,7 +51,7 @@
51
51
  </Icon>
52
52
  </IconStyle>
53
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>
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
55
  <Point>
56
56
  <coordinates>-92.2971813,38.9195040</coordinates>
57
57
  </Point>
@@ -66,7 +66,7 @@
66
66
  </Icon>
67
67
  </IconStyle>
68
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>
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
70
  <Point>
71
71
  <coordinates>-92.2977024,38.9191455</coordinates>
72
72
  </Point>
@@ -81,7 +81,7 @@
81
81
  </Icon>
82
82
  </IconStyle>
83
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>
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
85
  <Point>
86
86
  <coordinates>-92.2973642,38.9191831</coordinates>
87
87
  </Point>
@@ -96,7 +96,7 @@
96
96
  </Icon>
97
97
  </IconStyle>
98
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>
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
100
  <Point>
101
101
  <coordinates>-92.2967348,38.9196337</coordinates>
102
102
  </Point>
@@ -111,7 +111,7 @@
111
111
  </Icon>
112
112
  </IconStyle>
113
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>
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
115
  <Point>
116
116
  <coordinates>-92.2963225,38.9193832</coordinates>
117
117
  </Point>
@@ -126,7 +126,7 @@
126
126
  </Icon>
127
127
  </IconStyle>
128
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>
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
130
  <Point>
131
131
  <coordinates>-92.2959630,38.9192829</coordinates>
132
132
  </Point>
@@ -141,7 +141,7 @@
141
141
  </Icon>
142
142
  </IconStyle>
143
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>
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
145
  <Point>
146
146
  <coordinates>-92.2965171,38.9196773</coordinates>
147
147
  </Point>
@@ -156,7 +156,7 @@
156
156
  </Icon>
157
157
  </IconStyle>
158
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>
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
160
  <Point>
161
161
  <coordinates>-92.2973907,38.9202020</coordinates>
162
162
  </Point>
@@ -171,7 +171,7 @@
171
171
  </Icon>
172
172
  </IconStyle>
173
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>
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
175
  <Point>
176
176
  <coordinates>-92.2972759,38.9207150</coordinates>
177
177
  </Point>
@@ -186,7 +186,7 @@
186
186
  </Icon>
187
187
  </IconStyle>
188
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>
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
190
  <Point>
191
191
  <coordinates>-92.2974574,38.9208083</coordinates>
192
192
  </Point>
@@ -201,7 +201,7 @@
201
201
  </Icon>
202
202
  </IconStyle>
203
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>
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
205
  <Point>
206
206
  <coordinates>-92.2977240,38.9205154</coordinates>
207
207
  </Point>
@@ -216,7 +216,7 @@
216
216
  </Icon>
217
217
  </IconStyle>
218
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>
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
220
  <Point>
221
221
  <coordinates>-92.2983951,38.9201116</coordinates>
222
222
  </Point>
@@ -231,7 +231,7 @@
231
231
  </Icon>
232
232
  </IconStyle>
233
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>
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
235
  <Point>
236
236
  <coordinates>-92.2983507,38.9200473</coordinates>
237
237
  </Point>
@@ -21,7 +21,7 @@
21
21
  </Icon>
22
22
  </IconStyle>
23
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>
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
25
  <Point>
26
26
  <coordinates>-92.2972443,38.9199972</coordinates>
27
27
  </Point>
@@ -36,7 +36,7 @@
36
36
  </Icon>
37
37
  </IconStyle>
38
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>
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
40
  <Point>
41
41
  <coordinates>-92.2969611,38.9197762</coordinates>
42
42
  </Point>
@@ -51,7 +51,7 @@
51
51
  </Icon>
52
52
  </IconStyle>
53
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>
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
55
  <Point>
56
56
  <coordinates>-92.2971813,38.9195040</coordinates>
57
57
  </Point>
@@ -66,7 +66,7 @@
66
66
  </Icon>
67
67
  </IconStyle>
68
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>
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
70
  <Point>
71
71
  <coordinates>-92.2977024,38.9191455</coordinates>
72
72
  </Point>
@@ -81,7 +81,7 @@
81
81
  </Icon>
82
82
  </IconStyle>
83
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>
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
85
  <Point>
86
86
  <coordinates>-92.2973642,38.9191831</coordinates>
87
87
  </Point>
@@ -96,7 +96,7 @@
96
96
  </Icon>
97
97
  </IconStyle>
98
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>
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
100
  <Point>
101
101
  <coordinates>-92.2967348,38.9196337</coordinates>
102
102
  </Point>
@@ -111,7 +111,7 @@
111
111
  </Icon>
112
112
  </IconStyle>
113
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>
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
115
  <Point>
116
116
  <coordinates>-92.2963225,38.9193832</coordinates>
117
117
  </Point>
@@ -126,7 +126,7 @@
126
126
  </Icon>
127
127
  </IconStyle>
128
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>
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
130
  <Point>
131
131
  <coordinates>-92.2959630,38.9192829</coordinates>
132
132
  </Point>
@@ -141,7 +141,7 @@
141
141
  </Icon>
142
142
  </IconStyle>
143
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>
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
145
  <Point>
146
146
  <coordinates>-92.2965171,38.9196773</coordinates>
147
147
  </Point>
@@ -156,7 +156,7 @@
156
156
  </Icon>
157
157
  </IconStyle>
158
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>
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
160
  <Point>
161
161
  <coordinates>-92.2973907,38.9202020</coordinates>
162
162
  </Point>
@@ -171,7 +171,7 @@
171
171
  </Icon>
172
172
  </IconStyle>
173
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>
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
175
  <Point>
176
176
  <coordinates>-92.2972759,38.9207150</coordinates>
177
177
  </Point>
@@ -186,7 +186,7 @@
186
186
  </Icon>
187
187
  </IconStyle>
188
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>
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
190
  <Point>
191
191
  <coordinates>-92.2974574,38.9208083</coordinates>
192
192
  </Point>
@@ -201,7 +201,7 @@
201
201
  </Icon>
202
202
  </IconStyle>
203
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>
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
205
  <Point>
206
206
  <coordinates>-92.2977240,38.9205154</coordinates>
207
207
  </Point>
@@ -216,7 +216,7 @@
216
216
  </Icon>
217
217
  </IconStyle>
218
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>
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
220
  <Point>
221
221
  <coordinates>-92.2983951,38.9201116</coordinates>
222
222
  </Point>
@@ -231,7 +231,7 @@
231
231
  </Icon>
232
232
  </IconStyle>
233
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>
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
235
  <Point>
236
236
  <coordinates>-92.2983507,38.9200473</coordinates>
237
237
  </Point>