How to resolve the message "The GNSS pose has not arrived". #4125
-
|
The robot I am trying to move only has LiDAR and not GNSS. Therefore, I have commented out the GNSS driver in sensing.launch.xml." |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
That message is output in the initial position estimation with the following code Therefore, one solution is to comment out this code and rebuild the When controlling from launch.xml, if the arg To change We are planning to make it possible to change I hope this information helps you. |
Beta Was this translation helpful? Give feedback.



That message is output in the initial position estimation with the following code
https://github.com/autowarefoundation/autoware.universe/blob/daf082474c3e286949f132ed7b0b5ad02b65d224/localization/pose_initializer/src/pose_initializer/gnss_module.cpp#L37
Therefore, one solution is to comment out this code and rebuild the
pose_initializerpackage.When controlling from launch.xml, if the arg
gnss_enabledpassed topose_initializeris set to false, a different error message may appear, but "The GNSS pose has not arrived" should not appear.To change
gnss_enabled, currently you need to directly change the following file in autoware.universe.https://github.com/autowarefoundation/autoware.uni…