]> git.street.me.uk Git - andy/viking.git/blame - src/viktrack.h
Download&import SRTM 90m data (more work needed)
[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
a25c4c50
GB
25#include <time.h>
26#include <glib.h>
27
28#include "vikcoord.h"
29
50a14534
EB
30/* todo important: put these in their own header file, maybe.probably also rename */
31
32#define VIK_TRACK(x) ((VikTrack *)(x))
33#define VIK_TRACKPOINT(x) ((VikTrackpoint *)(x))
34
35typedef struct _VikTrackpoint VikTrackpoint;
36struct _VikTrackpoint {
37 VikCoord coord;
38 gboolean newsegment;
39 gboolean has_timestamp;
40 time_t timestamp;
41 gdouble altitude;
42};
43
44typedef struct _VikTrack VikTrack;
45struct _VikTrack {
46 GList *trackpoints;
47 gboolean visible;
48 gchar *comment;
49 guint8 ref_count;
50};
51
52VikTrack *vik_track_new();
53void vik_track_set_comment(VikTrack *wp, const gchar *comment);
54void vik_track_ref(VikTrack *tr);
55void vik_track_free(VikTrack *tr);
56VikTrack *vik_track_copy ( const VikTrack *tr );
57void vik_track_set_comment_no_copy(VikTrack *tr, gchar *comment);
58VikTrackpoint *vik_trackpoint_new();
59void vik_trackpoint_free(VikTrackpoint *tp);
60VikTrackpoint *vik_trackpoint_copy(VikTrackpoint *tp);
61gdouble vik_track_get_length(const VikTrack *tr);
62gdouble vik_track_get_length_including_gaps(const VikTrack *tr);
63gulong vik_track_get_tp_count(const VikTrack *tr);
64guint vik_track_get_segment_count(const VikTrack *tr);
65VikTrack **vik_track_split_into_segments(VikTrack *tr, guint *ret_len);
66void vik_track_reverse(VikTrack *tr);
67
68gulong vik_track_get_dup_point_count ( const VikTrack *vt );
69void vik_track_remove_dup_points ( VikTrack *vt );
70
71gdouble vik_track_get_max_speed(const VikTrack *tr);
72gdouble vik_track_get_average_speed(const VikTrack *tr);
73
74void vik_track_convert ( VikTrack *tr, VikCoordMode dest_mode );
75gdouble *vik_track_make_elevation_map ( const VikTrack *tr, guint16 num_chunks );
76void vik_track_get_total_elevation_gain(const VikTrack *tr, gdouble *up, gdouble *down);
e1e2f2c6 77VikTrackpoint *vik_track_get_closest_tp_by_percentage_dist ( VikTrack *tr, gdouble reldist );
25e44eac 78gdouble *vik_track_make_speed_map ( const VikTrack *tr, guint16 num_chunks );
b42a25ba 79gboolean vik_track_get_minmax_alt ( const VikTrack *tr, gdouble *min_alt, gdouble *max_alt );
ddc47a46
AF
80void vik_track_marshall ( VikTrack *tr, guint8 **data, guint *len);
81VikTrack *vik_track_unmarshall (guint8 *data, guint datalen);
24d5c7e2 82
55906514 83void vik_track_apply_dem_data ( VikTrack *tr);
0c1044e9 84void vik_track_fill_in_points ( VikTrack *tr, gdouble min_diff_meters );
ad0a8c2d
EB
85
86
50a14534 87#endif