Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge latest changes of "rtklibexplorer/dev" #15

Open
wants to merge 624 commits into
base: demo5_pppar
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jun 17, 2024

  1. Merge pull request tomojitakasu#363 from ourairquality/decode_gal_ina…

    …v-trace
    
    decode_gal_inav: correct trace string
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    413b85f View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#364 from ourairquality/solution-input…

    …sol-avoid-redundant-test
    
    Solution inputsol avoid redundant test
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    e58e250 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#365 from ourairquality/tide_pl-zero-o…

    …n-error
    
    tide_pl: zero the output to dr[] on error
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    4593073 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#366 from ourairquality/download-get-l…

    …ist-unused-stat
    
    download get_list: remove unused stat
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    bc72c3f View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#367 from ourairquality/strtok_r

    strtok: replace with strtok_r which is thread safe
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    b98f9cd View commit details
    Browse the repository at this point in the history
  6. Merge pull request tomojitakasu#368 from ourairquality/openserial-mac…

    …os-unsupported-rates
    
    stream openserial: avoid oob on MacOS for high baud rates
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    4e481ea View commit details
    Browse the repository at this point in the history
  7. Merge pull request tomojitakasu#369 from ourairquality/ntripc-basic-a…

    …uth-len
    
    stream rsp_ntripc: check the basic authentication length
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    907b445 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ac28c25 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    54af3f1 View commit details
    Browse the repository at this point in the history
  10. Merge pull request tomojitakasu#374 from ourairquality/str2str-rtkrcv…

    …-deamon
    
    str2str, rtkrcv: add support to detach from the console
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    644a151 View commit details
    Browse the repository at this point in the history
  11. Merge pull request tomojitakasu#376 from ourairquality/nav-eph-max

    rinex, rtcm, rtksvr: keep the nav eph max consistent with the allocation
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    77321d8 View commit details
    Browse the repository at this point in the history
  12. Merge pull request tomojitakasu#377 from ourairquality/readmembuf-wrap

    readmembuf: wrap around before comparing to the write pointer
    rtklibexplorer authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    c70eae6 View commit details
    Browse the repository at this point in the history
  13. Add a define to revert strtok_r() back to strtok() for Windows builds…

    …. The strtok_r() function is not supported in Windows. The strtok_s() function is supposed to be the equivalent in Windows but gets confused with another C11 function of the same name. Not sure if this is the optimal long term solution or not, but it fixes the issue in the short term.
    rtklibexplorer committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    9baefc2 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. spelling

    ourairquality committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    f9f7dca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea2028e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc2fbcd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c8c6267 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d596caf View commit details
    Browse the repository at this point in the history
  6. rtklib interface const char

    For the rtklib interface functions, declare char pointer arguments as
    'const char ...' when the function does not modify the data. Many were
    already declared.
    
    Some follow on patches are also included for some of the callees for
    consistency, and some of the caller arguments needed type casts.
    ourairquality committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    4375a2a View commit details
    Browse the repository at this point in the history
  7. postpos outrpos: use the same interpretation of the opt sep as elsewhere

    outrpos() was using the option separator string raw, without
    interpreting as elsewhere through opt2sep(), and this made it
    incompatible with decode_refpos()
    
    decode_soltime() can also use opt2sep() rather than repeating the same
    logic.
    ourairquality committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    53cb7af View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. rtknavi_qt mon showEstimates: correct row index

    Was indexing into the rows using the state index but this is not
    equivalent when cBSelectSatellites is set and likely indexes beyond
    the reduced set of rows.
    
    Also remove redundant setting of the row count.
    ourairquality committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    c4c104b View commit details
    Browse the repository at this point in the history
  2. rtknavi_qt mon setSat: correct the column count and headings

    to match the output in showSat().
    ourairquality committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    9bc3033 View commit details
    Browse the repository at this point in the history
  3. rtknavi_qt mon: increase some column widths

    to prevent excessive abbreviation.
    ourairquality committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    9db796a View commit details
    Browse the repository at this point in the history
  4. rtksrv: have stats out streams respect the stats level

    The rtkrcv command was not copying the system output options to both
    of the output stream options, so the second streams always used the
    initialization options.
    
    Move the output of the stats residuals from outsolstat() to
    rtkoutstat(), which allows the residuals to be output for the rtksvr
    output streams when the out-outstat is set to 'residuals'. A new
    argument is added to rtkoutstat() for the output level.
    ourairquality committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    92046a8 View commit details
    Browse the repository at this point in the history
  5. Revert 3rd frequency for BeiDou back from B3 to B2a to be consistent …

    …with majority of low cost L1/L5 receivers
    rtklibexplorer committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    b2aa99f View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Merge pull request tomojitakasu#387 from ourairquality/rtknavi-qt-sho…

    …w-est
    
    rtknavi_qt mon showEstimates: correct row index
    JensReimann authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    3daf67c View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#389 from ourairquality/rtknavi-qt-mon…

    …-col-widths
    
    rtknavi_qt mon: increase some column widths
    JensReimann authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    8e6eb5c View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#388 from ourairquality/rtknavi-qt-mon…

    …-sats
    
    rtknavi_qt mon setSat: correct the column count and headings
    JensReimann authored Jun 21, 2024
    Configuration menu
    Copy the full SHA
    933386b View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Septentrio receiver update

    - implemented new meas3 records
    - fix issues found by ourairquality
    JensReimann committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    12b26b7 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. septentrio rcv: misc guard, redundant code

    and add a few TODO comments on code that needs checking.
    ourairquality committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    2f23eb3 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Qt GUI

    - fix plot colors in rtkplot_qt
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    336f02d View commit details
    Browse the repository at this point in the history
  2. Qt Gui

    - fix timezone in timespan dialog
    - make time interval input a spin box
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    8f554eb View commit details
    Browse the repository at this point in the history
  3. Qt Gui

    - fix input file enable/disable in rtkconv_qt
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    ee20f1b View commit details
    Browse the repository at this point in the history
  4. Qt Gui

    - make base station coordinates input for rtkpost_qt and rtknavi_qt
    localization aware (e.g. decimal separator)
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    22fb5f0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    23f28c5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4ea34d9 View commit details
    Browse the repository at this point in the history
  7. Merge pull request tomojitakasu#393 from ourairquality/septentrio-mis…

    …c-guard-redundant
    
    septentrio rcv: misc guard, redundant code
    JensReimann authored Jun 28, 2024
    Configuration menu
    Copy the full SHA
    743b05a View commit details
    Browse the repository at this point in the history
  8. Septentrio receiver support

    - store observations in a buffer first and only commit them at the end of
    the epoch
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    670690a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0b2bcd7 View commit details
    Browse the repository at this point in the history
  10. Qt Gui compile fix

    - add additional include file
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    c49b33c View commit details
    Browse the repository at this point in the history
  11. Qt GUI Update better call external apps

    - Improve execution of external programs by looking for the correct file
    path more intelligently
    - fix to parameters for running external application
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    ec778df View commit details
    Browse the repository at this point in the history
  12. Qt Gui: Timespan Dialog

    - make Timespan Dialog compile with Qt5
    JensReimann committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    77fa575 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2024

  1. Qt Gui Fix

    - address issue tomojitakasu#392: correctly distinguish between different values of
    observation types
    JensReimann committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    e0d5dde View commit details
    Browse the repository at this point in the history
  2. Qt Gui Fixes

    - correctly disable/enable input for ionosphere files
    - add tooltip to ionosphere file input
    - fix alignment in corresponding dialog window tab
    
    - clean up some code in rtkpost_qt
    JensReimann committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    620b282 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    08ddd20 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#289 from ourairquality/rtkrcv-disable…

    …-cmd-shell
    
    rtkrcv: remove the shell command execution
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    372e9b9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#319 from ourairquality/convrnx-dup-te…

    …st-relax
    
    convrnx: relax the test for duplicate data
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    295cc2e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b30805f View commit details
    Browse the repository at this point in the history
  7. Merge pull request tomojitakasu#380 from ourairquality/rcvraw-decode-…

    …frame-alm-uint32
    
    rcvraw decode_frame_alm: use uint32_t as appropriate
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    50335bb View commit details
    Browse the repository at this point in the history
  8. Merge pull request tomojitakasu#381 from ourairquality/unused-vars-as…

    …signments
    
    remove unused assignments and variables
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    1ff49ff View commit details
    Browse the repository at this point in the history
  9. Merge pull request tomojitakasu#382 from ourairquality/const-static

    binex: correct some 'const static' to 'static const'
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    6a8999d View commit details
    Browse the repository at this point in the history
  10. Merge pull request tomojitakasu#383 from ourairquality/trace-code-omit

    rtkpos: omit some dead code if TRACE not defined
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    bea8cb7 View commit details
    Browse the repository at this point in the history
  11. Merge pull request tomojitakasu#384 from ourairquality/rtksrv-stats-l…

    …evel
    
    rtksrv: have stats out streams respect the stats level
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    5c8d10f View commit details
    Browse the repository at this point in the history
  12. Merge pull request tomojitakasu#385 from ourairquality/const-interface

    rtklib interface const char
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    1d5cf1c View commit details
    Browse the repository at this point in the history
  13. Merge pull request tomojitakasu#386 from ourairquality/postpos-outrpo…

    …s-sep
    
    postpos outrpos: use the same interpretation of the opt sep as elsewhere
    rtklibexplorer authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    a3aa4c5 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2024

  1. Qt Gui Fix

    - make validation of base station position in rtkpost_qt and rtknavi_qt
    options dialog localization aware
    - remove unused reference datum input from same dialog
    JensReimann committed Jun 30, 2024
    Configuration menu
    Copy the full SHA
    00a8386 View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update (rtkpost_qt)

    - improve handling of output directory selection
    - improvement grouping of input widgets in main window
    JensReimann committed Jun 30, 2024
    Configuration menu
    Copy the full SHA
    c5adcf8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc6d679 View commit details
    Browse the repository at this point in the history
  4. Qt Gui: rtnavi_qt/rtkpost_qt options dialog

    - further refine validation of base station coordinates ny correctly
    escape localization aware parts
    JensReimann committed Jun 30, 2024
    Configuration menu
    Copy the full SHA
    4362971 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dbdc1ed View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    47c8279 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4ba4811 View commit details
    Browse the repository at this point in the history
  8. Merge pull request tomojitakasu#415 from ourairquality/ionppp-pos-scale

    ionppp: receiver position is in meters
    rtklibexplorer authored Jun 30, 2024
    Configuration menu
    Copy the full SHA
    f582eb5 View commit details
    Browse the repository at this point in the history
  9. Update for option dialog of rtknavi_qt and rtkpost_qt

    - rework handling of rover / base station position
    - use a custom validator instead of regular expressions
    - implement user feedback for invalid inputs
    - reject changing of input format if input is invalid to prevent losing
    the data
    JensReimann committed Jun 30, 2024
    Configuration menu
    Copy the full SHA
    2bb8a86 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7391e74 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Configuration menu
    Copy the full SHA
    381264c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    821aa8c View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Qt Gui Update

    - give user a hint about potentially missing tools when working with
    compressed rinex files
    JensReimann committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    2c18508 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    90d1059 View commit details
    Browse the repository at this point in the history
  3. Qt Gui

    - Update frequency dialog
    JensReimann committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    525e62c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f1a7d2f View commit details
    Browse the repository at this point in the history
  5. Update for option dialog of rtknavi_qt and rtkpost_qt

    - rework handling of rover / base station position
    - use a custom validator instead of regular expressions
    - implement user feedback for invalid inputs
    - reject changing of input format if input is invalid to prevent losing
    the data
    JensReimann authored and rtklibexplorer committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    719a59e View commit details
    Browse the repository at this point in the history
  6. Qt Gui Update

    - give user a hint about potentially missing tools when working with
    compressed rinex files
    JensReimann authored and rtklibexplorer committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    0c4941b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    516cc98 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5c696f1 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. Configuration menu
    Copy the full SHA
    94594e1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b25ff0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    72e382c View commit details
    Browse the repository at this point in the history
  4. Fix matrix order

    AndreHauschild committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    9a631a8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    53784dc View commit details
    Browse the repository at this point in the history
  6. Merge pull request tomojitakasu#419 from rtklibexplorer/demo5

    Merge latest changes from 'demo5' into 'dev'
    AndreHauschild authored Jul 4, 2024
    Configuration menu
    Copy the full SHA
    cf57946 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f55d8ff View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. Qt Gui strsvr_qt update

    - fix log button for input stream
    - fix storage location for paths from file dialog
    - fix timetag enable checkbox for file dialog
    - fix setting dialog options (TcpOptDialog, FileOptDialog,...)
    - make log dialog output fill whole table widget
    JensReimann committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    3675e8b View commit details
    Browse the repository at this point in the history
  2. Septentrio receiver update

    - add more message types
    - support MeasEpochExtra message which containts code and carrier
    variance data and high-resolution CN0 information
    - add option to select whether meas2 or meas3 data blocks shall be used
    - fix selection of input antenna
    - support more GPS and BDS CNAV blocks
    - suppport reading external event blocks
    - add code to read NavIC LNav messages (not tested)
    - rework QZSS message block readers (not tested)
    - coding style updates
    JensReimann committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    d79439f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9f3e486 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2024

  1. Qt Gui Update: CmdOptDialog

    - always save commands in Windows-style EOL format
    - enable/disable input widgets depending on their content
    - trim white spaces from input
    - make syntax of periodic commands more clear
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    9bc864a View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: FileOptDialog

    - fix encoding of start time into path string
    - fix enabling/disabling of widgets
    - move key button
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    5bb10b6 View commit details
    Browse the repository at this point in the history
  3. Qt Gui Update: KeyDialog

    - add %t label
    - correctly name "day of _GPS_ week"
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    a8e53ce View commit details
    Browse the repository at this point in the history
  4. Qt Gui Update: TcpOptDialog

    - fix Browse... button
    - remove mountpoint string for NTRIP in all cases
    - fix options enum
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    86ebcbc View commit details
    Browse the repository at this point in the history
  5. Qt Gui Update: StrSvr_Qt

    Monitor dialog:
    - fix monitoring of raw data
    - correctly clean message buffer when switching display type
    - disable scrollbar in case "down" button is pressed
    - disable grid and vertical header in message buffer display
    - fixes to coding style
    
    Convert Dialog:
    - improve labeling of RTCM message types in convert dialog
    
    Options Dialog:
    - add missing tooltips
    - fix tab order
    
    Main:
    - remove unused FTP option dialog from project
    - fix displaying tray icon
    - use options enum from TcpOptDialog
    - used Qt to convert bytes & bps numbers to string
    - avoid coloring tooltips of data streams
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    e848865 View commit details
    Browse the repository at this point in the history
  6. Qt Gui Update: MountPointDialog

    - only show Cancle button in read/write mode
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    c6410d7 View commit details
    Browse the repository at this point in the history
  7. Qt Gui Update: MapView

    - redesign MapViewOptions dialog
    - guard from reading out of bounds
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    941da81 View commit details
    Browse the repository at this point in the history
  8. Qt Gui Update: StationOptionDialog

    - avoid showing line breaks
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    ee465f6 View commit details
    Browse the repository at this point in the history
  9. Qt Gui Update:

    - remove duplicated keyboard shortcuts in rtkplot_qt mand strsvr_qt main
    window
    JensReimann committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    065667b View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Qt Gui Update: RtkLaunch_qt

    - redesign main window e.g., having bigger icons
    - fix saving options on exit
    JensReimann committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    cc777be View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: SrcTblBrowser

    - fix options for MountPointDialog
    JensReimann committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    98927c0 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Qt Gui Update

    - redesign of frequency dialog
    - redesign of rtkconv_qt code mask dialog
    - fix to glonass FCN dialog to avoid an empty rinex path passed to rtklib
    which would result in an infinite loop
    JensReimann committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    8f5685f View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: rtkconv_qt

    - fix stepping of main window "unit" input widget
    - make frequenc dialog non-modal
    - make code options dialog modal
    - a missing tooltips to options dialog
    JensReimann committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    7f6b5bc View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Septentrio receiver support

    - ensure observations are passed to rtklib even when epoche end block is
    not present in the data
    - coding style improvements
    JensReimann committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    784056a View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2024

  1. Configuration menu
    Copy the full SHA
    3adced0 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. Merge pull request tomojitakasu#420 from ourairquality/rtknavi-qt-gts…

    …-utc
    
    rtknavi_qt showIonUtc: correct the GTS-UTC format
    JensReimann authored Jul 14, 2024
    Configuration menu
    Copy the full SHA
    30463eb View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Qt Gui Update: About Dialog

    - add link to GitHub site
    - various reformating
    JensReimann committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d48ecec View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. Fix check for age of differential too large when time interpolation o…

    …f base station data is enabled. With or without interpolation enabled, the test will now fail if the difference in time between the rover observation and the closest base observation is greater than the max age of differential.
    rtklibexplorer committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    d2030fb View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    03e4afd View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Qt Gui: rtknavi_qt option dialog

    - fix and simplify selection of rover and reference antenna source
    JensReimann committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    44eb8e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4ad523 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2024

  1. Qt Gui Update: FTP option dialog for rtknavi_qt.pro

    - improve tab order in ftp option dialog
    - fix parsing of ftp option string
    - improve validation of inputs for download interval and offsets
    - add ability to store address history of ftp option dialog
    - fix restoring of selected item after saving adddress history in ftp and
    tcp option dialog
    - fix check of path array bounds in rtknavi_qt input and log stream
    dialog
    JensReimann committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    93ae4f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b5a13b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    58ddb05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df9bdeb View commit details
    Browse the repository at this point in the history
  5. Qt Gui Update: Option dialog for rtknavi_qt and rtkpost_qt

    - add more tooltips
    JensReimann committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    04de0e7 View commit details
    Browse the repository at this point in the history
  6. Qt Gui Update: rtknavi_qt log stream dialog

    - fix check of array bounderies
    JensReimann committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    d61b0fa View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Merge pull request tomojitakasu#422 from avinabmalla/demo5_unicore

    Added Unicore binary data decoder
    rtklibexplorer authored Jul 29, 2024
    Configuration menu
    Copy the full SHA
    d7ce923 View commit details
    Browse the repository at this point in the history
  2. - Update project and make files for new Unicore binary parser

    - Replace tabs with spaces in unicore.c to be consistent with other c files
    rtklibexplorer committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    572268e View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Remove currently unsupported binary receiver formats (Tersus, Comnav)…

    … from GUI menus and console app options
    rtklibexplorer committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    6cca2e8 View commit details
    Browse the repository at this point in the history
  2. Rework the implementation of the position options

    Add separate position option implementation states for llh and xyz
    position types. The implementation of the antenna types was already
    consistent with the configuration options for the antenna types, but
    the implementation state in refpos and rovpos dropped the distinction
    between llh and xyz position formats and so lost the distinction when
    converting back to the configuation option.
    
    Now the rovpos and refpos use the same set of states as the antenna
    types, including llh and xyz position types, although the positions
    stored in ru and bu are still always in xyz format.
    
    This simplifies the option handling and little as there is now no
    translation between the position types, but the positions are still
    translated between xyz and llh as needed.
    
    It is now possible to save antenna positions to configuration files in
    ecef xyx format, whereas previously these would be saved in llh format
    even if loaded in xyx format.
    
    The fronts ends have been updated to handle the two position states
    and to take advantage of the new xyz state. So that an antenna
    position set in the GUI in xyz format now saves to a configuration
    file in xyz format, rather than in llh format.
    
    Also tried to address some issues with the propagation of this state,
    both in the core options and front ends.
    ourairquality committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    9c9ec53 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    972382b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b41eb0 View commit details
    Browse the repository at this point in the history
  3. spelling

    ourairquality committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    d95658a View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Qt GUI Update

    - adapt default colors to better match the once from original rtkplot
    - change log messages for generating multipath and el/az information
    JensReimann committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    bbdb341 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2024

  1. Merge pull request tomojitakasu#410 from ourairquality/pos-llh-xyz

    Rework the implementation of the position options
    rtklibexplorer authored Aug 3, 2024
    Configuration menu
    Copy the full SHA
    76a46f7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#417 from ourairquality/galileo-8i

    obscodes: correct Galileo E5(E5a+E5b) / 1191.795 '8I'
    rtklibexplorer authored Aug 3, 2024
    Configuration menu
    Copy the full SHA
    161647e View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#425 from ourairquality/unicore-misc

    unicore: avoid binary constants
    rtklibexplorer authored Aug 3, 2024
    Configuration menu
    Copy the full SHA
    2ecec9a View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#426 from ourairquality/relpos-format

    relpos: correct trace format
    rtklibexplorer authored Aug 3, 2024
    Configuration menu
    Copy the full SHA
    ad64e6a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    de2a07a View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Qt Gui Update: rtkpost_qt

    - fix obsToNav() to produce a correct navigation file path
    - remove overly sensitive check for file existence
    - convert int return type to bool when only true or false is returned
    - remove unused argument from execCommand()
    - check if input file was accepted for processing
    JensReimann committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    0e9db11 View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update

    - update rtknavi_qt project file
    - add error message to input file view button of rtkconv_qt if file was
    not found
    - remove unused argument in rtklaunch_qt closeEvent()
    JensReimann committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    30ea11f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a94f60e View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Qt Gui Update

    - add missing IntUnitValidator files
    JensReimann committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    d828eee View commit details
    Browse the repository at this point in the history
  2. rtkrcv: add support for receiver options

    The library and gui apps already support these receiver options.
    ourairquality committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    9f1f9ac View commit details
    Browse the repository at this point in the history
  3. Qt Gui Update: TimeSpanDialog

    - extend dialog to show also seconds for start and stop time
    JensReimann committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    b0b320a View commit details
    Browse the repository at this point in the history
  4. Qt Gui Update: rtknavi_qt & rtkpost_qt options dialog

    - fix for saving boolean options to .ini file
    JensReimann committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    54c79fb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    757ab0a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c425b12 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. septentrio: decode_gpsrawcnav decode_frame fix

    * call decode_frame() for the eph after subframe 3.
    
    * for subframes 4 and 5, clear the respective subframe after decoding, rather than the prior frame.
    
    * for sigPriority() accept an extended index in the default path, to avoid dropping some signals
    
    * decode_gpsionutc() should return 9
    
    * misc spelling
    ourairquality committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    62d2b69 View commit details
    Browse the repository at this point in the history
  2. Update project files for RNX2RTKP, RTKPOST, RTKNAVI

     - Make build options consistent (NFREQ=3, NEXOBS=3) for all three
     - Fix compile optimization settings for RTKPOST
     - Remove references to unused directories
     - Remove WIN32 build option: obsolete and no longer compiles without error
    Note that the optimization fix for RTKPOST improves processing speed by more than a factor of two and makes it consistent with RNX2RTKP
    rtklibexplorer committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    66a532e View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#434 from ourairquality/rtkrcv-rcvopt

    rtkrcv: add support for receiver options
    rtklibexplorer authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    b53c072 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. rinex comments: refactor into a new function rnxcomment()

    RINEX comments were being truncated to at most 60 characters and there was
    some code duplication. e.g. long file names and receiver options were being
    truncated and lost.
    
    Abstract this into the new function rnxcomment() which handles comment
    overflow by wrapping to the next comment line with indentation. Handle
    overflow and truncation in this common function.
    
    Comments now need to be added without blank entries in the comments array, and
    new entries are added starting from the first blank entry.
    ourairquality committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    22c9c56 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#436 from ourairquality/septentrio-gps…

    …-decode-frame
    
    septentrio: decode_gpsrawcnav decode_frame fix
    JensReimann authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    54a6182 View commit details
    Browse the repository at this point in the history
  3. Fix of inconsistent data from Septentrio receivers

    Move the check to flush the collected measurement data from the previous
    epoch to the beginning of the reading routines to avoid inconsistent
    data sets.
    
    Before, the first data from a new measurement epoch would already be
    stored in the output buffer together with the data of the previous epoch
    before the whole data was flushed.
    
    The current ode requires a global variable to track the current
    measurement epoch which is, unfortunately, not ideal.
    JensReimann committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    253bfb3 View commit details
    Browse the repository at this point in the history
  4. Qt Gui Update: rtkplot_qt

    Change legend of satellite visibility plot to illustrate that the number
    of observations are shown which is not necessarily the number of
    frequencies.
    JensReimann committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    3d90b27 View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#437 from ourairquality/rinex-comments

    rinex comments: refactor into a new function rnxcomment() and wrap ov…
    rtklibexplorer authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    4fb1a36 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    33009b7 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. sbas subtype7: guard the number of satellites

    The subtype7 messages have at most data for the first 51 masked
    satellites, so guard this as had already been done for subtype6
    messages.
    ourairquality committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    a321f35 View commit details
    Browse the repository at this point in the history
  2. Septentrio GLO raw canav: avoid subframe time unaligned access

    The raw time is stored in the subframe buffer, beyond the data, and
    used to invalidate the buffer. Store the time in seconds, truncated
    to 32 bits, and use memcpy to read and write this to the buffer.
    ourairquality committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    431ec5a View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#439 from ourairquality/sbas-subtype6-…

    …nsats
    
    sbas subtype7: guard the number of satellites
    rtklibexplorer authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    d7f21b1 View commit details
    Browse the repository at this point in the history
  4. - Updates to documentation, in and out of code, primarily to reflect …

    …recent (and not so recent) changes to the code
    
    - Remove unused config parameters from GUI menus.
    rtklibexplorer committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    ec9a81b View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    82624e8 View commit details
    Browse the repository at this point in the history
  2. septentrio: misc fixes, snr, doppler, glonass fcn, add RCVSTDS opt

    * Fixes for the SNR decoding.
    
    * Fixes for the doppler decoding.
    
    * Fixes for the GLONASS fcn indexes. The conventions differ in various RTKLib structures. Needed in part to fix the doppler decoding.
    
    * Remove the constraint that the Lstd and Pstd values be limited to 9, rather apply this limit on RINEX output, to benefit from the wider range when using a raw input.
    
    * Add a -RCVSTDS receiver option for the Septentrio to make this optional, as for the ublox.
    ourairquality committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    d2c94b3 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#438 from ourairquality/sep-glo-canav-…

    …time
    
    Septentrio GLO raw canav: avoid subframe time unaligned access
    JensReimann authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    5928328 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#442 from ourairquality/septentrio-mis…

    …c-snr-dop-glo
    
    septentrio: misc fixes, snr, doppler, glonass fcn, add RCVSTDS opt
    JensReimann authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    55a0f2c View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Configuration menu
    Copy the full SHA
    d771a40 View commit details
    Browse the repository at this point in the history
  2. rtkplot_qt: recognize more common obs and nav files patterns

    Obs: *.*O *O.rnx *O.rnx.gz *O.crx *O.crx.gz
    
    Nav: *N.rnx.gz
    ourairquality committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    ff23450 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#445 from ourairquality/rtkplot-qt-fil…

    …e-patterns
    
    rtkplot_qt: recognize more common obs and nav files patterns
    JensReimann authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    ec49cb2 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    399f4b5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0d8d2c View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Qt Gui Update:

    fix for issue tomojitakasu#443: rtkplot_qt: Incorrect time values ​​in status bar
    field for Position plot type
    JensReimann committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    21b842d View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: rtkplot_qt

    - remove ambiguous shortcuts in main window
    JensReimann committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    f4956f1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fbde607 View commit details
    Browse the repository at this point in the history
  4. RINEX input_rnxctr: correct the ephemeris set for GAL

    Set 0 is used for I/NAV and set 1 for F/NAV. The ephemeris structure
    code slot has bit 8 set for E5a,E1 or bit 9 set for E5b,E1. F/NAV is
    for channel E5a-I, not channel E5b-I. For I/NAV on channel E1B neither
    bit 8 or 9 would be set. So checking bit 8 should distinguish F/NAV
    from I/NAV and when set the ephemeris should go to set 1.
    
    Also bit 1 is expected to be set for F/NAV E5a-I so also use the F/NAV
    set in this case.
    ourairquality committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    21bb993 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. convrnx: add option to sort observation data by satellite index

    Using the RTKLib satellite index.
    
    Adds -sortsats to convbin
    ourairquality committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    b8fde78 View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update

    - random string and i18n related improvements
    - make time dialog show date and time in localized format
    JensReimann committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    b6b9706 View commit details
    Browse the repository at this point in the history
  3. rtkplot: count all observation frequencies

    and for rtkplot_qt correct the legend color.
    ourairquality committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    01bb3d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. Qt Gui Update: graph

    - consistently use enum for label positions
    - adapt for i18n
    - code formating
    JensReimann committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    d20d48d View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: rtknavi_qt/rtkpost_qt options dialog

    - allow translation of more strings
    - fix selection of rover and reference antenna
    - work on i18n
    JensReimann committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    ba29039 View commit details
    Browse the repository at this point in the history
  3. Qt Gui Update: rtknavi_qt

    - scale solution text with window size
    - make graph rendering use anti-aliasing
    - i18n work
    - combine some redundant code
    - fix some label texts
    JensReimann committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    56d0b49 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#451 from ourairquality/rtkplot-legend…

    …-color
    
    rtkplot: count all observation frequencies
    JensReimann authored Aug 18, 2024
    Configuration menu
    Copy the full SHA
    33b8161 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

  1. Qt Gui Update: rtknavi_qt

    - improve scaling of label fonts to fill entire available screen space
    - adapt colors to better match those of the windows version
    JensReimann committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    20c0064 View commit details
    Browse the repository at this point in the history
  2. septentrio: move the static data into the raw structure

    Allowing multiple sbf streams to be decoded simultaneously.
    ourairquality committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    26ed828 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Merge pull request tomojitakasu#455 from ourairquality/sep-dyn-state

    septentrio: move the static data into the raw structure
    JensReimann authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    679af18 View commit details
    Browse the repository at this point in the history
  2. septentrio: pass on the flushobuf return value

    otherwise the caller will not recognise that data has been added.
    ourairquality committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    5126471 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. septentrio sbslongcorrh: correct time decoding

    Time was loaded from incorrect offset. Compute in double.
    ourairquality committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    682d64b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0724c41 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#457 from ourairquality/sept-flushobuf…

    …-ret
    
    septentrio: pass on the flushobuf return value
    JensReimann authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    d72402a View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#458 from ourairquality/sep-sbslongcor…

    …rh-time
    
    septentrio sbslongcorrh: correct time decoding
    JensReimann authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    cbb29ea View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#459 from ourairquality/sept-geoalm-case

    septentrio: add case for ID_GEOALM, not yet implemented
    JensReimann authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    d44c440 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. septentrio: misc fixes

    decode_glonav: correct svh. Only a binary health bit is wanted for the
    GLONASS svh.
    
    decode_galnav: correct code and health, convert to RINEX format.
    
    decode_meas3Doppler, decode_meas3CN: correct loop oob
    
    meas3_sig2idx: use MEAS3_SIG_MAX
    
    decode_gpsrawcnav: add partial implementation
    
    decode_galrawfnav: correct code
    
    decode_galrawinav: correct code
    
    decode_navicraw: enable
    
    decode_naviclnav: enable
    
    decode_cmpnav: correct times
    
    decode_qzssnav: correct, enable
    
    Set the eph.set even if it is zero, just to be explicit.
    ourairquality committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    85d3098 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#460 from ourairquality/sept-misc

    septentrio: misc fixes
    JensReimann authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    2aaf692 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2024

  1. eph.fit: improve handling, QZSS

    Add a sys argument to decode_frame so that it can specialise for QZSS
    where the interpretation of the fit bit differs from GPS.
    
    Rework some usage of the eph.fit which is defined in RTKLib to be in
    hours, so the decoded fit time, not the binary bit. It was not being
    consistently set. Now it is set to 4hrs for GPS when appropriate, and
    for now to 6hr when over 4hrs (it could be better decoded). For QZSS
    it is set to 2hrs when appropriate and to 4hrs when over 2hrs; QZSS
    appears to only use 2hr.
    
    The fit time is not currently used by RTKLib, just past through.
    ourairquality committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    9be2f87 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5a789d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3a319cd View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2024

  1. Configuration menu
    Copy the full SHA
    d0c9143 View commit details
    Browse the repository at this point in the history
  2. Qt Gui: Huge Update for rtkplot_qt

    Graph:
    - support unit for plot axes in graph.cpp
    - fix drawing of poligons in graph.cpp
    - make some data static const
    - correctly apply line style in skyplot
    
    Time Span Dialog:
    - convert time span dialog to not include .ui-file in header to speed up
    compilation
    - return invalid date/time when field is not activated
    
    rtkplot_qt:
    - activate anit-aliasing for plotting
    - improve calculation of plot border margins
    - use font from preference dialog for plotting
    - improve localization for plotting
    - fix mouse wheel handling for scaling plots
    - improve some icons to make them
    - correctly save and load .tag files for map images
    - improve placing of legend in status bar
    - fix color scale for multipath
    - get rid of special defines for degree and square (raised two) symbols
    - add progress information for visibility analysis
    - optimize plotting of map image by storing a pre-scaled version
    - reset connect button is no connection was established
    - show wait cursor when plotting takes long
    - improve handling of plot range popup
    - fix filter for loading waypoints
    - more error checking in visibility analysis
    - improve enabling/disabling of menu entry
    - fix color assignment in vector map dialog
    - more tool tips
    - many smaller bug fixes
    JensReimann committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    6f8b539 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Configuration menu
    Copy the full SHA
    8e9f0ed View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    1c9152a View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Merge pull request tomojitakasu#444 from ourairquality/unicore-rcvstds

    unicore: support RCVSTDS option
    rtklibexplorer authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    d4618a8 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2024

  1. rtknavi_qt: allocate the rtksvr structure off the stack

    The rtksvr structure size is approaching the default stack size on
    Linux, so move it off the stack.
    ourairquality committed Sep 21, 2024
    Configuration menu
    Copy the full SHA
    bb73478 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2024

  1. Merge pull request tomojitakasu#468 from ourairquality/rtknavi-qt-rtk…

    …svr-off-stack
    
    rtknavi_qt: allocate the rtksvr structure off the stack
    JensReimann authored Sep 22, 2024
    Configuration menu
    Copy the full SHA
    16ea494 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Merge pull request tomojitakasu#469 from rtklibexplorer/demo5

    Merge latest changes from "demo5" branch
    AndreHauschild authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    94c6ee4 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2024

  1. Configuration menu
    Copy the full SHA
    218ee9e View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. rtknavi_qt mondlg: expand obs code widths

    to avoid excessive abbreviation.
    ourairquality committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    fa2c7d0 View commit details
    Browse the repository at this point in the history
  2. Qt Gui Update: rtkplot_qt

    - change name of plot types to make them more descriptive
    - calculate multipath only when first used
    - fix dragging of plot graphs with mouse cursor
    - correctly enable buttons and menu entries
    - avoid multiple updates when satellite and signal lists are filled
    - fixes to sky image and image tags
    - fix uninitialized marker in mapview
    - fix guard code in mapview
    JensReimann committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    881718a View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#464 from ourairquality/sept-rxsetup

    septentrio: implement the rx setup block
    JensReimann authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    a15fc72 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#474 from ourairquality/rtknavi-qt-mon…

    …dlg-obs-code-width
    
    rtknavi_qt mondlg: expand obs code widths
    JensReimann authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    0197c13 View commit details
    Browse the repository at this point in the history
  5. station info: add marker type, observer and agency

    with support for RINEX parsing and output of these.
    ourairquality committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    ec7cf85 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. rtcm3 msm: add signal types R3 R4 R6, L9

    and reformat these tables.
    ourairquality committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    e3df221 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. rtkplot_qt: show residuals even when zero

    The residuals can be zero and valid, a reference signal.
    ourairquality committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    0e59775 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#449 from ourairquality/rinex-rnxctr-g…

    …al-eph-set
    
    RINEX input_rnxctr: correct the ephemeris set for GAL
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    d403cea View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#452 from ourairquality/convrnx-sortsats

    convrnx: add option to sort observation data by satellite index
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    360d0f7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#456 from ourairquality/station-info

    station info: add marker type, observer and agency
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    b565c92 View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#461 from ourairquality/eph-fit

    eph.fit: improve handling, QZSS
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    95103cb View commit details
    Browse the repository at this point in the history
  6. Merge pull request tomojitakasu#463 from ourairquality/binex-rtn-codes

    binex: correct some error return codes
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    48dd566 View commit details
    Browse the repository at this point in the history
  7. Merge pull request tomojitakasu#479 from ourairquality/rtkplot-qt-sho…

    …w-residual-zero
    
    rtkplot_qt: show residuals even when zero
    JensReimann authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    fa90502 View commit details
    Browse the repository at this point in the history
  8. Qt Gui Update:

    - fix compilation with Qt5
    JensReimann committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    39d3afa View commit details
    Browse the repository at this point in the history
  9. Merge pull request tomojitakasu#466 from bemasher/demo5

    Unicore: Fix message length in input_unicore. Fixes tomojitakasu#446
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    3bf4841 View commit details
    Browse the repository at this point in the history
  10. Merge pull request tomojitakasu#478 from ourairquality/rtcm3-msm-add-…

    …signals
    
    rtcm3 msm: add signal types R3 R4 R6, L9
    rtklibexplorer authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    38f579d View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2024

  1. Add codes L6D and L6P for BDS B3A, and NavIC L1

    These are defined in RINEX 4.
    ourairquality committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    62f6362 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Configuration menu
    Copy the full SHA
    b0ebdb7 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Update signal mask defaults in option menu in RTKCONV to reflect rece…

    …nt BDS switch between third freq and fourth freq.
    rtklibexplorer committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    cda34f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d5749f View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#481 from ourairquality/codes-bds-b3a-…

    …navic-l1
    
    Add codes L6D and L6P for BDS B3A, and NavIC L1
    rtklibexplorer authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    87ae0bb View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#482 from ourairquality/rtcm3-pocketsd…

    …r-ext-sigs
    
    rtcm3: added signal mapping extensions from PocketSDR
    rtklibexplorer authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    e35a99b View commit details
    Browse the repository at this point in the history
  5. rtkconv_qt: increase mask length, support new codes

    The mask length needed to be increased with the addition of the
    two new codes.
    
    Add support for BDS L3A and NavIC L1.
    ourairquality committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    5f2f2f4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request tomojitakasu#484 from rtklibexplorer/demo5

    Merge latest changes from "demo5" into "dev"
    AndreHauschild authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    f469dda View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. convbin: add GLONASS fcn initialization support

    adding the --glofcn command line argument. The GUI convbin app
    already has this support.
    ourairquality committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    7f67c28 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89cd7e4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5bea1ca View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Merge pull request tomojitakasu#485 from ourairquality/convbin-glofcn

    convbin: add GLONASS fcn initialization support
    rtklibexplorer authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    6649a67 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#486 from ourairquality/convbin-freq-all

    convbin: change the default frequencies to all
    rtklibexplorer authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    3e13f91 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#487 from ourairquality/convbin-unicor…

    …e-doc
    
    convbin: add unicore support to usage output
    rtklibexplorer authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    74a6e9a View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

  1. Merge pull request tomojitakasu#483 from ourairquality/rtkconvqt-mask…

    …-code-update
    
    rtkconv_qt: increase mask length, support new codes
    JensReimann authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    19a0dda View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. rtcm3e msgs 1001-1004, 1009-1012: correct max satellites limit

    The MAXOBS was being used, where 31 is the maximum number of
    satellites for these messages.
    
    This limit was not being enforced when emitting the data, just in the
    header value.
    
    This lead to an invalid RTCM data stream when there were over 31
    satellites.
    ourairquality committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    45079b0 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. unicore: fix observation standard deviation recording

    Prior patch used the wrong destination.
    ourairquality committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    edfc770 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    125f320 View commit details
    Browse the repository at this point in the history
  3. rtcm3: further sync with PocketSDR

    The GLONASS signals extensions are apparently tentative, so adopt the
    PocketSDR tentative assignments.
    
    Try to clarify the tentative signal assignments in comments.
    
    Add tentative signal assignments for BeiDou 6D, 6P, 6Z, 8D, 8P, 8X
    from PocketSDR, missed.
    
    Add tentative signal assignments for QZSS 1E, 1Z, 1B, 6E, 6Z, 5D, 5P, 5Z
    from PocketSDR, missed.
    ourairquality committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    4311c47 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    883d861 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    107968f View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. change debug

    charleschouette committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    d2d166d View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. rnx2rtcm: update

    Pack observations across multiple messages if necessary.
    
    Add -opt for RTCM, and -rnxopt for RINEX, command line arguments.
    
    Use the RINEX GONASS fcn.
    
    Update the supported nav messages.
    ourairquality committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    0965249 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    200b79d View commit details
    Browse the repository at this point in the history
  3. sbas: fix comment typo

    ourairquality committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    f86f26e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    75a1c92 View commit details
    Browse the repository at this point in the history
  5. uniqeph: keep Galileo I/NAV and F/NAV separate

    The Galileo I/NAV and F/NAV eph have some differences and should both
    be retained even if they have the same toe and iode.
    
    Also include I/NAV vs F/NAV distinction in the sort ordering function.
    ourairquality committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    15e1720 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Merge pull request tomojitakasu#496 from ourairquality/convmain-misc-…

    …consts
    
    convmain: misc cleanup constant use
    JensReimann authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    8e0ccde View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Merge pull request tomojitakasu#493 from ourairquality/rtkconv-qt-qzs…

    …s-1e
    
    rtkconv_qt: add signals QZSS 1E
    JensReimann authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    45297d9 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2024

  1. Merge pull request tomojitakasu#489 from ourairquality/rtcm3e-max-sats

    rtcm3e msgs 1001-1004, 1009-1012: correct max satellites limit
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    bc81d78 View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#490 from ourairquality/unicore-std-fix

    unicore: fix observation standard deviation recording
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    57c3c58 View commit details
    Browse the repository at this point in the history
  3. Merge pull request tomojitakasu#491 from charleschouette/demo5

    add support for obscode debug rnx2rtkp
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    08e9f3e View commit details
    Browse the repository at this point in the history
  4. Merge pull request tomojitakasu#492 from ourairquality/rtcm3-msm-sigs2

    rtcm3: further sync with PocketSDR
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    6612699 View commit details
    Browse the repository at this point in the history
  5. Merge pull request tomojitakasu#494 from ourairquality/codepris-qzss-…

    …bds-ext
    
    rtkcmd codepris: add QZSS 1B 1E, BDS 1S 1L 1Z
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    e885d2d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5b34047 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    01198b5 View commit details
    Browse the repository at this point in the history
  8. Merge pull request tomojitakasu#498 from ourairquality/rinex-time-zer…

    …o-prefix
    
    rinex: use consistent zero prefixing for times
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    76c5a58 View commit details
    Browse the repository at this point in the history
  9. Merge pull request tomojitakasu#499 from ourairquality/uniqeph-gal-fn…

    …av-inav
    
    uniqeph: keep Galileo I/NAV and F/NAV separate
    rtklibexplorer authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    e694309 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. rtknavi_qt: increase monitor column width for sbas and rtcm

    to avoid excess abgreviation.
    ourairquality committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    d09fc8d View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#505 from ourairquality/rtknavi-qt-sba…

    …s-mon-widths
    
    rtknavi_qt: increase monitor column width for sbas and rtcm
    JensReimann authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    5059912 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. rknavi_qt monitor galileo nav: update info on set change

    Update the F/Nav vs I/Nav info display when the set changes.
    ourairquality committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7c316ed View commit details
    Browse the repository at this point in the history
  2. Merge pull request tomojitakasu#507 from ourairquality/rtknavi-qt-mon…

    …-nav-gal
    
    rknavi_qt monitor galileo nav: update info on set change
    JensReimann authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7282f07 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Merge pull request tomojitakasu#509 from rtklibexplorer/demo5

    Sync "demo5" and "dev"
    AndreHauschild authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    bc126e6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12 from rtklibexplorer/dev

    Merge latest changes from "rtklibexplorer/demo5"
    AndreHauschild authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    537f9fd View commit details
    Browse the repository at this point in the history