Changeset 2235 in ntrip


Ignore:
Timestamp:
Jan 12, 2010, 1:14:30 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/ephemeris.cpp

    r2234 r2235  
    293293  _xv(5) = _y_velocity * 1.e3;
    294294  _xv(6) = _z_velocity * 1.e3;
    295 
    296   cout << _prn << " " << _GPSweek << " " << _GPSweeks << " "
    297        << _tki << " "  << _xv << endl;
    298 
    299 }
     295}
  • trunk/BNC/RTCM3/rtcm3torinex.c

    r1910 r2235  
    11/*
    22  Converter for RTCM3 data to RINEX.
    3   $Id: rtcm3torinex.c,v 1.26 2009/11/04 16:19:40 zdenek Exp $
     3  $Id: rtcm3torinex.c,v 1.27 2009/11/04 16:40:16 zdenek Exp $
    44  Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu>
    55
     
    5555
    5656/* CVS revision and version */
    57 static char revisionstr[] = "$Revision: 1.26 $";
     57static char revisionstr[] = "$Revision: 1.27 $";
    5858
    5959#ifndef COMPILEDATE
     
    837837};
    838838
    839 struct converttimeinfo {
    840   int second;    /* seconds of GPS time [0..59] */
    841   int minute;    /* minutes of GPS time [0..59] */
    842   int hour;      /* hour of GPS time [0..24] */
    843   int day;       /* day of GPS time [1..28..30(31)*/
    844   int month;     /* month of GPS time [1..12]*/
    845   int year;      /* year of GPS time [1980..] */
    846 };
    847 
    848839void converttime(struct converttimeinfo *c, int week, int tow)
    849840{
     
    16921683
    16931684#ifndef NO_RTCM3_MAIN
    1694 static char datestr[]     = "$Date: 2009/11/04 16:19:40 $";
     1685static char datestr[]     = "$Date: 2009/11/04 16:40:16 $";
    16951686
    16961687/* The string, which is send as agent in HTTP request */
  • trunk/BNC/RTCM3/rtcm3torinex.h

    r1909 r2235  
    44/*
    55  Converter for RTCM3 data to RINEX.
    6   $Id: rtcm3torinex.h,v 1.17 2009/05/07 09:27:19 mervart Exp $
     6  $Id: rtcm3torinex.h,v 1.18 2009/11/04 16:19:40 zdenek Exp $
    77  Copyright (C) 2005-2006 by Dirk Stöcker <stoecker@alberding.eu>
    88
     
    9999#define GNSSDF_LOCKLOSSL1     (1<<29)  /* lost lock on L1 */
    100100#define GNSSDF_LOCKLOSSL2     (1<<30)  /* lost lock on L2 */
     101
     102struct converttimeinfo {
     103  int second;    /* seconds of GPS time [0..59] */
     104  int minute;    /* minutes of GPS time [0..59] */
     105  int hour;      /* hour of GPS time [0..24] */
     106  int day;       /* day of GPS time [1..28..30(31)*/
     107  int month;     /* month of GPS time [1..12]*/
     108  int year;      /* year of GPS time [1980..] */
     109};
    101110
    102111struct gnssdata {
     
    234243
    235244int gnumleap(int year, int month, int day);
     245void updatetime(int *week, int *tow, int tk, int fixnumleap);
     246void converttime(struct converttimeinfo *c, int week, int tow);
     247
    236248void HandleHeader(struct RTCM3ParserData *Parser);
    237249int RTCM3Parser(struct RTCM3ParserData *handle);
  • trunk/BNC/bncapp.cpp

    r2105 r2235  
    5252using namespace std;
    5353
    54 struct converttimeinfo {
    55   int second;    /* seconds of GPS time [0..59] */
    56   int minute;    /* minutes of GPS time [0..59] */
    57   int hour;      /* hour of GPS time [0..24] */
    58   int day;       /* day of GPS time [1..28..30(31)*/
    59   int month;     /* month of GPS time [1..12]*/
    60   int year;      /* year of GPS time [1980..] */
    61 };
    62 
    63 extern "C" {
    64   void converttime(struct converttimeinfo *c, int week, int tow);
    65   void updatetime(int *week, int *tow, int tk, int fixnumleap);
    66 }
    67 
    6854// Constructor
    6955////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.