andrewhao-gpx 0.7
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.
- data/.gitignore +3 -0
- data/ChangeLog +60 -0
- data/Gemfile +4 -0
- data/README.rdoc +46 -0
- data/Rakefile +23 -0
- data/gpx.gemspec +22 -0
- data/lib/gpx.rb +38 -0
- data/lib/gpx/bounds.rb +74 -0
- data/lib/gpx/gpx.rb +46 -0
- data/lib/gpx/gpx_file.rb +302 -0
- data/lib/gpx/magellan_track_log.rb +132 -0
- data/lib/gpx/point.rb +90 -0
- data/lib/gpx/route.rb +58 -0
- data/lib/gpx/segment.rb +207 -0
- data/lib/gpx/track.rb +136 -0
- data/lib/gpx/trackpoint.rb +58 -0
- data/lib/gpx/version.rb +3 -0
- data/lib/gpx/waypoint.rb +74 -0
- data/pkg/gpx-0.7.gem +0 -0
- data/tests/gpx10_test.rb +12 -0
- data/tests/gpx_file_test.rb +48 -0
- data/tests/gpx_files/arches.gpx +1 -0
- data/tests/gpx_files/big.gpx +1 -0
- data/tests/gpx_files/gpx10.gpx +17 -0
- data/tests/gpx_files/magellan_track.log +306 -0
- data/tests/gpx_files/one_segment.gpx +770 -0
- data/tests/gpx_files/one_track.gpx +756 -0
- data/tests/gpx_files/routes.gpx +9 -0
- data/tests/gpx_files/tracks.gpx +6304 -0
- data/tests/gpx_files/waypoints.gpx +20 -0
- data/tests/gpx_files/with_or_without_elev.gpx +29 -0
- data/tests/magellan_test.rb +18 -0
- data/tests/output_test.rb +115 -0
- data/tests/route_test.rb +63 -0
- data/tests/segment_test.rb +58 -0
- data/tests/track_file_test.rb +75 -0
- data/tests/track_point_test.rb +30 -0
- data/tests/track_test.rb +65 -0
- data/tests/waypoint_test.rb +44 -0
- metadata +126 -0
data/lib/gpx/track.rb
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2006 Doug Fales
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be
|
13
|
+
# included in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#++
|
23
|
+
module GPX
|
24
|
+
# In GPX, a single Track can hold multiple Segments, each of which hold
|
25
|
+
# multiple points (in this library, those points are instances of
|
26
|
+
# TrackPoint). Each instance of this class has its own meta-data, including
|
27
|
+
# low point, high point, and distance. Of course, each track references an
|
28
|
+
# array of the segments that copmrise it, but additionally each track holds
|
29
|
+
# a reference to all of its points as one big array called "points".
|
30
|
+
class Track < Base
|
31
|
+
attr_reader :points, :bounds, :lowest_point, :highest_point, :distance
|
32
|
+
attr_accessor :segments, :name, :gpx_file
|
33
|
+
|
34
|
+
# Initialize a track from a XML::Node, or, if no :element option is
|
35
|
+
# passed, initialize a blank Track object.
|
36
|
+
def initialize(opts = {})
|
37
|
+
@gpx_file = opts[:gpx_file]
|
38
|
+
@segments = []
|
39
|
+
@points = []
|
40
|
+
reset_meta_data
|
41
|
+
if(opts[:element])
|
42
|
+
trk_element = opts[:element]
|
43
|
+
@name = (trk_element.at("name").inner_text rescue "")
|
44
|
+
trk_element.search("trkseg").each do |seg_element|
|
45
|
+
seg = Segment.new(:element => seg_element, :track => self, :gpx_file => @gpx_file)
|
46
|
+
update_meta_data(seg)
|
47
|
+
@segments << seg
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# Append a segment to this track, updating its meta data along the way.
|
53
|
+
def append_segment(seg)
|
54
|
+
update_meta_data(seg)
|
55
|
+
@segments << seg
|
56
|
+
@points.concat(seg.points) unless seg.nil?
|
57
|
+
end
|
58
|
+
|
59
|
+
# Returns true if the given time occurs within any of the segments of this track.
|
60
|
+
def contains_time?(time)
|
61
|
+
segments.each do |seg|
|
62
|
+
return true if seg.contains_time?(time)
|
63
|
+
end
|
64
|
+
return false
|
65
|
+
end
|
66
|
+
|
67
|
+
# Finds the closest point (to "time") within this track. Useful for
|
68
|
+
# correlating things like pictures, video, and other events, if you are
|
69
|
+
# working with a timestamp.
|
70
|
+
def closest_point(time)
|
71
|
+
segment = segments.select { |s| s.contains_time?(time) }
|
72
|
+
segment.first
|
73
|
+
end
|
74
|
+
|
75
|
+
# Removes all points outside of a given area and updates the meta data.
|
76
|
+
# The "area" paremeter is usually a Bounds object.
|
77
|
+
def crop(area)
|
78
|
+
reset_meta_data
|
79
|
+
segments.each do |seg|
|
80
|
+
seg.crop(area)
|
81
|
+
update_meta_data(seg) unless seg.empty?
|
82
|
+
end
|
83
|
+
segments.delete_if { |seg| seg.empty? }
|
84
|
+
end
|
85
|
+
|
86
|
+
# Deletes all points within a given area and updates the meta data.
|
87
|
+
def delete_area(area)
|
88
|
+
reset_meta_data
|
89
|
+
segments.each do |seg|
|
90
|
+
seg.delete_area(area)
|
91
|
+
update_meta_data(seg) unless seg.empty?
|
92
|
+
end
|
93
|
+
segments.delete_if { |seg| seg.empty? }
|
94
|
+
end
|
95
|
+
|
96
|
+
# Returns true if this track has no points in it. This should return
|
97
|
+
# true even when the track has empty segments.
|
98
|
+
def empty?
|
99
|
+
(points.nil? or points.size.zero?)
|
100
|
+
end
|
101
|
+
|
102
|
+
# Prints out a friendly summary of this track (sans points). Useful for
|
103
|
+
# debugging and sanity checks.
|
104
|
+
|
105
|
+
def to_s
|
106
|
+
result = "Track \n"
|
107
|
+
result << "\tName: #{name}\n"
|
108
|
+
result << "\tSize: #{points.size} points\n"
|
109
|
+
result << "\tSegments: #{segments.size} \n"
|
110
|
+
result << "\tDistance: #{distance} km\n"
|
111
|
+
result << "\tLowest Point: #{lowest_point.elevation} \n"
|
112
|
+
result << "\tHighest Point: #{highest_point.elevation}\n "
|
113
|
+
result << "\tBounds: #{bounds.to_s}"
|
114
|
+
result
|
115
|
+
end
|
116
|
+
|
117
|
+
protected
|
118
|
+
|
119
|
+
def update_meta_data(seg)
|
120
|
+
@lowest_point = seg.lowest_point if(@lowest_point.nil? or seg.lowest_point.elevation < @lowest_point.elevation)
|
121
|
+
@highest_point = seg.highest_point if(@highest_point.nil? or seg.highest_point.elevation > @highest_point.elevation)
|
122
|
+
@bounds.add(seg.bounds)
|
123
|
+
@distance += seg.distance
|
124
|
+
@points.concat(seg.points)
|
125
|
+
end
|
126
|
+
|
127
|
+
def reset_meta_data
|
128
|
+
@bounds = Bounds.new
|
129
|
+
@highest_point = nil
|
130
|
+
@lowest_point = nil
|
131
|
+
@distance = 0.0
|
132
|
+
@points = []
|
133
|
+
end
|
134
|
+
|
135
|
+
end
|
136
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2006 Doug Fales
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be
|
13
|
+
# included in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#++
|
23
|
+
module GPX
|
24
|
+
# Basically the same as a point, the TrackPoint class is supposed to
|
25
|
+
# represent the points that are children of Segment elements. So, the only
|
26
|
+
# real difference is that TrackPoints hold a reference to their parent
|
27
|
+
# Segments.
|
28
|
+
class TrackPoint < Point
|
29
|
+
RADIUS = 6371; # earth's mean radius in km
|
30
|
+
|
31
|
+
attr_accessor :segment
|
32
|
+
|
33
|
+
def initialize(opts = {})
|
34
|
+
super(opts)
|
35
|
+
@segment = opts[:segment]
|
36
|
+
end
|
37
|
+
|
38
|
+
# Units are in km
|
39
|
+
def haversine_distance_from(p2)
|
40
|
+
d_lat = p2.latr - latr;
|
41
|
+
d_lon = p2.lonr - lonr;
|
42
|
+
a = Math.sin(d_lat/2) * Math.sin(d_lat/2) + Math.cos(latr) * Math.cos(p2.latr) * Math.sin(d_lon/2) * Math.sin(d_lon/2);
|
43
|
+
c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
|
44
|
+
d = RADIUS * c;
|
45
|
+
return d;
|
46
|
+
end
|
47
|
+
|
48
|
+
# Units are in km
|
49
|
+
def pythagorean_distance_from(p2)
|
50
|
+
Math.sqrt((p2.latr - latr)**2 + (p2.lonr - lonr)**2)
|
51
|
+
end
|
52
|
+
|
53
|
+
# Units are in km
|
54
|
+
def law_of_cosines_distance_from(p2)
|
55
|
+
(Math.acos(Math.sin(latr)*Math.sin(p2.latr) + Math.cos(latr)*Math.cos(p2.latr)*Math.cos(p2.lonr-lonr)) * RADIUS)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
data/lib/gpx/version.rb
ADDED
data/lib/gpx/waypoint.rb
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2006 Doug Fales
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be
|
13
|
+
# included in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#++
|
23
|
+
module GPX
|
24
|
+
# This class supports the concept of a waypoint. Beware that this class has
|
25
|
+
# not seen much use yet, since WalkingBoss does not use waypoints right now.
|
26
|
+
class Waypoint < Point
|
27
|
+
|
28
|
+
SUB_ELEMENTS = %w{ magvar geoidheight name cmt desc src link sym type fix sat hdop vdop pdop ageofdgpsdata dgpsid extensions ele}
|
29
|
+
|
30
|
+
attr_reader :gpx_file
|
31
|
+
SUB_ELEMENTS.each { |sub_el| attr_accessor sub_el.to_sym }
|
32
|
+
|
33
|
+
# Not implemented
|
34
|
+
def crop(area)
|
35
|
+
end
|
36
|
+
|
37
|
+
# Not implemented
|
38
|
+
def delete_area(area)
|
39
|
+
end
|
40
|
+
|
41
|
+
# Initializes a waypoint from a XML::Node.
|
42
|
+
def initialize(opts = {})
|
43
|
+
if(opts[:element] and opts[:gpx_file])
|
44
|
+
wpt_elem = opts[:element]
|
45
|
+
@gpx_file = opts[:gpx_file]
|
46
|
+
super(:element => wpt_elem, :gpx_file => @gpx_file)
|
47
|
+
instantiate_with_text_elements(wpt_elem, SUB_ELEMENTS)
|
48
|
+
else
|
49
|
+
opts.each do |key, value|
|
50
|
+
assignment_method = "#{key}="
|
51
|
+
if self.respond_to?(assignment_method)
|
52
|
+
self.send(assignment_method, value)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# Prints out a friendly summary of this track (sans points). Useful for
|
59
|
+
# debugging and sanity checks.
|
60
|
+
def to_s
|
61
|
+
result = "Waypoint \n"
|
62
|
+
result << "\tName: #{name}\n"
|
63
|
+
result << "\tLatitude: #{lat} \n"
|
64
|
+
result << "\tLongitude: #{lon} \n"
|
65
|
+
result << "\tElevation: #{elevation}\n "
|
66
|
+
result << "\tTime: #{time}\n"
|
67
|
+
SUB_ELEMENTS.each do |sub_element_attribute|
|
68
|
+
val = self.send(sub_element_attribute)
|
69
|
+
result << "\t#{sub_element_attribute}: #{val}\n" unless val.nil?
|
70
|
+
end
|
71
|
+
result
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
data/pkg/gpx-0.7.gem
ADDED
Binary file
|
data/tests/gpx10_test.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'gpx'
|
3
|
+
|
4
|
+
class GPX10Test < Test::Unit::TestCase
|
5
|
+
GPX_FILE = File.join(File.dirname(__FILE__), "gpx_files/gpx10.gpx")
|
6
|
+
|
7
|
+
def test_read
|
8
|
+
# make sure we can read a GPX 1.0 file
|
9
|
+
@gpx_file = GPX::GPXFile.new(:gpx_file => GPX_FILE)
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'gpx'
|
3
|
+
|
4
|
+
class GPXFileTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
ONE_TRACK_FILE = File.join(File.dirname(__FILE__), "gpx_files/one_track.gpx")
|
7
|
+
WITH_OR_WITHOUT_ELEV_FILE = File.join(File.dirname(__FILE__), "gpx_files/with_or_without_elev.gpx")
|
8
|
+
BIG_FILE = File.join(File.dirname(__FILE__), "gpx_files/big.gpx")
|
9
|
+
|
10
|
+
def test_load_data_from_string
|
11
|
+
gpx_file = GPX::GPXFile.new(:gpx_data => open(ONE_TRACK_FILE).read)
|
12
|
+
assert_equal(1, gpx_file.tracks.size)
|
13
|
+
assert_equal(8, gpx_file.tracks.first.segments.size)
|
14
|
+
assert_equal("ACTIVE LOG", gpx_file.tracks.first.name)
|
15
|
+
assert_equal("active_log.gpx", gpx_file.name)
|
16
|
+
assert_equal("2006-04-08T16:44:28Z", gpx_file.time.xmlschema)
|
17
|
+
assert_equal(38.681488, gpx_file.bounds.min_lat)
|
18
|
+
assert_equal(-109.606948, gpx_file.bounds.min_lon)
|
19
|
+
assert_equal(38.791759, gpx_file.bounds.max_lat)
|
20
|
+
assert_equal(-109.447045, gpx_file.bounds.max_lon)
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_load_data_from_file
|
24
|
+
gpx_file = GPX::GPXFile.new(:gpx_file => ONE_TRACK_FILE)
|
25
|
+
assert_equal(1, gpx_file.tracks.size)
|
26
|
+
assert_equal(8, gpx_file.tracks.first.segments.size)
|
27
|
+
assert_equal("ACTIVE LOG", gpx_file.tracks.first.name)
|
28
|
+
assert_equal("active_log.gpx", gpx_file.name)
|
29
|
+
assert_equal("2006-04-08T16:44:28Z", gpx_file.time.xmlschema)
|
30
|
+
assert_equal(38.681488, gpx_file.bounds.min_lat)
|
31
|
+
assert_equal(-109.606948, gpx_file.bounds.min_lon)
|
32
|
+
assert_equal(38.791759, gpx_file.bounds.max_lat)
|
33
|
+
assert_equal(-109.447045, gpx_file.bounds.max_lon)
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_big_file
|
37
|
+
gpx_file = GPX::GPXFile.new(:gpx_file => BIG_FILE)
|
38
|
+
assert_equal(1, gpx_file.tracks.size)
|
39
|
+
assert_equal(7968, gpx_file.tracks.first.points.size)
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_with_or_with_elev
|
43
|
+
gpx_file = GPX::GPXFile.new(:gpx_file => WITH_OR_WITHOUT_ELEV_FILE)
|
44
|
+
assert_equal(2, gpx_file.tracks.size)
|
45
|
+
#assert_equal(7968, gpx_file.tracks.first.points.size)
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<gpx version="1.0"
|
3
|
+
creator="GPSBabel - http://www.gpsbabel.org"
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
5
|
+
xmlns="http://www.topografix.com/GPX/1/0"
|
6
|
+
xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
|
7
|
+
<trk>
|
8
|
+
<name>ACTIVE LOG #74</name>
|
9
|
+
<number>82</number>
|
10
|
+
<trkseg>
|
11
|
+
<trkpt lat="37.378388923" lon="-122.063654875">
|
12
|
+
<ele>35.706055</ele>
|
13
|
+
<time>2007-11-23T23:49:43Z</time>
|
14
|
+
</trkpt>
|
15
|
+
</trkseg>
|
16
|
+
</trk>
|
17
|
+
</gpx>
|
@@ -0,0 +1,306 @@
|
|
1
|
+
$PMGNTRK,4001.386,N,10515.295,W,01609,M,010748.87,A,,270506*69
|
2
|
+
$PMGNTRK,4001.342,N,10515.498,W,01610,M,010839.87,A,,270506*6B
|
3
|
+
$PMGNTRK,4001.259,N,10515.511,W,01609,M,010857.88,A,,270506*6F
|
4
|
+
$PMGNTRK,4000.894,N,10515.515,W,01611,M,011030.88,A,,270506*60
|
5
|
+
$PMGNTRK,4000.879,N,10516.346,W,01622,M,011237.88,A,,270506*65
|
6
|
+
$PMGNTRK,4000.924,N,10516.351,W,01622,M,011248.87,A,,270506*6D
|
7
|
+
$PMGNTRK,4000.927,N,10516.452,W,01623,M,011312.89,A,,270506*6B
|
8
|
+
$PMGNTRK,4000.934,N,10516.454,W,01629,M,011347.89,A,,270506*65
|
9
|
+
$PMGNTRK,4000.940,N,10516.452,W,01629,M,011449.87,A,,270506*67
|
10
|
+
$PMGNTRK,4013.479,N,10715.997,W,01634,M,170142.15,A,,280506*67
|
11
|
+
$PMGNTRK,4013.679,N,10716.238,W,02319,M,170241.14,A,,280506*60
|
12
|
+
$PMGNTRK,4013.671,N,10716.244,W,02324,M,170309.15,A,,280506*61
|
13
|
+
$PMGNTRK,4013.676,N,10716.240,W,02315,M,170702.14,A,,280506*6E
|
14
|
+
$PMGNTRK,4008.847,N,10708.162,W,02313,M,180916.27,A,,280506*66
|
15
|
+
$PMGNTRK,4008.985,N,10708.319,W,02977,M,180945.29,A,,280506*67
|
16
|
+
$PMGNTRK,4008.977,N,10708.328,W,02977,M,181304.28,A,,280506*67
|
17
|
+
$PMGNTRK,4008.968,N,10708.334,W,02979,M,181352.27,A,,280506*66
|
18
|
+
$PMGNTRK,4008.961,N,10708.321,W,02978,M,181441.27,A,,280506*6F
|
19
|
+
$PMGNTRK,4008.952,N,10708.305,W,02975,M,181516.27,A,,280506*67
|
20
|
+
$PMGNTRK,4008.930,N,10708.300,W,02974,M,181558.28,A,,280506*62
|
21
|
+
$PMGNTRK,4008.928,N,10708.280,W,02973,M,181638.27,A,,280506*6F
|
22
|
+
$PMGNTRK,4008.925,N,10708.269,W,02974,M,181708.28,A,,280506*6F
|
23
|
+
$PMGNTRK,4008.926,N,10708.256,W,02975,M,181744.27,A,,280506*66
|
24
|
+
$PMGNTRK,4008.932,N,10708.213,W,02976,M,181833.27,A,,280506*6E
|
25
|
+
$PMGNTRK,4008.935,N,10708.199,W,02977,M,181852.28,A,,280506*61
|
26
|
+
$PMGNTRK,4008.939,N,10708.173,W,02976,M,181922.27,A,,280506*61
|
27
|
+
$PMGNTRK,4008.942,N,10708.156,W,02977,M,181943.29,A,,280506*62
|
28
|
+
$PMGNTRK,4008.932,N,10708.139,W,02978,M,182008.29,A,,280506*66
|
29
|
+
$PMGNTRK,4008.925,N,10708.129,W,02979,M,182025.27,A,,280506*61
|
30
|
+
$PMGNTRK,4008.918,N,10708.121,W,02981,M,182046.29,A,,280506*6B
|
31
|
+
$PMGNTRK,4008.927,N,10708.118,W,02978,M,182104.28,A,,280506*6D
|
32
|
+
$PMGNTRK,4008.939,N,10708.121,W,02981,M,182129.28,A,,280506*61
|
33
|
+
$PMGNTRK,4008.951,N,10708.125,W,02982,M,182155.28,A,,280506*63
|
34
|
+
$PMGNTRK,4008.963,N,10708.112,W,02985,M,182226.28,A,,280506*66
|
35
|
+
$PMGNTRK,4008.966,N,10708.097,W,02985,M,182250.29,A,,280506*6F
|
36
|
+
$PMGNTRK,4008.965,N,10708.081,W,02989,M,182311.29,A,,280506*63
|
37
|
+
$PMGNTRK,4008.968,N,10708.063,W,02992,M,182348.28,A,,280506*65
|
38
|
+
$PMGNTRK,4008.978,N,10708.047,W,02991,M,182417.29,A,,280506*6D
|
39
|
+
$PMGNTRK,4008.983,N,10708.032,W,02993,M,182446.28,A,,280506*6C
|
40
|
+
$PMGNTRK,4008.983,N,10708.020,W,02992,M,182515.29,A,,280506*68
|
41
|
+
$PMGNTRK,4008.982,N,10708.000,W,02991,M,182543.29,A,,280506*6B
|
42
|
+
$PMGNTRK,4008.990,N,10707.990,W,02993,M,182610.28,A,,280506*61
|
43
|
+
$PMGNTRK,4008.983,N,10707.977,W,02997,M,182642.29,A,,280506*68
|
44
|
+
$PMGNTRK,4008.976,N,10707.970,W,02997,M,182702.30,A,,280506*68
|
45
|
+
$PMGNTRK,4008.977,N,10707.952,W,03000,M,182723.29,A,,280506*64
|
46
|
+
$PMGNTRK,4008.974,N,10707.937,W,03006,M,182806.30,A,,280506*62
|
47
|
+
$PMGNTRK,4008.967,N,10707.926,W,03012,M,182925.29,A,,280506*6D
|
48
|
+
$PMGNTRK,4008.958,N,10707.917,W,03012,M,182957.30,A,,280506*6E
|
49
|
+
$PMGNTRK,4008.948,N,10707.896,W,03011,M,183030.31,A,,280506*6C
|
50
|
+
$PMGNTRK,4008.947,N,10707.878,W,03006,M,183102.30,A,,280506*64
|
51
|
+
$PMGNTRK,4008.939,N,10707.878,W,03003,M,183128.30,A,,280506*60
|
52
|
+
$PMGNTRK,4008.928,N,10707.878,W,03003,M,183147.30,A,,280506*69
|
53
|
+
$PMGNTRK,4008.920,N,10707.871,W,03004,M,183217.30,A,,280506*69
|
54
|
+
$PMGNTRK,4008.910,N,10707.870,W,03000,M,183309.31,A,,280506*60
|
55
|
+
$PMGNTRK,4008.901,N,10707.869,W,03003,M,183358.30,A,,280506*6E
|
56
|
+
$PMGNTRK,4008.893,N,10707.862,W,03010,M,183753.32,A,,280506*60
|
57
|
+
$PMGNTRK,4008.901,N,10707.865,W,03008,M,184254.31,A,,280506*62
|
58
|
+
$PMGNTRK,4008.910,N,10707.863,W,03007,M,184328.31,A,,280506*61
|
59
|
+
$PMGNTRK,4008.918,N,10707.868,W,03008,M,184409.31,A,,280506*69
|
60
|
+
$PMGNTRK,4008.928,N,10707.871,W,03008,M,184441.32,A,,280506*6D
|
61
|
+
$PMGNTRK,4008.937,N,10707.871,W,03021,M,184504.32,A,,280506*68
|
62
|
+
$PMGNTRK,4008.941,N,10707.887,W,03020,M,184534.34,A,,280506*64
|
63
|
+
$PMGNTRK,4008.948,N,10707.902,W,03020,M,184601.33,A,,280506*63
|
64
|
+
$PMGNTRK,4008.956,N,10707.908,W,03019,M,184628.34,A,,280506*60
|
65
|
+
$PMGNTRK,4008.971,N,10707.917,W,03021,M,184647.88,A,,280506*6E
|
66
|
+
$PMGNTRK,4008.973,N,10707.935,W,03014,M,184737.33,A,,280506*6C
|
67
|
+
$PMGNTRK,4008.976,N,10707.950,W,03014,M,184759.34,A,,280506*65
|
68
|
+
$PMGNTRK,4008.983,N,10707.957,W,03014,M,184835.32,A,,280506*6B
|
69
|
+
$PMGNTRK,4008.985,N,10707.968,W,03002,M,184906.33,A,,280506*66
|
70
|
+
$PMGNTRK,4008.983,N,10707.985,W,02999,M,184927.33,A,,280506*6A
|
71
|
+
$PMGNTRK,4008.982,N,10707.996,W,02997,M,184945.33,A,,280506*63
|
72
|
+
$PMGNTRK,4008.986,N,10708.009,W,03008,M,185009.32,A,,280506*68
|
73
|
+
$PMGNTRK,4008.982,N,10708.025,W,03003,M,185030.32,A,,280506*63
|
74
|
+
$PMGNTRK,4008.974,N,10708.045,W,02998,M,185102.32,A,,280506*66
|
75
|
+
$PMGNTRK,4008.968,N,10708.080,W,02991,M,185135.32,A,,280506*6F
|
76
|
+
$PMGNTRK,4008.970,N,10708.094,W,02992,M,185210.32,A,,280506*64
|
77
|
+
$PMGNTRK,4008.962,N,10708.120,W,02989,M,185454.32,A,,280506*65
|
78
|
+
$PMGNTRK,4008.948,N,10708.141,W,02983,M,185535.33,A,,280506*67
|
79
|
+
$PMGNTRK,4008.939,N,10708.159,W,02981,M,185600.33,A,,280506*6F
|
80
|
+
$PMGNTRK,4008.934,N,10708.187,W,02981,M,185633.33,A,,280506*61
|
81
|
+
$PMGNTRK,4008.925,N,10708.266,W,02980,M,185806.33,A,,280506*64
|
82
|
+
$PMGNTRK,4008.928,N,10708.279,W,02977,M,185824.34,A,,280506*68
|
83
|
+
$PMGNTRK,4008.926,N,10708.294,W,02975,M,185847.33,A,,280506*65
|
84
|
+
$PMGNTRK,4008.918,N,10708.302,W,02977,M,185919.33,A,,280506*6E
|
85
|
+
$PMGNTRK,4008.913,N,10708.312,W,02979,M,185942.33,A,,280506*64
|
86
|
+
$PMGNTRK,4008.908,N,10708.327,W,02982,M,190007.34,A,,280506*67
|
87
|
+
$PMGNTRK,4008.906,N,10708.345,W,02986,M,190041.33,A,,280506*6C
|
88
|
+
$PMGNTRK,4008.890,N,10708.349,W,02990,M,190105.33,A,,280506*68
|
89
|
+
$PMGNTRK,4008.878,N,10708.349,W,02991,M,190122.34,A,,280506*6D
|
90
|
+
$PMGNTRK,4008.864,N,10708.351,W,02993,M,190143.34,A,,280506*6C
|
91
|
+
$PMGNTRK,4008.850,N,10708.353,W,02994,M,190204.34,A,,280506*6E
|
92
|
+
$PMGNTRK,4008.834,N,10708.354,W,02997,M,190228.33,A,,280506*61
|
93
|
+
$PMGNTRK,4008.821,N,10708.356,W,02999,M,190248.34,A,,280506*68
|
94
|
+
$PMGNTRK,4008.803,N,10708.358,W,02998,M,190322.33,A,,280506*6D
|
95
|
+
$PMGNTRK,4008.791,N,10708.360,W,02997,M,190340.34,A,,280506*6E
|
96
|
+
$PMGNTRK,4008.778,N,10708.358,W,02996,M,190357.33,A,,280506*62
|
97
|
+
$PMGNTRK,4008.756,N,10708.354,W,02995,M,190427.34,A,,280506*66
|
98
|
+
$PMGNTRK,4008.737,N,10708.353,W,02995,M,190451.33,A,,280506*60
|
99
|
+
$PMGNTRK,4008.722,N,10708.352,W,02994,M,190511.34,A,,280506*66
|
100
|
+
$PMGNTRK,4008.708,N,10708.349,W,02993,M,190532.34,A,,280506*62
|
101
|
+
$PMGNTRK,4008.694,N,10708.347,W,02989,M,190554.34,A,,280506*63
|
102
|
+
$PMGNTRK,4008.678,N,10708.345,W,02986,M,190619.34,A,,280506*66
|
103
|
+
$PMGNTRK,4008.671,N,10708.347,W,02989,M,190655.33,A,,280506*6D
|
104
|
+
$PMGNTRK,4008.661,N,10708.341,W,02990,M,191233.37,A,,280506*63
|
105
|
+
$PMGNTRK,4008.653,N,10708.338,W,02992,M,191309.34,A,,280506*65
|
106
|
+
$PMGNTRK,4008.646,N,10708.327,W,02989,M,191331.36,A,,280506*6C
|
107
|
+
$PMGNTRK,4008.632,N,10708.321,W,02984,M,191400.34,A,,280506*63
|
108
|
+
$PMGNTRK,4008.620,N,10708.316,W,02983,M,191420.36,A,,280506*63
|
109
|
+
$PMGNTRK,4008.612,N,10708.315,W,02983,M,191441.35,A,,280506*65
|
110
|
+
$PMGNTRK,4008.614,N,10708.327,W,02985,M,191553.35,A,,280506*66
|
111
|
+
$PMGNTRK,4008.625,N,10708.332,W,02987,M,191618.37,A,,280506*6C
|
112
|
+
$PMGNTRK,4008.636,N,10708.334,W,02991,M,191704.36,A,,280506*62
|
113
|
+
$PMGNTRK,4008.649,N,10708.337,W,02994,M,191733.35,A,,280506*6B
|
114
|
+
$PMGNTRK,4008.666,N,10708.341,W,02994,M,191757.35,A,,280506*65
|
115
|
+
$PMGNTRK,4008.687,N,10708.344,W,02993,M,191824.36,A,,280506*60
|
116
|
+
$PMGNTRK,4008.699,N,10708.345,W,02994,M,191840.37,A,,280506*6A
|
117
|
+
$PMGNTRK,4008.718,N,10708.351,W,02996,M,191907.37,A,,280506*67
|
118
|
+
$PMGNTRK,4008.740,N,10708.352,W,02999,M,191937.37,A,,280506*65
|
119
|
+
$PMGNTRK,4008.755,N,10708.354,W,03000,M,191958.36,A,,280506*67
|
120
|
+
$PMGNTRK,4008.769,N,10708.358,W,03004,M,192017.37,A,,280506*60
|
121
|
+
$PMGNTRK,4008.800,N,10708.360,W,03006,M,192124.37,A,,280506*68
|
122
|
+
$PMGNTRK,4008.814,N,10708.356,W,03006,M,192141.36,A,,280506*6A
|
123
|
+
$PMGNTRK,4008.831,N,10708.354,W,03005,M,192204.37,A,,280506*6F
|
124
|
+
$PMGNTRK,4008.846,N,10708.353,W,03004,M,192225.36,A,,280506*6B
|
125
|
+
$PMGNTRK,4008.858,N,10708.351,W,03005,M,192241.36,A,,280506*65
|
126
|
+
$PMGNTRK,4008.874,N,10708.349,W,03005,M,192304.38,A,,280506*6C
|
127
|
+
$PMGNTRK,4008.887,N,10708.348,W,03003,M,192320.37,A,,280506*6E
|
128
|
+
$PMGNTRK,4008.902,N,10708.349,W,03003,M,192339.36,A,,280506*6A
|
129
|
+
$PMGNTRK,4008.917,N,10708.347,W,03002,M,192357.37,A,,280506*68
|
130
|
+
$PMGNTRK,4008.932,N,10708.345,W,03002,M,192417.36,A,,280506*6F
|
131
|
+
$PMGNTRK,4008.950,N,10708.339,W,03001,M,192441.36,A,,280506*60
|
132
|
+
$PMGNTRK,4008.968,N,10708.332,W,02999,M,192506.36,A,,280506*6B
|
133
|
+
$PMGNTRK,4008.978,N,10708.327,W,02995,M,192531.37,A,,280506*67
|
134
|
+
$PMGNTRK,4008.984,N,10708.321,W,02990,M,192647.36,A,,280506*64
|
135
|
+
$PMGNTRK,4010.089,N,10705.151,W,02982,M,200016.76,A,,280506*6C
|
136
|
+
$PMGNTRK,4010.093,N,10705.143,W,02982,M,200033.77,A,,280506*62
|
137
|
+
$PMGNTRK,4010.101,N,10705.133,W,02982,M,200057.29,A,,280506*66
|
138
|
+
$PMGNTRK,4010.102,N,10705.122,W,02982,M,200114.78,A,,280506*67
|
139
|
+
$PMGNTRK,4010.103,N,10705.108,W,02982,M,200133.29,A,,280506*6F
|
140
|
+
$PMGNTRK,4010.111,N,10705.102,W,02973,M,200157.77,A,,280506*61
|
141
|
+
$PMGNTRK,4010.127,N,10705.100,W,02971,M,200209.77,A,,280506*6C
|
142
|
+
$PMGNTRK,4010.154,N,10705.099,W,02927,M,200227.33,A,,280506*66
|
143
|
+
$PMGNTRK,4010.159,N,10705.089,W,02928,M,200246.76,A,,280506*63
|
144
|
+
$PMGNTRK,4010.162,N,10705.079,W,02931,M,200330.76,A,,280506*6C
|
145
|
+
$PMGNTRK,4010.155,N,10705.080,W,02930,M,200440.77,A,,280506*6E
|
146
|
+
$PMGNTRK,4010.147,N,10705.086,W,02929,M,200502.77,A,,280506*64
|
147
|
+
$PMGNTRK,4010.148,N,10705.101,W,02933,M,200539.76,A,,280506*67
|
148
|
+
$PMGNTRK,4010.140,N,10705.122,W,02936,M,200611.78,A,,280506*6C
|
149
|
+
$PMGNTRK,4010.131,N,10705.119,W,02935,M,200636.77,A,,280506*6B
|
150
|
+
$PMGNTRK,4010.120,N,10705.114,W,02933,M,200658.78,A,,280506*67
|
151
|
+
$PMGNTRK,4010.113,N,10705.104,W,02938,M,200712.78,A,,280506*62
|
152
|
+
$PMGNTRK,4010.111,N,10705.091,W,02934,M,200731.78,A,,280506*60
|
153
|
+
$PMGNTRK,4010.111,N,10705.073,W,02925,M,200756.78,A,,280506*6D
|
154
|
+
$PMGNTRK,4010.114,N,10705.059,W,02913,M,200816.78,A,,280506*6E
|
155
|
+
$PMGNTRK,4010.112,N,10705.047,W,02910,M,200834.77,A,,280506*6B
|
156
|
+
$PMGNTRK,4010.111,N,10705.033,W,02906,M,200854.77,A,,280506*6A
|
157
|
+
$PMGNTRK,4010.115,N,10705.016,W,02901,M,200931.77,A,,280506*6C
|
158
|
+
$PMGNTRK,4010.120,N,10705.008,W,02904,M,201011.77,A,,280506*6A
|
159
|
+
$PMGNTRK,4010.129,N,10704.997,W,02901,M,201041.78,A,,280506*62
|
160
|
+
$PMGNTRK,4010.139,N,10704.991,W,02902,M,201113.78,A,,280506*60
|
161
|
+
$PMGNTRK,4010.149,N,10704.978,W,02893,M,201141.77,A,,280506*61
|
162
|
+
$PMGNTRK,4010.155,N,10704.970,W,02891,M,201201.77,A,,280506*61
|
163
|
+
$PMGNTRK,4010.166,N,10704.961,W,02888,M,201227.77,A,,280506*6D
|
164
|
+
$PMGNTRK,4010.176,N,10704.954,W,02891,M,201249.78,A,,280506*65
|
165
|
+
$PMGNTRK,4010.184,N,10704.950,W,02893,M,201323.77,A,,280506*6C
|
166
|
+
$PMGNTRK,4010.194,N,10704.954,W,02885,M,201417.79,A,,280506*60
|
167
|
+
$PMGNTRK,4010.206,N,10704.948,W,02883,M,201503.78,A,,280506*66
|
168
|
+
$PMGNTRK,4010.212,N,10704.935,W,02875,M,201525.78,A,,280506*64
|
169
|
+
$PMGNTRK,4010.220,N,10704.928,W,02871,M,201601.79,A,,280506*69
|
170
|
+
$PMGNTRK,4010.227,N,10704.907,W,02866,M,201642.77,A,,280506*6C
|
171
|
+
$PMGNTRK,4010.243,N,10704.898,W,02866,M,201707.79,A,,280506*67
|
172
|
+
$PMGNTRK,4010.255,N,10704.892,W,02864,M,201734.78,A,,280506*69
|
173
|
+
$PMGNTRK,4010.269,N,10704.885,W,02858,M,201804.77,A,,280506*6C
|
174
|
+
$PMGNTRK,4010.275,N,10704.875,W,02852,M,201821.78,A,,280506*6C
|
175
|
+
$PMGNTRK,4010.283,N,10704.862,W,02847,M,201844.78,A,,280506*64
|
176
|
+
$PMGNTRK,4010.294,N,10704.854,W,02846,M,201901.78,A,,280506*66
|
177
|
+
$PMGNTRK,4010.312,N,10704.838,W,02846,M,201944.78,A,,280506*62
|
178
|
+
$PMGNTRK,4010.320,N,10704.831,W,02844,M,202003.77,A,,280506*6E
|
179
|
+
$PMGNTRK,4010.338,N,10704.819,W,02842,M,202040.78,A,,280506*63
|
180
|
+
$PMGNTRK,4010.347,N,10704.813,W,02840,M,202058.78,A,,280506*6A
|
181
|
+
$PMGNTRK,4010.356,N,10704.813,W,02837,M,202128.78,A,,280506*6C
|
182
|
+
$PMGNTRK,4010.364,N,10704.812,W,02842,M,202316.78,A,,280506*61
|
183
|
+
$PMGNTRK,4010.377,N,10704.806,W,02843,M,202337.78,A,,280506*64
|
184
|
+
$PMGNTRK,4010.391,N,10704.800,W,02842,M,202404.80,A,,280506*6B
|
185
|
+
$PMGNTRK,4010.401,N,10704.795,W,02840,M,202422.79,A,,280506*66
|
186
|
+
$PMGNTRK,4010.412,N,10704.785,W,02836,M,202446.79,A,,280506*66
|
187
|
+
$PMGNTRK,4010.427,N,10704.782,W,02838,M,202514.79,A,,280506*6F
|
188
|
+
$PMGNTRK,4010.439,N,10704.782,W,02836,M,202535.79,A,,280506*6D
|
189
|
+
$PMGNTRK,4010.456,N,10704.780,W,02836,M,202602.78,A,,280506*60
|
190
|
+
$PMGNTRK,4010.474,N,10704.799,W,02832,M,202640.78,A,,280506*6A
|
191
|
+
$PMGNTRK,4010.484,N,10704.811,W,02833,M,202700.79,A,,280506*6F
|
192
|
+
$PMGNTRK,4010.489,N,10704.822,W,02829,M,202715.80,A,,280506*6B
|
193
|
+
$PMGNTRK,4010.498,N,10704.844,W,02823,M,202747.79,A,,280506*60
|
194
|
+
$PMGNTRK,4010.518,N,10704.868,W,02827,M,202823.79,A,,280506*6E
|
195
|
+
$PMGNTRK,4010.524,N,10704.879,W,02831,M,202838.80,A,,280506*6A
|
196
|
+
$PMGNTRK,4010.527,N,10704.910,W,02845,M,202913.80,A,,280506*6C
|
197
|
+
$PMGNTRK,4010.523,N,10704.921,W,02850,M,202938.78,A,,280506*60
|
198
|
+
$PMGNTRK,4010.519,N,10704.936,W,02852,M,203012.80,A,,280506*6A
|
199
|
+
$PMGNTRK,4010.517,N,10704.948,W,02856,M,203027.79,A,,280506*69
|
200
|
+
$PMGNTRK,4010.518,N,10704.967,W,02858,M,203058.81,A,,280506*6A
|
201
|
+
$PMGNTRK,4010.522,N,10704.978,W,02861,M,203114.79,A,,280506*69
|
202
|
+
$PMGNTRK,4010.533,N,10704.997,W,02870,M,203308.80,A,,280506*61
|
203
|
+
$PMGNTRK,4010.540,N,10705.008,W,02869,M,203323.81,A,,280506*6B
|
204
|
+
$PMGNTRK,4010.554,N,10705.022,W,02871,M,203347.79,A,,280506*6A
|
205
|
+
$PMGNTRK,4010.567,N,10705.026,W,02871,M,203404.81,A,,280506*69
|
206
|
+
$PMGNTRK,4010.581,N,10705.028,W,02874,M,203421.80,A,,280506*6C
|
207
|
+
$PMGNTRK,4010.591,N,10705.035,W,02876,M,203439.80,A,,280506*6A
|
208
|
+
$PMGNTRK,4010.608,N,10705.049,W,02880,M,203507.80,A,,280506*67
|
209
|
+
$PMGNTRK,4010.617,N,10705.053,W,02878,M,203521.80,A,,280506*61
|
210
|
+
$PMGNTRK,4010.634,N,10705.064,W,02875,M,203549.80,A,,280506*67
|
211
|
+
$PMGNTRK,4010.640,N,10705.070,W,02875,M,203633.80,A,,280506*6F
|
212
|
+
$PMGNTRK,4010.648,N,10705.065,W,02873,M,203701.79,A,,280506*63
|
213
|
+
$PMGNTRK,4010.636,N,10705.065,W,02874,M,203723.81,A,,280506*6A
|
214
|
+
$PMGNTRK,4010.628,N,10705.056,W,02875,M,203740.80,A,,280506*60
|
215
|
+
$PMGNTRK,4010.627,N,10705.038,W,02876,M,203756.80,A,,280506*63
|
216
|
+
$PMGNTRK,4010.634,N,10705.022,W,02878,M,203815.80,A,,280506*6C
|
217
|
+
$PMGNTRK,4010.644,N,10705.005,W,02878,M,203835.80,A,,280506*6C
|
218
|
+
$PMGNTRK,4010.654,N,10704.981,W,02883,M,203901.80,A,,280506*6B
|
219
|
+
$PMGNTRK,4010.664,N,10704.959,W,02889,M,203949.81,A,,280506*6A
|
220
|
+
$PMGNTRK,4010.672,N,10704.950,W,02885,M,204010.79,A,,280506*6D
|
221
|
+
$PMGNTRK,4010.686,N,10704.932,W,02885,M,204040.81,A,,280506*60
|
222
|
+
$PMGNTRK,4010.699,N,10704.921,W,02887,M,204102.81,A,,280506*69
|
223
|
+
$PMGNTRK,4010.706,N,10704.905,W,02889,M,204123.81,A,,280506*65
|
224
|
+
$PMGNTRK,4010.707,N,10704.893,W,02887,M,204137.79,A,,280506*66
|
225
|
+
$PMGNTRK,4010.701,N,10704.881,W,02886,M,204203.81,A,,280506*61
|
226
|
+
$PMGNTRK,4010.693,N,10704.876,W,02886,M,204228.80,A,,280506*6B
|
227
|
+
$PMGNTRK,4010.686,N,10704.869,W,02873,M,204303.81,A,,280506*62
|
228
|
+
$PMGNTRK,4010.679,N,10704.857,W,02868,M,204348.81,A,,280506*6A
|
229
|
+
$PMGNTRK,4010.669,N,10704.848,W,02867,M,204416.81,A,,280506*66
|
230
|
+
$PMGNTRK,4010.664,N,10704.840,W,02871,M,204431.80,A,,280506*60
|
231
|
+
$PMGNTRK,4010.659,N,10704.831,W,02861,M,204452.82,A,,280506*6E
|
232
|
+
$PMGNTRK,4010.651,N,10704.813,W,02863,M,204519.82,A,,280506*6A
|
233
|
+
$PMGNTRK,4010.636,N,10704.815,W,02853,M,204612.81,A,,280506*65
|
234
|
+
$PMGNTRK,4010.623,N,10704.817,W,02848,M,204636.40,A,,280506*62
|
235
|
+
$PMGNTRK,4010.608,N,10704.817,W,02846,M,204659.83,A,,280506*63
|
236
|
+
$PMGNTRK,4010.599,N,10704.822,W,02845,M,204715.82,A,,280506*65
|
237
|
+
$PMGNTRK,4010.587,N,10704.831,W,02844,M,204741.81,A,,280506*6B
|
238
|
+
$PMGNTRK,4010.577,N,10704.847,W,02848,M,204811.82,A,,280506*60
|
239
|
+
$PMGNTRK,4010.570,N,10704.858,W,02849,M,204830.81,A,,280506*68
|
240
|
+
$PMGNTRK,4010.559,N,10704.871,W,02851,M,204857.82,A,,280506*63
|
241
|
+
$PMGNTRK,4010.552,N,10704.881,W,02850,M,204914.82,A,,280506*60
|
242
|
+
$PMGNTRK,4010.542,N,10704.885,W,02853,M,204932.82,A,,280506*62
|
243
|
+
$PMGNTRK,4010.535,N,10704.875,W,02855,M,205010.82,A,,280506*63
|
244
|
+
$PMGNTRK,4010.527,N,10704.865,W,02854,M,205027.82,A,,280506*64
|
245
|
+
$PMGNTRK,4010.509,N,10704.869,W,02853,M,205036.80,A,,280506*61
|
246
|
+
$PMGNTRK,4010.507,N,10704.852,W,02852,M,205135.82,A,,280506*66
|
247
|
+
$PMGNTRK,4010.503,N,10704.835,W,02855,M,205155.82,A,,280506*62
|
248
|
+
$PMGNTRK,4010.494,N,10704.815,W,02859,M,205222.81,A,,280506*63
|
249
|
+
$PMGNTRK,4010.482,N,10704.794,W,02848,M,205251.82,A,,280506*65
|
250
|
+
$PMGNTRK,4010.476,N,10704.785,W,02849,M,205305.82,A,,280506*6F
|
251
|
+
$PMGNTRK,4010.465,N,10704.778,W,02846,M,205322.82,A,,280506*65
|
252
|
+
$PMGNTRK,4010.454,N,10704.778,W,02845,M,205346.82,A,,280506*66
|
253
|
+
$PMGNTRK,4010.441,N,10704.778,W,02845,M,205412.81,A,,280506*67
|
254
|
+
$PMGNTRK,4010.427,N,10704.780,W,02846,M,205431.81,A,,280506*62
|
255
|
+
$PMGNTRK,4010.415,N,10704.789,W,02847,M,205453.82,A,,280506*6C
|
256
|
+
$PMGNTRK,4010.399,N,10704.801,W,02842,M,205528.82,A,,280506*68
|
257
|
+
$PMGNTRK,4010.390,N,10704.804,W,02842,M,205542.82,A,,280506*68
|
258
|
+
$PMGNTRK,4010.379,N,10704.811,W,02837,M,205601.83,A,,280506*6C
|
259
|
+
$PMGNTRK,4010.370,N,10704.809,W,02838,M,205631.82,A,,280506*61
|
260
|
+
$PMGNTRK,4010.358,N,10704.809,W,02842,M,205737.83,A,,280506*60
|
261
|
+
$PMGNTRK,4010.342,N,10704.817,W,02845,M,205806.83,A,,280506*6E
|
262
|
+
$PMGNTRK,4010.329,N,10704.825,W,02847,M,205829.37,A,,280506*62
|
263
|
+
$PMGNTRK,4010.318,N,10704.832,W,02847,M,205854.84,A,,280506*64
|
264
|
+
$PMGNTRK,4010.307,N,10704.842,W,02849,M,205915.84,A,,280506*67
|
265
|
+
$PMGNTRK,4010.297,N,10704.850,W,02850,M,205934.83,A,,280506*60
|
266
|
+
$PMGNTRK,4010.288,N,10704.860,W,02854,M,205954.83,A,,280506*6F
|
267
|
+
$PMGNTRK,4010.276,N,10704.879,W,02860,M,210026.83,A,,280506*69
|
268
|
+
$PMGNTRK,4010.264,N,10704.888,W,02864,M,210049.83,A,,280506*69
|
269
|
+
$PMGNTRK,4010.248,N,10704.892,W,02869,M,210115.83,A,,280506*69
|
270
|
+
$PMGNTRK,4010.237,N,10704.899,W,02873,M,210137.83,A,,280506*61
|
271
|
+
$PMGNTRK,4010.226,N,10704.912,W,02875,M,210203.82,A,,280506*60
|
272
|
+
$PMGNTRK,4010.220,N,10704.923,W,02876,M,210220.82,A,,280506*66
|
273
|
+
$PMGNTRK,4010.213,N,10704.930,W,02879,M,210238.83,A,,280506*63
|
274
|
+
$PMGNTRK,4010.197,N,10704.935,W,02883,M,210309.82,A,,280506*6E
|
275
|
+
$PMGNTRK,4010.189,N,10704.941,W,02879,M,210334.38,A,,280506*68
|
276
|
+
$PMGNTRK,4010.178,N,10704.944,W,02890,M,210404.83,A,,280506*60
|
277
|
+
$PMGNTRK,4010.162,N,10704.951,W,02890,M,210417.82,A,,280506*6C
|
278
|
+
$PMGNTRK,4010.160,N,10704.969,W,02935,M,210458.83,A,,280506*61
|
279
|
+
$PMGNTRK,4010.153,N,10704.975,W,02908,M,210518.40,A,,280506*68
|
280
|
+
$PMGNTRK,4010.146,N,10704.972,W,02909,M,210603.82,A,,280506*6D
|
281
|
+
$PMGNTRK,4010.134,N,10704.982,W,02922,M,210612.83,A,,280506*6F
|
282
|
+
$PMGNTRK,4010.120,N,10704.990,W,02927,M,210631.36,A,,280506*63
|
283
|
+
$PMGNTRK,4010.114,N,10705.002,W,02926,M,210657.83,A,,280506*68
|
284
|
+
$PMGNTRK,4010.118,N,10705.015,W,02926,M,210713.82,A,,280506*62
|
285
|
+
$PMGNTRK,4010.112,N,10705.038,W,02922,M,210737.36,A,,280506*6A
|
286
|
+
$PMGNTRK,4010.114,N,10705.050,W,02916,M,210752.84,A,,280506*6F
|
287
|
+
$PMGNTRK,4010.118,N,10705.078,W,02922,M,210828.83,A,,280506*6B
|
288
|
+
$PMGNTRK,4010.111,N,10705.093,W,02926,M,210852.84,A,,280506*69
|
289
|
+
$PMGNTRK,4010.115,N,10705.105,W,02926,M,210909.84,A,,280506*6C
|
290
|
+
$PMGNTRK,4010.113,N,10705.115,W,02927,M,210925.84,A,,280506*64
|
291
|
+
$PMGNTRK,4010.111,N,10705.126,W,02933,M,210941.84,A,,280506*61
|
292
|
+
$PMGNTRK,4010.114,N,10705.138,W,02943,M,211005.84,A,,280506*64
|
293
|
+
$PMGNTRK,4010.118,N,10705.148,W,02939,M,211023.85,A,,280506*67
|
294
|
+
$PMGNTRK,4010.119,N,10705.164,W,02940,M,211049.84,A,,280506*6B
|
295
|
+
$PMGNTRK,4010.109,N,10705.183,W,02946,M,211132.84,A,,280506*68
|
296
|
+
$PMGNTRK,4010.098,N,10705.183,W,02946,M,211141.37,A,,280506*6D
|
297
|
+
$PMGNTRK,4010.088,N,10705.190,W,02943,M,211201.85,A,,280506*65
|
298
|
+
$PMGNTRK,4010.085,N,10705.203,W,02944,M,211220.85,A,,280506*65
|
299
|
+
$PMGNTRK,4010.079,N,10705.213,W,02944,M,211236.46,A,,280506*6F
|
300
|
+
$PMGNTRK,4010.089,N,10705.232,W,02974,M,211251.84,A,,280506*6F
|
301
|
+
$PMGNTRK,4010.095,N,10705.248,W,02974,M,211308.84,A,,280506*62
|
302
|
+
$PMGNTRK,4010.102,N,10705.260,W,02976,M,211335.37,A,,280506*63
|
303
|
+
$PMGNTRK,4010.109,N,10705.271,W,02976,M,211346.85,A,,280506*65
|
304
|
+
$PMGNTRK,4010.099,N,10705.278,W,02979,M,211410.86,A,,280506*6C
|
305
|
+
$PMGNTRK,4010.094,N,10705.283,W,02984,M,211552.85,A,,280506*63
|
306
|
+
$PMGNCMD,END*3D
|