Skip to content

Commit 72919e9

Browse files
committed
Asterix: remove set_secondary_vehicle_position
1 parent a373f14 commit 72919e9

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

MAVProxy/modules/mavproxy_asterix.py

-9
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,6 @@ def stop_listener(self):
133133
self.sock = None
134134
self.tracks = {}
135135

136-
def set_secondary_vehicle_position(self, m):
137-
'''store second vehicle position for filtering purposes'''
138-
if m.get_type() != 'GLOBAL_POSITION_INT':
139-
return
140-
(lat, lon, heading) = (m.lat*1.0e-7, m.lon*1.0e-7, m.hdg*0.01)
141-
if abs(lat) < 1.0e-3 and abs(lon) < 1.0e-3:
142-
return
143-
self.vehicle2_pos = VehiclePos(m)
144-
145136
def could_collide_hor(self, vpos, adsb_pkt):
146137
'''return true if vehicle could come within filter_dist_xy meters of adsb vehicle in timeout seconds'''
147138
margin = self.asterix_settings.filter_dist_xy

0 commit comments

Comments
 (0)