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

Update GxGSV NMEA 4.10 - Add Signal averaging - Update gpsinformationwidget #58357

Open
wants to merge 32 commits into
base: master
Choose a base branch
from

Conversation

bettellam
Copy link
Contributor

parse.c
Update GxGSV - NMEA 4.10 signal_id

sentence.h
Add signal_id; //!< NMEA v4.1 - ID of the ranging signal

qgsnmeaconnection.cpp
NMEA RMC - Set qualitydescription only for status: A or V in processRmcSentence
if the value in status is not A or V (e.g. D), for qualitydescription it is set with GGA

NMEA GSV - Add Signal averaging processGsvSentence
QgsSatelliteInfo signal is calculated as the average of the signals present in GxGSV
With future updates using signal_id you may get a result similar to this:
Screenshot 2024-08-05 123331

qgsgpsinformationwidget.cpp
Small updates in SkyPlot satellites (added color and different symbol for various constellations)

NMEA RMC - Set qualitydescription only for status: A or V in  processRmcSentence
NMEA GSV - Add Signal averaging processGsvSentence
@github-actions github-actions bot added this to the 3.40.0 milestone Aug 11, 2024
Copy link

github-actions bot commented Aug 11, 2024

🪟 Windows builds ready!

Windows builds of this PR are available for testing here. Debug symbols for this build are available here.

(Built from commit f14154c)

@bettellam
Copy link
Contributor Author

Screenshot 2024-08-11 170749

Screenshot 2024-08-12 110904

Screenshot 2024-08-11 171202 - Copia

Copy link

github-actions bot commented Sep 4, 2024

The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check

  • that all unit tests are passing

  • that all comments by reviewers have been addressed

  • that there is enough information for reviewers, in particular

    • link to any issues which this pull request fixes

    • add a description of workflows which this pull request fixes

    • add screenshots if applicable

  • that you have written unit tests where possible
    In case you should have any uncertainty, please leave a comment and we will be happy to help you proceed with this pull request.
    If there is no further activity on this pull request, it will be closed in a week.

@github-actions github-actions bot added the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Sep 4, 2024
@github-actions github-actions bot removed the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Sep 4, 2024
@nyalldawson nyalldawson added the Freeze Exempt Feature Freeze exemption granted label Sep 13, 2024
Copy link

The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check

  • that all unit tests are passing

  • that all comments by reviewers have been addressed

  • that there is enough information for reviewers, in particular

    • link to any issues which this pull request fixes

    • add a description of workflows which this pull request fixes

    • add screenshots if applicable

  • that you have written unit tests where possible
    In case you should have any uncertainty, please leave a comment and we will be happy to help you proceed with this pull request.
    If there is no further activity on this pull request, it will be closed in a week.

@github-actions github-actions bot added the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Sep 28, 2024
Copy link

github-actions bot commented Oct 6, 2024

While we hate to see this happen, this PR has been automatically closed because it has not had any activity in the last 21 days. If this pull request should be reconsidered, please follow the guidelines in the previous comment and reopen this pull request. Or, if you have any further questions, just ask! We love to help, and if there's anything the QGIS project can do to help push this PR forward please let us know how we can assist.

@github-actions github-actions bot closed this Oct 6, 2024
@bettellam
Copy link
Contributor Author

@nyalldawson Ciao
Sorry this request was not merged.

The change to GxGSV is a simple adaptation to NMEA 4.10

The change to GxRMC solves a problem with the new Unicore UM98x receivers, low-cost GNSS receivers that are having a considerable success on par with the UBlox F9P.
In particular with UM98x an improper use of the Status flag is performed in the NMEA GxRMC sentence whose standard values ​​are: A=active or V=void.
UM98x repeats the values ​​of the mode flag.

The current procedure in QGIS only checks Status=A to fix from the Mode flag:
mLastGPSInformation.quality
mLastGPSInformation.qualityIndicator

passing to Void any other value of Status and then:
mLastGPSInformation.quality = Invalid ;
mLastGPSInformation.qualityIndicator = Invalid ;
this makes the UM98x receivers unusable when they switch to RTK Fix mode.

It should be noted that
mLastGPSInformation.quality and
mLastGPSInformation.qualityIndicator
are set using NMEA GxGGA and are therefore correctly present.

A next step for NMEA:
update GxGSA to NMEA 4.10
this will allow to resolve the satellite numbering by introducing the standard character used by the RTCM specifications for the various constellations:
GPS: "G"
GLONASS: "R"
GALILEO: "E"
BEIDOU: "C"
QZSS: "J"
IRNSS/NAVIC: "I"
in addition to the satellite number
(this will avoid double numbering between GPS and GALILEO, currently not resolved in QGis),
it must be said that it will be more readable satellitesInView and satellitesInUse (satprn list) and the Skyplot graphs
Ciao

