1 /* 2 Gpredict: Real-time satellite tracking and orbit prediction program 3 4 Copyright (C) 2001-2013 Alexandru Csete, OZ9AEC. 5 6 Authors: Alexandru Csete <oz9aec@gmail.com> 7 Charles Suprin <hamaa1vs@gmail.com> 8 9 Comments, questions and bugreports should be submitted via 10 http://sourceforge.net/projects/gpredict/ 11 More details can be found at the project home page: 12 13 http://gpredict.oz9aec.net/ 14 15 This program is free software; you can redistribute it and/or modify 16 it under the terms of the GNU General Public License as published by 17 the Free Software Foundation; either version 2 of the License, or 18 (at your option) any later version. 19 20 This program is distributed in the hope that it will be useful, 21 but WITHOUT ANY WARRANTY; without even the implied warranty of 22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 GNU General Public License for more details. 24 25 You should have received a copy of the GNU General Public License 26 along with this program; if not, visit http://www.fsf.org/ 27 */ 28 29 /** Column definitions for QTH list. */ 30 typedef enum { 31 QTH_LIST_COL_NAME = 0, /*!< Name of the QTH. */ 32 QTH_LIST_COL_LOC, /*!< Location, eg. "Copenhagen, Denmark". */ 33 QTH_LIST_COL_DESC, /*!< Optional description. */ 34 QTH_LIST_COL_LAT, /*!< Latitude in dec. deg. North. */ 35 QTH_LIST_COL_LON, /*!< Longitude in dec. deg. East. */ 36 QTH_LIST_COL_ALT, /*!< Altitude in meters. */ 37 QTH_LIST_COL_QRA, /*!< QRA locator. */ 38 QTH_LIST_COL_WX, /*!< 4 letter weather station. */ 39 QTH_LIST_COL_DEF, /*!< Is this QTH the default one? */ 40 QTH_LIST_COL_TYPE, /*!< Is this QTH the default one? */ 41 QTH_LIST_COL_GPSD_SERVER, /*!< Is this QTH the default one? */ 42 QTH_LIST_COL_GPSD_PORT, /*!< Is this QTH the default one? */ 43 QTH_LIST_COL_NUM /*!< The number of fields. */ 44 } qth_list_col_t; 45