Instantly share code, notes, and snippets.
Created
January 31, 2024 23:16
-
Star
0
(0)
You must be signed in to star a gist -
Fork
0
(0)
You must be signed in to fork a gist
-
-
Save marcusvinicius178/ef0479ce04f091e6a3e82974b3fa155a to your computer and use it in GitHub Desktop.
dual_ekf_navsat.launch.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For parameter descriptions, please refer to the template parameter files for each node. | |
| ekf_filter_node_odom: | |
| ros__parameters: | |
| frequency: 30.0 | |
| two_d_mode: true # Recommended to use 2d mode for nav2 in mostly planar environments | |
| print_diagnostics: true | |
| debug: false | |
| publish_tf: true | |
| map_frame: map | |
| odom_frame: odom | |
| base_link_frame: base_footprint # the frame id used by the turtlebot's diff drive plugin | |
| world_frame: odom | |
| odom0: odom | |
| odom0_config: [false, false, false, | |
| false, false, false, | |
| true, true, true, | |
| false, false, true, | |
| false, false, false] | |
| odom0_queue_size: 10 | |
| odom0_differential: false | |
| odom0_relative: false | |
| imu0: imu | |
| imu0_config: [false, false, false, | |
| false, false, true, | |
| false, false, false, | |
| false, false, false, | |
| false, false, false] | |
| imu0_differential: false # If using a real robot you might want to set this to true, since usually absolute measurements from real imu's are not very accurate | |
| imu0_relative: false | |
| imu0_queue_size: 10 | |
| imu0_remove_gravitational_acceleration: true | |
| use_control: false | |
| process_noise_covariance: [1e-3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 1e-3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 1e-3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3] | |
| ekf_filter_node_map: | |
| ros__parameters: | |
| frequency: 30.0 | |
| two_d_mode: true # Recommended to use 2d mode for nav2 in mostly planar environments | |
| print_diagnostics: true | |
| debug: false | |
| publish_tf: true | |
| map_frame: map | |
| odom_frame: odom | |
| base_link_frame: base_footprint # the frame id used by the turtlebot's diff drive plugin | |
| world_frame: map | |
| odom0: odom | |
| odom0_config: [false, false, false, | |
| false, false, false, | |
| true, true, true, | |
| false, false, true, | |
| false, false, false] | |
| odom0_queue_size: 10 | |
| odom0_differential: false | |
| odom0_relative: false | |
| odom1: odometry/gps | |
| odom1_config: [true, true, false, | |
| false, false, false, | |
| false, false, false, | |
| false, false, false, | |
| false, false, false] | |
| odom1_queue_size: 10 | |
| odom1_differential: false | |
| odom1_relative: false | |
| imu0: imu | |
| imu0_config: [false, false, false, | |
| false, false, true, | |
| false, false, false, | |
| false, false, false, | |
| false, false, false] | |
| imu0_differential: false # If using a real robot you might want to set this to true, since usually absolute measurements from real imu's are not very accurate | |
| imu0_relative: false | |
| imu0_queue_size: 10 | |
| imu0_remove_gravitational_acceleration: true | |
| use_control: false | |
| process_noise_covariance: [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 1e-3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, | |
| 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3] | |
| navsat_transform: | |
| ros__parameters: | |
| frequency: 30.0 | |
| delay: 3.0 | |
| magnetic_declination_radians: 0.0 | |
| yaw_offset: 0.0 | |
| zero_altitude: true | |
| broadcast_utm_transform: true | |
| publish_filtered_gps: true | |
| use_odometry_yaw: true | |
| wait_for_datum: false #true | |
| #datum: [38.161491, -122.4546443, 0.0] # pre-set datum if needed, [lat, lon, yaw] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment