|
double | osmscout::AngleDiff (double a, double b) |
|
template<typename N > |
bool | osmscout::AreaIsCCW (const std::vector< N > &edges) |
|
template<typename N > |
bool | osmscout::AreaIsClockwise (const std::vector< N > &edges) |
|
template<typename N > |
bool | osmscout::AreaIsSimple (const std::vector< std::pair< N, N > > &edges, const std::vector< bool > &edgeStartsNewPoly) |
|
template<typename N > |
bool | osmscout::AreaIsSimple (std::vector< N > points) |
|
template<typename N > |
bool | osmscout::AreaIsValid (std::vector< N > &outerPoints, std::vector< std::vector< N > > &innerPoints) |
|
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...
|
|
template<typename N > |
double | osmscout::CalculateDistancePointToLineSegment (const N &p, const N &a, const N &b) |
| Calculates the distance between a point p and a line defined by the points a and b. More...
|
|
template<typename N > |
void | osmscout::ComputeSegmentBoxes (const std::vector< N > &path, std::vector< SegmentGeoBox > &segmentBoxes, size_t bound, size_t segmentSize=1000) |
| Helper for FindPathIntersections. More...
|
|
double | osmscout::DegToRad (double deg) |
|
double | osmscout::Det (double x1, double y1, double x2, double y2) |
|
template<typename N > |
double | osmscout::DistanceSquare (const N &a, const N &b) |
|
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...
|
|
template<typename N > |
bool | osmscout::FindIntersection (const std::vector< N > &way, size_t &i, size_t &j) |
|
template<typename N > |
void | osmscout::FindPathIntersections (const std::vector< N > &aPath, const std::vector< N > &bPath, bool aClosed, bool bClosed, std::vector< PathIntersection > &intersections, size_t aStartIndex=0, size_t bStartIndex=0) |
|
template<class InputIt > |
void | osmscout::GetBoundingBox (const InputIt first, const InputIt last, GeoBox &boundingBox) |
|
template<typename N > |
GeoBox | osmscout::GetBoundingBox (const std::vector< N > &nodes) |
|
template<typename N > |
void | osmscout::GetBoundingBox (const std::vector< N > &nodes, GeoBox &boundingBox) |
|
GeoBox | osmscout::GetBoundingBox (const std::vector< Point > &nodes) |
|
void | osmscout::GetBoundingBox (const std::vector< Point > &nodes, GeoBox &boundingBox) |
|
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) |
|
template<typename N , typename I > |
bool | osmscout::GetLineIntersection (const N &a1, const N &a2, const N &b1, const N &b2, I &intersection) |
|
template<typename N > |
bool | osmscout::GetLineIntersectionPixel (const N &a1, const N &a2, const N &b1, const N &b2, N &intersection) |
|
template<typename N , typename M > |
int | osmscout::GetRelationOfPointToArea (const N &point, const std::vector< M > &nodes) |
|
template<typename N > |
void | osmscout::GetSegmentBoundingBox (const std::vector< N > &path, size_t from, size_t to, GeoBox &boundingBox) |
| Helper for FindPathIntersections. More...
|
|
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...
|
|
template<typename N , typename M > |
bool | osmscout::IsAreaAtLeastPartlyInArea (const std::vector< N > &a, const std::vector< M > &b) |
|
template<typename N , typename M > |
bool | osmscout::IsAreaAtLeastPartlyInArea (const std::vector< N > &a, const std::vector< M > &b, const GeoBox &aBox, const GeoBox &bBox) |
|
template<typename N , typename M > |
bool | osmscout::IsAreaCompletelyInArea (const std::vector< N > &a, const std::vector< M > &b) |
|
template<typename N , typename M > |
bool | osmscout::IsAreaSubOfArea (const std::vector< N > &a, const std::vector< M > &b) |
|
template<typename N , typename M > |
bool | osmscout::IsAreaSubOfAreaOrSame (const std::vector< N > &a, const std::vector< M > &b) |
|
template<typename N , typename M > |
bool | osmscout::IsAreaSubOfAreaQuorum (const std::vector< N > &a, const std::vector< M > &b) |
|
template<typename N , typename M > |
bool | osmscout::IsCoordInArea (const N &point, const std::vector< M > &nodes) |
|
template<typename N > |
bool | osmscout::LinesIntersect (const N &a1, const N &a2, const N &b1, const N &b2) |
|
void | osmscout::Normalize (double x, double y, double &nx, double &ny) |
|
double | osmscout::NormalizeRelativeAngle (double angle) |
|
size_t | osmscout::Pow (size_t a, size_t b) |
|
double | osmscout::RadToDeg (double rad) |
|
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...
|
|