Ignore:
Timestamp:
Aug 8, 2016, 5:11:40 PM (8 years ago)
Author:
stuerze
Message:

some informations about the data source of RINEX navigation files is added into the RINEX header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/rinex/reqcedit.cpp

    r7993 r8000  
    533533    return;
    534534  }
    535 
     535 
     536  // Concatenate all comments
     537  // ------------------------
     538  QStringList comments;
     539  bncSettings settings;
     540  QString comment = settings.value("reqcComment").toString();
     541  if (!comment.isEmpty()) {
     542    comments.append(comment);
     543  }
     544  QStringListIterator it(_navFileNames);
     545  while (it.hasNext()) {
     546    QString fileName = it.next();
     547    t_rnxNavFile rnxNavFile(fileName, t_rnxNavFile::input);
     548    QStringListIterator itCmnt(rnxNavFile.comments());
     549    while (itCmnt.hasNext()) {
     550      comments.append(itCmnt.next());
     551    }
     552  }
     553  comments.removeDuplicates();
     554 
    536555  // Read Ephemerides
    537556  // ----------------
     
    565584  }
    566585
    567   bncSettings settings;
    568586  QMap<QString, QString> txtMap;
    569587  QString runBy = settings.value("reqcRunBy").toString();
     
    571589    txtMap["RUN BY"]  = runBy;
    572590  }
    573   QString comment = settings.value("reqcComment").toString();
    574   if (!comment.isEmpty()) {
    575     txtMap["COMMENT"]  = comment;
     591  if (!comments.isEmpty()) {
     592    txtMap["COMMENT"]  = comments.join("\\n");
    576593  }
    577594
Note: See TracChangeset for help on using the changeset viewer.