#ifndef SphereCalculus_H #define SphereCalculus_H #include #include #include #include #include "QGCGeo.h" // Abstract class providing methods to do calculations on objects located on a sphere (e.g. earth) class SphereCalculus : public QObject { Q_OBJECT public: SphereCalculus(QObject *parent = nullptr); SphereCalculus(const SphereCalculus &other, QObject *parent = nullptr); SphereCalculus &operator=(const SphereCalculus &other); typedef QPair Line; enum JoinPolygonError { NotSimplePolygon1, PolygonJoined, NotSimplePolygon2, Disjoint, PathSizeLow}; enum IntersectionType { NoIntersection, EdgeIntersection, InteriorIntersection, Error}; enum DijkstraError { NoPathFound, PathFound, NotSimplePolygon}; // Property setters void setEpsilonMeter(double epsilon); // Property getters double epsilonMeter() const; // Member Methodes DijkstraError dijkstraPath (const QList &polygon, const QGeoCoordinate& start, const QGeoCoordinate& end, QList& dijkstraPath); signals: public slots: private: double _epsilonMeter; // The accuracy used for distance calculations (unit: m). }; #endif // SphereCalculus_H