/usr/include/marble/GeoDataTrack.h is in libmarble-dev 4:17.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | //
// This file is part of the Marble Virtual 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 2011 Guillaume Martres <smarter@ubuntu.com>
//
#ifndef MARBLE_GEODATATRACK_H
#define MARBLE_GEODATATRACK_H
#include "GeoDataGeometry.h"
#include <QList>
class QDateTime;
namespace Marble {
class GeoDataTrackPrivate;
class GeoDataExtendedData;
class GeoDataLineString;
class GeoDataCoordinates;
/**
* @class GeoDataTrack
* @brief A geometry for tracking objects made of (time, coordinates) pairs
*
* GeoDataTrack implements the Track tag defined in Google's extension of the
* Open Geospatial Consortium standard KML 2.2 at
* http://code.google.com/apis/kml/documentation/kmlreference.html#gxtrack .
*
* A track is made of points, each point has a coordinates and a time value
* associated with the coordinates. New points can be added using the addPoint()
* method. The coordinates of the tracked object at a particular time can be
* found using coordinatesAt(), you can specify if interpolation should be used
* using the setInterpolate() function.
*
* By default, a LineString that passes through every coordinates in the track
* is drawn. You can customize it by changing the GeoDataLineStyle, for example
* if the GeoDataTrack is the geometry of feature, you can disable the line drawing with:
* @code
* feature->style()->lineStyle().setPenStyle( Qt::NoPen );
* @endcode
*
* For convenience, the methods appendCoordinates() and appendWhen() are provided.
* They let you add points by specifying their coordinates and time value separately.
* When N calls to one of these methods are followed by N calls to the other,
* the first coordinates will be matched with the first time value, the second
* coordinates with the second time value, etc. This follows the way "coord"
* and "when" tags inside the Track tag should be parsed.
*/
class GEODATA_EXPORT GeoDataTrack : public GeoDataGeometry
{
public:
GeoDataTrack();
explicit GeoDataTrack( const GeoDataTrack &other );
GeoDataTrack &operator=( const GeoDataTrack &other );
const char *nodeType() const override;
EnumGeometryId geometryId() const override;
GeoDataGeometry *copy() const override;
/**
* Returns the number of points in the track
*/
int size() const;
/**
* @brief: Equality operators.
*/
bool operator==( const GeoDataTrack& other ) const;
bool operator!=( const GeoDataTrack& other ) const;
/**
* Returns true if coordinatesAt() should use interpolation, false otherwise.
* The default is false.
*
* @see setInterpolate, coordinatesAt
*/
bool interpolate() const;
/**
* Set whether coordinatesAt() should use interpolation.
*
* @see interpolate, coordinatesAt
*/
void setInterpolate(bool on);
/**
* Return the time value of the first point in the track, or
* an invalid QDateTime if the track is empty.
*/
QDateTime firstWhen() const;
/**
* Return the time value of the last point in the track, or
* an invalid QDateTime if the track is empty.
*/
QDateTime lastWhen() const;
/**
* Returns the coordinates of all the points in the map, sorted by their
* time value
*/
QVector<GeoDataCoordinates> coordinatesList() const;
/**
* Returns the time value of all the points in the map, in chronological
* order.
* @since 0.26.0
*/
QVector<QDateTime> whenList() const;
/**
* If interpolate() is true, return the coordinates interpolated from the
* time values before and after @p when, otherwise return the coordinates
* of the point with the closest time value less than or equal to @p when.
*
* @see interpolate
*/
GeoDataCoordinates coordinatesAt( const QDateTime &when ) const;
/**
* Return coordinates at specified index. This is useful when the track contains
* coordinates without time information.
*/
GeoDataCoordinates coordinatesAt( int index ) const;
/**
* Add a new point with coordinates @p coord associated with the
* time value @p when
*/
void addPoint( const QDateTime &when, const GeoDataCoordinates &coord );
/**
* Add the coordinates part for a new point. See this class description
* for more information.
* @see appendWhen
*/
void appendCoordinates( const GeoDataCoordinates &coord );
/**
* Add altitude information to the last appended coordinates
*/
void appendAltitude( qreal altitude );
/**
* Add the time value part for a new point. See this class description
* for more information.
* @see appendCoordinates
*/
void appendWhen( const QDateTime &when );
/**
* Remove all the points contained in the track.
*/
void clear();
/**
* Remove all points from the track whose time value is less than @p when.
*/
void removeBefore( const QDateTime &when );
/**
* Remove all points from the track whose time value is greater than @p when.
*/
void removeAfter( const QDateTime &when );
/**
* Return the GeoDataLineString representing the current track
*/
const GeoDataLineString *lineString() const;
/**
* Return the ExtendedData assigned to the feature.
*/
const GeoDataExtendedData& extendedData() const;
GeoDataExtendedData& extendedData();
/**
* Sets the ExtendedData of the feature.
* @param extendedData the new ExtendedData to be used.
*/
void setExtendedData( const GeoDataExtendedData& extendedData );
const GeoDataLatLonAltBox& latLonAltBox() const override;
void pack( QDataStream& stream ) const override;
void unpack( QDataStream& stream ) override;
private:
Q_DECLARE_PRIVATE(GeoDataTrack)
};
}
Q_DECLARE_METATYPE( Marble::GeoDataTrack* )
#endif // MARBLE_GEODATATRACK_H
|