// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2008-2009 Torsten Rahn // Copyright 2009 Patrick Spendrin // #ifndef GEODATALINESTRING_H #define GEODATALINESTRING_H #include #include #include "global.h" #include "geodata_export.h" #include "GeoDataGeometry.h" #include "GeoDataCoordinates.h" #include "GeoDataLatLonAltBox.h" namespace Marble { class GeoDataLineStringPrivate; /*! \class GeoDataLineString \brief A LineString that allows to store a contiguous set of line segments. GeoDataLineString is a tool class that implements the LineString tag/class of the Open Geospatial Consortium standard KML 2.2. GeoDataLineString extends GeoDataGeometry to store and edit LineStrings. In the QPainter API "pure" LineStrings are also referred to as "polylines". As such they are similar to the outline of a non-closed QPolygon. Whenever a LineString is painted GeoDataLineStyle should be used to assign a color and line width. A GeoDataLineString consists of several (geodetic) nodes which are each connected through line segments. The nodes are stored as GeoDataCoordinates objects. The API which provides access to the nodes is similar to the API of QVector. GeoDataLineString allows LineStrings to be tessellated in order to make them follow the terrain and the curvature of the earth. The tessellation options allow for different ways of visualization: \li Not tessellated: A LineString that connects each two nodes directly and straight in screen coordinate space. \li A tessellated line: Each line segment is bent so that the LineString follows the curvature of the earth and its terrain. A tessellated line segment connects two nodes at the shortest possible distance ("along great circles"). \li A tessellated line that follows latitude circles whenever possible: In this case Latitude circles are followed as soon as two subsequent nodes have exactly the same amount of latitude. In all other places the line segments follow great circles. Some convenience methods have been added that allow to calculate the geodesic bounding box or the length of a LineString. */ class GEODATA_EXPORT GeoDataLineString : public GeoDataGeometry { public: typedef QVector::Iterator Iterator; typedef QVector::ConstIterator ConstIterator; typedef QVector::const_iterator const_iterator; /*! \brief Creates a new LineString. */ explicit GeoDataLineString( TessellationFlags f = NoTessellation ); /*! \brief Creates a LineString from an existing geometry object. */ GeoDataLineString( const GeoDataGeometry &other ); /*! \brief Destroys a LineString. */ virtual ~GeoDataLineString(); /// Provides type information for downcasting a GeoNode virtual QString nodeType() const; /*! \brief Returns whether a LineString is a closed polygon. \return false if the LineString is not a LinearRing. */ virtual bool isClosed() const; /*! \brief Returns whether the LineString follows the earth's surface. \return true if the LineString's line segments follow the earth's surface and terrain along great circles. */ bool tessellate() const; /*! \brief Sets the tessellation property for the LineString. If \a tessellate is true then the LineString's line segments are bent and follow the earth's surface and terrain along great circles. If \a tessellate is false then the LineString's line segments are rendered as straight lines in screen coordinate space. */ void setTessellate( bool tessellate ); /*! \brief Returns the tessellation flags for a LineString. */ TessellationFlags tessellationFlags() const; /*! \brief Sets the given tessellation flags for a LineString. */ void setTessellationFlags( TessellationFlags f ); /*! \brief Returns the smallest latLonAltBox that contains the LineString. \see GeoDataLatLonAltBox */ GeoDataLatLonAltBox latLonAltBox() const; /*! \brief Returns the length of the LineString across a sphere. As a parameter the \a planetRadius needs to be passed. \return The return value is the length of the LineString. The unit used for the resulting length matches the unit of the planet radius. This method can be used as an approximation for distances along LineStrings. */ virtual qreal length( qreal planetRadius ) const; /*! \brief Provides a more generic representation of the LineString. The LineString is normalized, pole corrected and dateline corrected. Deprecation Warning: This method will likely be removed from the public API. */ virtual QVector toRangeCorrected() const; /*! \brief The line string with nodes that have proper longitude/latitude ranges. \return A LineString that resembles the original linestring with nodes that have longitude values between -180 and +180 deg and that feature latitude values between -90 and +90 deg. Deprecation Warning: This method will likely be removed from the public API. */ virtual GeoDataLineString toNormalized() const; /*! \brief The line string with more generic pole values. \return A LineString that resembles the original linestring. Nodes that represent one of the poles are duplicated to allow for a better visualization of flat projections. Deprecation Warning: This method will likely be removed from the public API. */ virtual GeoDataLineString toPoleCorrected() const; /*! \brief The line string corrected for date line crossing. \return A set of LineStrings that don't cross the dateline and which resemble the original linestring. Deprecation Warning: This method will likely be removed from the public API. */ virtual QVector toDateLineCorrected() const; // "Reimplementation" of QVector API /*! \brief Returns whether the LineString has no nodes at all. \return true if there are no nodes inside the line string. */ bool isEmpty() const; /*! \brief Returns the number of nodes in a LineString. */ int size() const; /*! \brief Returns a reference to the coordinates of a node at a given position. This method detaches the returned coordinate object from the line string. */ GeoDataCoordinates& at( int pos ); /*! \brief Returns a reference to the coordinates of a node at a given position. This method does not detach the returned coordinate object from the line string. */ const GeoDataCoordinates& at( int pos ) const; /*! \brief Returns a reference to the coordinates of a node at a given position. This method detaches the returned coordinate object from the line string. */ GeoDataCoordinates& operator[]( int pos ); /*! \brief Returns a reference to the coordinates of a node at a given position. This method does not detach the returned coordinate object from the line string. */ const GeoDataCoordinates& operator[]( int pos ) const; /*! \brief Returns a reference to the first node in the LineString. This method detaches the returned coordinate object from the line string. */ GeoDataCoordinates& first(); /*! \brief Returns a reference to the first node in the LineString. This method does not detach the returned coordinate object from the line string. */ const GeoDataCoordinates& first() const; /*! \brief Returns a reference to the last node in the LineString. This method detaches the returned coordinate object from the line string. */ GeoDataCoordinates& last(); /*! \brief Returns a reference to the last node in the LineString. This method does not detach the returned coordinate object from the line string. */ const GeoDataCoordinates& last() const; /*! \brief Appends a given geodesic position as a new node to the LineString. */ void append ( const GeoDataCoordinates& position ); /*! \brief Appends a given geodesic position as a new node to the LineString. */ GeoDataLineString& operator << ( const GeoDataCoordinates& position ); /*! \brief Appends a given LineString to the end of the LineString. */ GeoDataLineString& operator << ( const GeoDataLineString& lineString ); /*! \brief Returns an iterator that points to the begin of the LineString. */ QVector::Iterator begin(); /*! \brief Returns an iterator that points to the end of the LineString. */ QVector::Iterator end(); /*! \brief Returns a const iterator that points to the begin of the LineString. */ QVector::ConstIterator constBegin() const; /*! \brief Returns a const iterator that points to the end of the LineString. */ QVector::ConstIterator constEnd() const; /*! \brief Destroys all nodes in a LineString. */ void clear(); /*! \brief Removes the node at the given position and returns it. */ QVector::Iterator erase ( QVector::Iterator position ); /*! \brief Removes the nodes within the given range and returns them. */ QVector::Iterator erase ( QVector::Iterator begin, QVector::Iterator end ); /*! \brief Removes the node at the given position and destroys it. */ void remove ( int i ); // Serialization /*! \brief Serialize the LineString to a stream. \param stream the stream. */ virtual void pack( QDataStream& stream ) const; /*! \brief Unserialize the LineString from a stream. \param stream the stream. */ virtual void unpack( QDataStream& stream ); protected: GeoDataLineStringPrivate *p() const; GeoDataLineString(GeoDataLineStringPrivate* priv); }; } #endif // GEODATALINESTRING_H