]> git.street.me.uk Git - andy/viking.git/blame - src/viktrack.h
Initial revision
[andy/viking.git] / src / viktrack.h
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#ifndef _VIKING_TRACK_H
23#define _VIKING_TRACK_H
24
25/* todo important: put these in their own header file, maybe.probably also rename */
26
27#define VIK_TRACK(x) ((VikTrack *)(x))
28#define VIK_TRACKPOINT(x) ((VikTrackpoint *)(x))
29
30typedef struct _VikTrackpoint VikTrackpoint;
31struct _VikTrackpoint {
32 VikCoord coord;
33 gboolean newsegment;
34 gboolean has_timestamp;
35 time_t timestamp;
36 gdouble altitude;
37};
38
39typedef struct _VikTrack VikTrack;
40struct _VikTrack {
41 GList *trackpoints;
42 gboolean visible;
43 gchar *comment;
44 guint8 ref_count;
45};
46
47VikTrack *vik_track_new();
48void vik_track_set_comment(VikTrack *wp, const gchar *comment);
49void vik_track_ref(VikTrack *tr);
50void vik_track_free(VikTrack *tr);
51VikTrack *vik_track_copy ( const VikTrack *tr );
52void vik_track_set_comment_no_copy(VikTrack *tr, gchar *comment);
53VikTrackpoint *vik_trackpoint_new();
54void vik_trackpoint_free(VikTrackpoint *tp);
55VikTrackpoint *vik_trackpoint_copy(VikTrackpoint *tp);
56gdouble vik_track_get_length(const VikTrack *tr);
57gdouble vik_track_get_length_including_gaps(const VikTrack *tr);
58gulong vik_track_get_tp_count(const VikTrack *tr);
59guint vik_track_get_segment_count(const VikTrack *tr);
60VikTrack **vik_track_split_into_segments(VikTrack *tr, guint *ret_len);
61void vik_track_reverse(VikTrack *tr);
62
63gulong vik_track_get_dup_point_count ( const VikTrack *vt );
64void vik_track_remove_dup_points ( VikTrack *vt );
65
66gdouble vik_track_get_max_speed(const VikTrack *tr);
67gdouble vik_track_get_average_speed(const VikTrack *tr);
68
69void vik_track_convert ( VikTrack *tr, VikCoordMode dest_mode );
70gdouble *vik_track_make_elevation_map ( const VikTrack *tr, guint16 num_chunks );
71void vik_track_get_total_elevation_gain(const VikTrack *tr, gdouble *up, gdouble *down);
72
73#endif