Problem with rtk example #36
-
I seem to have an issue with RTK example. I'm trying to send NMEA so that the system can interpret position and send back proper data. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Sorry you're having difficulties. Apologies - please ignore my earlier responses. I've realised there's an issue with the example code (though the underlying GNSSNTRIPClient code is working fine). In order to use 'ggamode' = 0, the code needs to obtain the live navigation solution from the receiver. In order to do this, the calling application must implement a method of 'get_coordinates()' which returns the current connection status, lat, lon, height and separation from geoid. In the case of the 'rtk_example.py' example, the calling application is set to 'None', which means there is no 'get_coordinates' method to invoke. I'll need to amend the example to work with 'ggmode = 0'. In the meantime, it should as you say work fine with 'ggamode = 1'. Apologies for the confusion. I'll get back to you with an updated example as soon as I can. In the meantime, the PyGPSClient GUI application uses the same underlying library and should work fine. |
Beta Was this translation helpful? Give feedback.
Hi @Adam-Piech-BOT
Sorry you're having difficulties.
Apologies - please ignore my earlier responses. I've realised there's an issue with the example code (though the underlying GNSSNTRIPClient code is working fine). In order to use 'ggamode' = 0, the code needs to obtain the live navigation solution from the receiver. In order to do this, the calling application must implement a method of 'get_coordinates()' which returns the current connection status, lat, lon, height and separation from geoid.
In the case of the 'rtk_example.py' example, the calling application is set to 'None', which means there is no 'get_coordinates' method to invoke.
I'll need to amend the example to work with 'ggmo…