2013-02-25 04:50:56 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
// position_vector.pde related utility functions
|
|
|
|
|
2014-05-27 04:30:32 -03:00
|
|
|
// position vectors are Vector3f
|
2013-02-25 04:50:56 -04:00
|
|
|
// .x = latitude from home in cm
|
|
|
|
// .y = longitude from home in cm
|
2013-03-20 10:29:08 -03:00
|
|
|
// .z = altitude above home in cm
|
2013-02-25 04:50:56 -04:00
|
|
|
|
|
|
|
// pv_latlon_to_vector - convert lat/lon coordinates to a position vector
|
2014-05-27 04:30:32 -03:00
|
|
|
Vector3f pv_location_to_vector(const Location& loc)
|
2013-03-20 10:29:08 -03:00
|
|
|
{
|
2014-06-10 23:03:19 -03:00
|
|
|
const struct Location &temp_home = ahrs.get_home();
|
|
|
|
Vector3f tmp((loc.lat-temp_home.lat) * LATLON_TO_CM, (loc.lng-temp_home.lng) * LATLON_TO_CM * scaleLongDown, loc.alt);
|
2013-02-25 04:50:56 -04:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2013-03-20 10:29:08 -03:00
|
|
|
// pv_get_bearing_cd - return bearing in centi-degrees between two positions
|
2013-08-13 13:22:28 -03:00
|
|
|
float pv_get_bearing_cd(const Vector3f &origin, const Vector3f &destination)
|
2013-02-25 04:50:56 -04:00
|
|
|
{
|
2014-06-06 05:55:02 -03:00
|
|
|
float bearing = 9000 + fast_atan2(-(destination.x-origin.x), destination.y-origin.y) * DEGX100;
|
2013-02-25 04:50:56 -04:00
|
|
|
if (bearing < 0) {
|
|
|
|
bearing += 36000;
|
|
|
|
}
|
|
|
|
return bearing;
|
2013-08-04 21:19:19 -03:00
|
|
|
}
|
2014-06-02 06:03:02 -03:00
|
|
|
|
|
|
|
// pv_get_horizontal_distance_cm - return distance between two positions in cm
|
|
|
|
float pv_get_horizontal_distance_cm(const Vector3f &origin, const Vector3f &destination)
|
|
|
|
{
|
|
|
|
return pythagorous2(destination.x-origin.x,destination.y-origin.y);
|
|
|
|
}
|