Changeset 2236 in ntrip


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

* empty log message *

Location:
trunk/BNS/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/RTCM/rtcm3torinex.c

    r2013 r2236  
    11/*
    22  Converter for RTCM3 data to RINEX.
    3   $Id: rtcm3torinex.c,v 1.27 2009/11/04 16:40:16 zdenek Exp $
     3  $Id: rtcm3torinex.c,v 1.28 2010/01/12 12:13:23 mervart 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.27 $";
     57static char revisionstr[] = "$Revision: 1.28 $";
    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:40:16 $";
     1685static char datestr[]     = "$Date: 2010/01/12 12:13:23 $";
    16951686
    16961687/* The string, which is send as agent in HTTP request */
  • trunk/BNS/RTCM/rtcm3torinex.h

    r2013 r2236  
    44/*
    55  Converter for RTCM3 data to RINEX.
    6   $Id: rtcm3torinex.h,v 1.18 2009/11/04 16:19:40 zdenek Exp $
     6  $Id: rtcm3torinex.h,v 1.19 2010/01/12 12:13:23 mervart 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);
Note: See TracChangeset for help on using the changeset viewer.