LORD-MicroStrain / ntrip_client

ROS NTRIP client
https://github.com/LORD-MicroStrain/ntrip_client
Other
55 stars 54 forks source link

Troubles in setting the right parameters #43

Open pieterblok opened 1 year ago

pieterblok commented 1 year ago

Apologies for this NOOB question, but how can I properly set the right parameters for the NTRIP client in ROS2?

I'm currently using the NTRIP client of RTKLIB (https://github.com/rtklibexplorer/RTKLIB.git), this is my command that works:

./str2str -in ntrip://guest:guest@160.16.134.72:80/CQ-UBLOX -out serial://ttyACM0:230400

This is the format: ntrip://[username]:[password]@[host]:[port]/[mountpoint]

Somehow this seems not to work:

ros2 launch ntrip_client ntrip_client_launch.py host:='160.16.134.72' port:=80 mountpoint:='CQ-UBLOX' authenticate:=True username:='guest' password:='guest' debug:=True

And don't I need to specify the output (-out message in the RTKLIB version) when using your NTRIP client?