Changeset 1037 in ntrip


Ignore:
Timestamp:
Aug 15, 2008, 7:00:03 PM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/rtcm3torinex.c

    r1032 r1037  
    11/*
    22  Converter for RTCM3 data to RINEX.
    3   $Id: rtcm3torinex.c,v 1.13 2008/08/09 23:58:09 weber Exp $
     3  $Id: rtcm3torinex.c,v 1.14 2008/08/11 14:01:54 weber 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.13 $";
     53static char revisionstr[] = "$Revision: 1.14 $";
    5454
    5555#ifndef COMPILEDATE
     
    438438        GETBITS(syncf,1) /* sync */
    439439        GETBITS(i,5)
    440         gnss->numsats = i;
     440    //  gnss->numsats = i;
     441        gnss->numsats += i;                                    // If GLONASS observations come first, Weber
    441442        SKIPBITS(4) /* smind, smint */
    442443
    443         for(num = 0; num < gnss->numsats; ++num)
     444    //  for(num = 0; num < gnss->numsats; ++num)
     445        for(num = gnss->numsats-i; num < gnss->numsats; ++num) // If GLONASS observations come first, Weber
    444446        {
    445447          int sv, code, l1range, c,l,s,ce,le,se,amb=0;
     
    16261628
    16271629#ifndef NO_RTCM3_MAIN
    1628 static char datestr[]     = "$Date: 2008/08/09 23:58:09 $";
     1630static char datestr[]     = "$Date: 2008/08/11 14:01:54 $";
    16291631
    16301632/* The string, which is send as agent in HTTP request */
Note: See TracChangeset for help on using the changeset viewer.