Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cuav_util: consider elevation differences in distance calculation #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion cuav/lib/cuav_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,24 @@ def pixel_coordinates(xpos, ypos, latitude, longitude, height, pitch, roll, yaw,

bearing = math.degrees(math.atan2(xofs, yofs))
distance = math.sqrt(xofs**2 + yofs**2)
return gps_newpos(latitude, longitude, bearing, distance)
initial_pos = gps_newpos(latitude, longitude, bearing, distance)

from MAVProxy.modules.mavproxy_map import mp_elevation
EleModel = mp_elevation.ElevationModel()
ground_elevation = EleModel.GetElevation(latitude, longitude)

# Get the elevation of the estimated point
initial_elevation = EleModel.GetElevation(initial_pos[0], initial_pos[1])

# Recalculate the height difference and adjust the distance accordingly
height_diff = initial_elevation - ground_elevation
if height_diff < 0:
adjusted_distance = math.sqrt(distance**2 + height_diff**2)
else:
adjusted_distance = distance

# Recalculate the new position with the adjusted distance
return gps_newpos(latitude, longitude, bearing, adjusted_distance)

def gps_position_from_xy(x, y, pos, C=None, altitude=None, shape=None):
'''
Expand Down