Changeset 1030 in ntrip for trunk/BNC/RTCM3


Ignore:
Timestamp:
Aug 10, 2008, 1:58:23 AM (16 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC/RTCM3
Files:
3 edited

Legend:

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

    r1022 r1030  
    124124   
    125125        while(int rr = RTCM3Parser(&_Parser)) {
     126
     127        // RTCM message types
     128        // ------------------
     129          for (int kk = 0; kk < _Parser.typeSize; kk++) {
     130            _typeList.push_back(_Parser.typeList[kk]);
     131          }
     132          _Parser.typeSize = 0;
    126133   
    127134          // GNSS Observations
  • trunk/BNC/RTCM3/rtcm3torinex.c

    r1006 r1030  
    11/*
    22  Converter for RTCM3 data to RINEX.
    3   $Id: rtcm3torinex.c,v 1.29 2008/07/22 15:15:51 stoecker Exp $
     3  $Id: rtcm3torinex.c,v 1.12 2008/08/01 14:03:28 mervart Exp $
    44  Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu>
    55
     
    5151
    5252/* CVS revision and version */
    53 static char revisionstr[] = "$Revision: 1.29 $";
     53static char revisionstr[] = "$Revision: 1.12 $";
    5454
    5555#ifndef COMPILEDATE
     
    283283
    284284    GETBITS(type,12)
     285    handle->typeList[handle->typeSize] = type;           /* RTCM message types */
     286    if(handle->typeSize < 100) {handle->typeSize += 1;}  /* RTCM message types */
    285287    switch(type)
    286288    {
     
    15321534
    15331535#ifndef NO_RTCM3_MAIN
    1534 static char datestr[]     = "$Date: 2008/07/22 15:15:51 $";
     1536static char datestr[]     = "$Date: 2008/08/01 14:03:28 $";
    15351537
    15361538/* The string, which is send as agent in HTTP request */
  • trunk/BNC/RTCM3/rtcm3torinex.h

    r661 r1030  
    44/*
    55  Converter for RTCM3 data to RINEX.
    6   $Id: rtcm3torinex.h,v 1.9 2007/10/17 06:12:00 mervart Exp $
     6  $Id: rtcm3torinex.h,v 1.10 2008/01/29 14:53:15 mervart Exp $
    77  Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@alberding.eu>
    88
     
    196196  int    lastlockl1[64];
    197197  int    lastlockl2[64];
     198  int    typeSize;       /* RTCM message types */
     199  int    typeList[101];  /* RTCM message types */
    198200  int    datapos[RINEXENTRY_NUMBER];
    199201  int    dataflag[RINEXENTRY_NUMBER];
Note: See TracChangeset for help on using the changeset viewer.