8000 Fix bug in rtklib and fix2pose by rsasaki0109 · Pull Request #189 · MapIV/eagleye · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix bug in rtklib and fix2pose #189

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

Merged
merged 2 commits into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,44 +40,6 @@ jobs:
rosdep install --from-paths src --ignore-src -r -y
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release --catkin-skip-building-tests

galactic_build:
runs-on: ubuntu-20.04

container: ros:galactic
services:
ros:
image: ros

defaults:
run:
shell: bash

steps:
- name: checkout
uses: actions/checkout@v2

- name: rosdep update
run: |
apt-get update
rosdep update
- name: Create Workspace
run: |
mkdir -p ~/eagleye/src/
cp -r `pwd` ~/eagleye/src/
- name: Clone rtklib_msgs
run: |
cd ~/eagleye/src/
git clone https://github.com/MapIV/rtklib_ros_bridge.git -b ros2-v0.1.0
- name: Install GeographicLib
run: |
apt-get install -y libgeographic-dev geographiclib-tools geographiclib-doc
- name: Build
run: |
cd ~/eagleye/
source /opt/ros/galactic/setup.bash
rosdep install --from-paths src --ignore-src -r -y
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release --catkin-skip-building-tests

foxy_build:
runs-on: ubuntu-20.04

Expand Down
3 changes: 3 additions & 0 deletions eagleye_rt/launch/eagleye_rt.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,7 @@

<include file="$(find-pkg-share eagleye_tf)/launch/tf.xml" if="$(var use_tf)"/>

<include file="$(find-pkg-share eagleye_fix2pose)/launch/fix2pose.xml">
</include>

</launch>
2 changes: 1 addition & 1 deletion eagleye_rt/src/heading_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ int main(int argc, char** argv)
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared(node_name);

std::string subscribe_rtklib_nav_topic_name = "rtklib_nav";
std::string subscribe_rtklib_nav_topic_name = "gnss/rtklib_nav";
std::string subscribe_rmc_topic_name = "gnss/rmc";

std::string yaml_file;
Expand Down
2 changes: 1 addition & 1 deletion eagleye_rt/src/monitor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ int main(int argc, char** argv)

std::string subscribe_twist_topic_name = "vehicle/twist";

std::string subscribe_rtklib_nav_topic_name = "/rtklib_nav";
std::string subscribe_rtklib_nav_topic_name = "gnss/rtklib_nav";
std::string subscribe_gga_topic_name = "gnss/gga";
std::string comparison_twist_topic_name = "/calculated_twist";

Expand Down
2 changes: 1 addition & 1 deletion eagleye_rt/src/position_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ int main(int argc, char** argv)

// tfBuffer_(node->get_clock());

std::string subscribe_rtklib_nav_topic_name = "rtklib_nav";
std::string subscribe_rtklib_nav_topic_name = "gnss/rtklib_nav";
std::string subscribe_gga_topic_name = "gnss/gga";

std::string yaml_file;
Expand Down
2 changes: 1 addition & 1 deletion eagleye_rt/src/smoothing_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main(int argc, char** argv)
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("smoothing");

std::string subscribe_rtklib_nav_topic_name = "rtklib_nav";
std::string subscribe_rtklib_nav_topic_name = "gnss/rtklib_nav";

std::string yaml_file;
node->declare_parameter("yaml_file",yaml_file);
Expand Down
2 changes: 1 addition & 1 deletion eagleye_rt/src/velocity_scale_factor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ int main(int argc, char** argv)

std::string subscribe_twist_topic_name = "vehicle/twist";

std::string subscribe_rtklib_nav_topic_name = "rtklib_nav";
std::string subscribe_rtklib_nav_topic_name = "gnss/rtklib_nav";
std::string subscribe_rmc_topic_name = "gnss/rmc";

std::string yaml_file;
Expand Down
3 changes: 2 additions & 1 deletion eagleye_util/fix2pose/launch/fix2pose.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<launch>

<node pkg="eagleye_fix2pose" name="fix2pose_node" exec="fix2pose" output="screen" >

<!-- /eagleye/fix or /eagleye/rtk_fix(rtk_deadreckoning mode) -->
<remap from="/eagleye/fix" to="/eagleye/fix" />
<param name="plane" value="7"/>
<param name="tf_num" value="1"/>
<!-- 0 : No convert 1 : ellipsoid -> altitude 2 : altitude -> ellipsoid -->
Expand Down
0