]> git.street.me.uk Git - andy/viking.git/blame - src/viktrack.h
gpx_write_trackpoint():
[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>
21700912 27#include <gtk/gtk.h>
a25c4c50
GB
28
29#include "vikcoord.h"
30
50a14534
EB
31/* todo important: put these in their own header file, maybe.probably also rename */
32
33#define VIK_TRACK(x) ((VikTrack *)(x))
34#define VIK_TRACKPOINT(x) ((VikTrackpoint *)(x))
35
36typedef struct _VikTrackpoint VikTrackpoint;
37struct _VikTrackpoint {
38 VikCoord coord;
39 gboolean newsegment;
40 gboolean has_timestamp;
41 time_t timestamp;
a2817d3c
QT
42 gdouble altitude; /* only in 3D fixes */
43 /* Most GPSs provide this in realtime mode (NMEA) but not in data mode */
44 gboolean extended;
45 gdouble speed; /* only in 3D fixes */
46 gdouble course;
47 guint nsats; /* number of satellites used */
48#define VIK_GPS_MODE_NOT_SEEN 0 /* mode update not seen yet */
49#define VIK_GPS_MODE_NO_FIX 1 /* none */
50#define VIK_GPS_MODE_2D 2 /* good for latitude/longitude */
51#define VIK_GPS_MODE_3D 3 /* good for altitude/climb too */
52 gint fix_mode;
4a42b254
T
53 gdouble hdop;
54 gdouble vdop;
55 gdouble pdop;
50a14534
EB
56};
57
58typedef struct _VikTrack VikTrack;
59struct _VikTrack {
60 GList *trackpoints;
61 gboolean visible;
62 gchar *comment;
63 guint8 ref_count;
21700912 64 GtkWidget *property_dialog;
50a14534
EB
65};
66
67VikTrack *vik_track_new();
68void vik_track_set_comment(VikTrack *wp, const gchar *comment);
69void vik_track_ref(VikTrack *tr);
70void vik_track_free(VikTrack *tr);
71VikTrack *vik_track_copy ( const VikTrack *tr );
72void vik_track_set_comment_no_copy(VikTrack *tr, gchar *comment);
73VikTrackpoint *vik_trackpoint_new();
74void vik_trackpoint_free(VikTrackpoint *tp);
75VikTrackpoint *vik_trackpoint_copy(VikTrackpoint *tp);
76gdouble vik_track_get_length(const VikTrack *tr);
77gdouble vik_track_get_length_including_gaps(const VikTrack *tr);
78gulong vik_track_get_tp_count(const VikTrack *tr);
79guint vik_track_get_segment_count(const VikTrack *tr);
80VikTrack **vik_track_split_into_segments(VikTrack *tr, guint *ret_len);
81void vik_track_reverse(VikTrack *tr);
82
83gulong vik_track_get_dup_point_count ( const VikTrack *vt );
84void vik_track_remove_dup_points ( VikTrack *vt );
85
86gdouble vik_track_get_max_speed(const VikTrack *tr);
87gdouble vik_track_get_average_speed(const VikTrack *tr);
88
89void vik_track_convert ( VikTrack *tr, VikCoordMode dest_mode );
90gdouble *vik_track_make_elevation_map ( const VikTrack *tr, guint16 num_chunks );
91void vik_track_get_total_elevation_gain(const VikTrack *tr, gdouble *up, gdouble *down);
ddc2372e
QT
92VikTrackpoint *vik_track_get_closest_tp_by_percentage_dist ( VikTrack *tr, gdouble reldist, gdouble *meters_from_start );
93VikTrackpoint *vik_track_get_closest_tp_by_percentage_time ( VikTrack *tr, gdouble reldist, time_t *seconds_from_start );
25e44eac 94gdouble *vik_track_make_speed_map ( const VikTrack *tr, guint16 num_chunks );
b42a25ba 95gboolean vik_track_get_minmax_alt ( const VikTrack *tr, gdouble *min_alt, gdouble *max_alt );
ddc47a46
AF
96void vik_track_marshall ( VikTrack *tr, guint8 **data, guint *len);
97VikTrack *vik_track_unmarshall (guint8 *data, guint datalen);
24d5c7e2 98
55906514 99void vik_track_apply_dem_data ( VikTrack *tr);
bddd2056
EB
100
101/* appends t2 to t1, leaving t2 with no trackpoints */
102void vik_track_steal_and_append_trackpoints ( VikTrack *t1, VikTrack *t2 );
ad0a8c2d 103
c3deba01
EB
104/* starting at the end, looks backwards for the last "double point", a duplicate trackpoint.
105 * this is indicative of magic scissors continued use. If there is no double point,
106 * deletes all the trackpoints. returns new end of the track (or the start if
107 * there are no double points)
108 */
109VikCoord *vik_track_cut_back_to_double_point ( VikTrack *tr );
110
21700912
QT
111void vik_track_set_property_dialog(VikTrack *tr, GtkWidget *dialog);
112void vik_track_clear_property_dialog(VikTrack *tr);
ad0a8c2d 113
50a14534 114#endif