- Timestamp:
- Nov 8, 2006, 5:03:13 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/rtcm3torinex.h
r131 r282 1 #ifndef RTCM3TORINEX_H 2 #define RTCM3TORINES_H 3 4 /* 5 Converter for RTCM3 data to RINEX. 6 $Id: rtcm3torinex.h,v 1.1 2006/11/02 13:34:00 stoecker Exp $ 7 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@euronik.eu> 8 9 This program is free software; you can redistribute it and/or modify 10 it under the terms of the GNU General Public License as published by 11 the Free Software Foundation; either version 2 of the License, or 12 (at your option) any later version. 13 14 This program is distributed in the hope that it will be useful, 15 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 GNU General Public License for more details. 18 19 You should have received a copy of the GNU General Public License 20 along with this program; if not, write to the Free Software 21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 or read http://www.gnu.org/licenses/gpl.txt 23 */ 24 1 25 #define PRN_GPS_START 1 2 26 #define PRN_GPS_END 32 … … 53 77 #define RINEXENTRY_NUMBER 10 54 78 79 #define LIGHTSPEED 2.99792458e8 /* m/sec */ 80 #define GPS_FREQU_L1 1575420000.0 /* Hz */ 81 #define GPS_FREQU_L2 1227600000.0 /* Hz */ 82 #define GPS_WAVELENGTH_L1 (LIGHTSPEED / GPS_FREQU_L1) /* m */ 83 #define GPS_WAVELENGTH_L2 (LIGHTSPEED / GPS_FREQU_L2) /* m */ 84 55 85 /* unimportant, only for approx. time needed */ 56 86 #define LEAPSECONDS 14 … … 105 135 void converttime(struct converttimeinfo *c, int week, int tow); 106 136 137 #endif /* RTCM3TORINEX_H */ -
trunk/BNC/bncgetthread.h
r280 r282 41 41 ~bncGetThread(); 42 42 43 static QTcpSocket* bncGetThread::request(const QUrl& mountPoint,44 43 static QTcpSocket* request(const QUrl& mountPoint, 44 int timeOut, QString& msg); 45 45 46 46 QByteArray staID() const {return _staID;}
Note:
See TracChangeset
for help on using the changeset viewer.