Changeset 4221 in ntrip


Ignore:
Timestamp:
May 29, 2012, 12:16:51 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/reqcedit.cpp

    r4137 r4221  
    302302  t_rnxNavFile outNavFile(_outNavFileName, t_rnxNavFile::output);
    303303  outNavFile.setVersion(_rnxVersion);
    304   outNavFile.writeHeader();
     304  bncSettings settings;
     305  QMap<QString, QString> txtMap;
     306  QString runBy = settings.value("reqcRunBy").toString();
     307  if (!runBy.isEmpty()) {
     308    txtMap["RUN BY"]  = runBy;
     309  }
     310  QString comment = settings.value("reqcComment").toString();
     311  if (!comment.isEmpty()) {
     312    txtMap["COMMENT"]  = comment;
     313  }
     314  outNavFile.writeHeader(&txtMap);
    305315
    306316  // Loop over all ephemerides
Note: See TracChangeset for help on using the changeset viewer.