@github-actions github-actions bot removed the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Oct 13, 2024
@nyalldawson nyalldawson reopened this Oct 17, 2024
external/nmea/parse.c Outdated Show resolved Hide resolved
src/app/gps/qgsgpsinformationwidget.cpp Outdated Show resolved Hide resolved
src/app/gps/qgsgpsinformationwidget.cpp Outdated Show resolved Hide resolved
src/core/gps/qgsnmeaconnection.cpp Outdated Show resolved Hide resolved
Copy link

github-actions bot commented Oct 17, 2024

🪟 Windows builds

Download Windows builds of this PR for testing.
Debug symbols for this build are available here.
(Built from commit ca902d2)

🪟 Windows Qt6 builds

Download Windows Qt6 builds of this PR for testing.
(Built from commit ca902d2)

Update for Status not A, V  - for UM982 Status = D - Differential when it becomes RTKfix
@bettellam
Copy link
Contributor Author

@nyalldawson test Windows Qt6 builds
Ublox ZED-F9P
Screenshot 2024-10-17 122350

Screenshot 2024-10-17 122407

Screenshot 2024-10-17 122425

UNICORE UM982

Screenshot 2024-10-17 132724

Screenshot 2024-10-17 133140

NEW Update qgsgpsinformation.cpp

Copy link

The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check

  • that all unit tests are passing

  • that all comments by reviewers have been addressed

  • that there is enough information for reviewers, in particular

    • link to any issues which this pull request fixes

    • add a description of workflows which this pull request fixes

    • add screenshots if applicable

  • that you have written unit tests where possible
    In case you should have any uncertainty, please leave a comment and we will be happy to help you proceed with this pull request.
    If there is no further activity on this pull request, it will be closed in a week.

@github-actions github-actions bot added the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Nov 26, 2024
Copy link

github-actions bot commented Dec 3, 2024

While we hate to see this happen, this PR has been automatically closed because it has not had any activity in the last 21 days. If this pull request should be reconsidered, please follow the guidelines in the previous comment and reopen this pull request. Or, if you have any further questions, just ask! We love to help, and if there's anything the QGIS project can do to help push this PR forward please let us know how we can assist.

@github-actions github-actions bot closed this Dec 3, 2024
@nyalldawson nyalldawson reopened this Dec 3, 2024
@github-actions github-actions bot removed the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Dec 3, 2024
@bettellam
Copy link
Contributor Author

Sorry, I don't understand what's wrong!!!
Help...
Thanks!

@nyalldawson nyalldawson removed the Freeze Exempt Feature Freeze exemption granted label Dec 4, 2024
Copy link

The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check

  • that all unit tests are passing

  • that all comments by reviewers have been addressed

  • that there is enough information for reviewers, in particular

    • link to any issues which this pull request fixes

    • add a description of workflows which this pull request fixes

    • add screenshots if applicable

  • that you have written unit tests where possible
    In case you should have any uncertainty, please leave a comment and we will be happy to help you proceed with this pull request.
    If there is no further activity on this pull request, it will be closed in a week.

@github-actions github-actions bot added the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Dec 20, 2024
Copy link

While we hate to see this happen, this PR has been automatically closed because it has not had any activity in the last 21 days. If this pull request should be reconsidered, please follow the guidelines in the previous comment and reopen this pull request. Or, if you have any further questions, just ask! We love to help, and if there's anything the QGIS project can do to help push this PR forward please let us know how we can assist.

@github-actions github-actions bot closed this Dec 28, 2024
@bettellam bettellam deleted the patch-1 branch December 29, 2024 09:32
@bettellam bettellam restored the patch-1 branch January 6, 2025 08:03
@bettellam
Copy link
Contributor Author

I found the reason for the reported errors.
https://clang.llvm.org/docs/ClangFormatStyleOptions.html
is it possible to reopen the pull request? thanks

@github-actions github-actions bot removed the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Jan 6, 2025
@DelazJ DelazJ reopened this Jan 6, 2025
Copy link

The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check

  • that all unit tests are passing

  • that all comments by reviewers have been addressed

  • that there is enough information for reviewers, in particular

    • link to any issues which this pull request fixes

    • add a description of workflows which this pull request fixes

    • add screenshots if applicable

  • that you have written unit tests where possible
    In case you should have any uncertainty, please leave a comment and we will be happy to help you proceed with this pull request.
    If there is no further activity on this pull request, it will be closed in a week.

@github-actions github-actions bot added the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Jan 21, 2025
Copy link

While we hate to see this happen, this PR has been automatically closed because it has not had any activity in the last 21 days. If this pull request should be reconsidered, please follow the guidelines in the previous comment and reopen this pull request. Or, if you have any further questions, just ask! We love to help, and if there's anything the QGIS project can do to help push this PR forward please let us know how we can assist.

@github-actions github-actions bot closed this Jan 28, 2025
@bettellam
Copy link
Contributor Author

@nyalldawson hello, should I consider this PR permanently closed or is there a possibility that it will be merged?
thanks . Ciao

@github-actions github-actions bot removed the stale Uh oh! Seems this work is abandoned, and the PR is about to close. label Jan 28, 2025
@nyalldawson nyalldawson reopened this Jan 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants