mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
31 lines
702 B
C++
31 lines
702 B
C++
#pragma once
|
|
|
|
#include "platform/location.hpp"
|
|
|
|
#include "kml/types.hpp"
|
|
|
|
struct TrackStatistics
|
|
{
|
|
using Points = kml::MultiGeometry::LineT;
|
|
using Timestamps = kml::MultiGeometry::TimeT;
|
|
|
|
TrackStatistics();
|
|
explicit TrackStatistics(kml::MultiGeometry const & geometry);
|
|
|
|
double m_length;
|
|
double m_duration;
|
|
double m_ascent;
|
|
double m_descent;
|
|
geometry::Altitude m_minElevation;
|
|
geometry::Altitude m_maxElevation;
|
|
|
|
void AddGpsInfoPoint(location::GpsInfo const & point);
|
|
private:
|
|
void AddPoints(Points const & points);
|
|
void AddTimestamps(Timestamps const & timestamps);
|
|
bool HasNoPoints() const;
|
|
|
|
geometry::PointWithAltitude m_previousPoint;
|
|
double m_previousTimestamp;
|
|
};
|