1 /* gpsstructure.h 2 * Written by Daniel Foote. 3 * Started Feb 2005. 4 * 5 * This file contains the structure that stores 6 * GPS data points. Placed here so that several things 7 * could share it. 8 */ 9 10 /* Copyright 2005 Daniel Foote. 11 * 12 * This file is part of gpscorrelate. 13 * 14 * gpscorrelate is free software; you can redistribute it and/or modify 15 * it under the terms of the GNU General Public License as published by 16 * the Free Software Foundation; either version 2 of the License, or 17 * (at your option) any later version. 18 * 19 * gpscorrelate is distributed in the hope that it will be useful, 20 * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 * GNU General Public License for more details. 23 * 24 * You should have received a copy of the GNU General Public License 25 * along with gpscorrelate; if not, write to the Free Software 26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 27 */ 28 29 /* This data structure describes a single point. */ 30 31 struct GPSPoint { 32 double Lat; 33 double Long; 34 double Elev; 35 time_t Time; 36 int EndOfSegment; 37 struct GPSPoint* Next; 38 }; 39