|
double | osmscout::CalculateDistancePointToLineSegment (const GeoCoord &p, const GeoCoord &a, const GeoCoord &b, GeoCoord &intersection) |
| Calculates the distance between a point p and a line defined by the points a and b. More...
|
|
double | osmscout::DistanceToSegment (const GeoBox &boundingBox, const GeoCoord &segmentStart, const GeoCoord &segmentEnd, GeoCoord &location, GeoCoord &intersection) |
|
double | osmscout::DistanceToSegment (const GeoCoord &point, const GeoCoord &segmentStart, const GeoCoord &segmentEnd, double &r, GeoCoord &intersection) |
|
double | osmscout::DistanceToSegment (const std::vector< Point > &points, const GeoCoord &segmentStart, const GeoCoord &segmentEnd, GeoCoord &location, GeoCoord &intersection) |
|
double | osmscout::DistanceToSegment (double px, double py, double p1x, double p1y, double p2x, double p2y, double &r, double &qx, double &qy) |
| return the minimum distance from the point p to the line segment [p1,p2] this could be the distance from p to p1 or to p2 if q the orthogonal projection of p on the line supporting the segment is outside [p1,p2] r is the abscissa of q on the line, 0 <= r <= 1 if q is between p1 and p2. More...
|
|
double | osmscout::GetDistanceInLonDegrees (const Distance &d, double latitude=0) |
|
Distance | osmscout::GetEllipsoidalDistance (const GeoCoord &a, const GeoCoord &b) |
|
GeoCoord | osmscout::GetEllipsoidalDistance (const GeoCoord &position, const Bearing &bearing, const Distance &distance) |
|
Distance | osmscout::GetEllipsoidalDistance (double aLon, double aLat, double bLon, double bLat) |
| Calculating Vincenty's inverse for getting the ellipsoidal distance of two points on earth. More...
|
|
void | osmscout::GetEllipsoidalDistance (double lat1, double lon1, const Bearing &bearing, const Distance &distance, double &lat2, double &lon2) |
|
Bearing | osmscout::GetSphericalBearingFinal (const GeoCoord &a, const GeoCoord &b) |
| Taken the path from A to B over a sphere return the bearing at the destination point B. More...
|
|
Bearing | osmscout::GetSphericalBearingInitial (const GeoCoord &a, const GeoCoord &b) |
|
Distance | osmscout::GetSphericalDistance (const GeoCoord &a, const GeoCoord &b) |
| Calculating basic cost for the A* algorithm based on the spherical distance of two points on earth. More...
|
|
double | osmscout::NormalizeRelativeAngle (double angle) |
|
size_t | osmscout::Pow (size_t a, size_t b) |
|
void | osmscout::ScanConvertLine (int x1, int y1, int x2, int y2, std::vector< ScanCell > &cells) |
| This functions does a scan conversion of a line with the given start and end points. More...
|
|