forked from septentrio-gnss/septentrio_gnss_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added geopose and geopose covariance (#1) [SC-11899]
* chore: added release yml * add covariance error based diagnostic logic * add TwistStamped, GeoPoseStamped, and other standard messages * grouped repetitive logic --------- Co-authored-by: Nathan Edwards <[email protected]>
- Loading branch information
1 parent
763b2ab
commit 8bd2897
Showing
11 changed files
with
971 additions
and
187 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
#config/rover.yaml | ||
.vscode | ||
msg/BlockHeader.msg | ||
__pycache__ | ||
.idea | ||
*.raw | ||
*.pt | ||
node_modules | ||
dist | ||
yarn-error.log | ||
log | ||
build | ||
msg/BlockHeader.msg | ||
install | ||
.env |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
# Configuration Settings for the Rover Rx | ||
|
||
# GNSS/INS Parameters | ||
|
||
device: tcp://10.27.1.102:28784 | ||
|
||
serial: | ||
baudrate: 921600 | ||
hw_flow_control: "off" | ||
|
||
stream_device: | ||
tcp: | ||
ip_server: "" | ||
port: 0 | ||
udp: | ||
ip_server: "" | ||
port: 0 | ||
unicast_ip: "" | ||
|
||
configure_rx: true | ||
|
||
custom_commands_file: "" | ||
|
||
login: | ||
user: "" | ||
password: "" | ||
|
||
osnma: | ||
mode: "off" | ||
ntp_server: "" | ||
keep_open: true | ||
|
||
frame_id: septentrio_gnss | ||
|
||
imu_frame_id: imu | ||
|
||
poi_frame_id: base_link | ||
|
||
vsm_frame_id: vsm | ||
|
||
aux1_frame_id: aux1 | ||
|
||
vehicle_frame_id: base_link | ||
|
||
local_frame_id: odom | ||
|
||
insert_local_frame: false | ||
|
||
get_spatial_config_from_tf: false | ||
|
||
lock_utm_zone: true | ||
|
||
use_ros_axis_orientation: true | ||
|
||
receiver_type: gnss | ||
|
||
multi_antenna: true | ||
|
||
datum: Default | ||
|
||
poi_to_arp: | ||
delta_e: 0.0 | ||
delta_n: 0.0 | ||
delta_u: 0.0 | ||
|
||
att_offset: | ||
heading: 0.0 | ||
pitch: 0.0 | ||
|
||
ant_type: "Unknown" | ||
ant_serial_nr: "Unknown" | ||
ant_aux1_type: "Unknown" | ||
ant_aux1_serial_nr: "Unknown" | ||
|
||
polling_period: | ||
pvt: 100 | ||
rest: 500 | ||
|
||
# time | ||
use_gnss_time: false | ||
ntp_server: true | ||
ptp_server_clock: false | ||
latency_compensation: true | ||
|
||
# RTK | ||
rtk_settings: | ||
ntrip_1: | ||
id: "" | ||
caster: "" | ||
caster_port: 2101 | ||
username: "" | ||
password: "" | ||
mountpoint: "" | ||
version: "v2" | ||
tls: false | ||
fingerprint: "" | ||
rtk_standard: "auto" | ||
send_gga: "auto" | ||
keep_open: true | ||
ip_server_1: | ||
id: "" | ||
port: 0 | ||
rtk_standard: "auto" | ||
send_gga: "auto" | ||
keep_open: true | ||
serial_1: | ||
port: "" | ||
baud_rate: 115200 | ||
rtk_standard: "auto" | ||
send_gga: "auto" | ||
keep_open: true | ||
|
||
publish: | ||
# For both GNSS and INS Rxs | ||
auto_publish: false | ||
publish_only_valid: false | ||
navsatfix: false | ||
gpsfix: true | ||
gpgga: false | ||
gprmc: false | ||
gpst: false | ||
measepoch: false | ||
pvtcartesian: false | ||
pvtgeodetic: true | ||
basevectorcart: false | ||
basevectorgeod: false | ||
poscovcartesian: false | ||
poscovgeodetic: true | ||
velcovcartesian: false | ||
velcovgeodetic: true | ||
atteuler: true | ||
attcoveuler: true | ||
pose: true | ||
geopose_stamped: true | ||
geopose_covariance_stamped: true | ||
twist: false | ||
diagnostics: false | ||
aimplusstatus: true | ||
galauthstatus: false | ||
# For GNSS Rx only | ||
gpgsa: false | ||
gpgsv: false | ||
# For INS Rx only | ||
insnavcart: false | ||
insnavgeod: false | ||
extsensormeas: false | ||
imusetup: false | ||
velsensorsetup: false | ||
exteventinsnavcart: false | ||
exteventinsnavgeod: false | ||
imu: false | ||
localization: false | ||
tf: false | ||
localization_ecef: false | ||
tf_ecef: false | ||
|
||
|
||
# INS-Specific Parameters | ||
|
||
ins_spatial_config: | ||
imu_orientation: | ||
theta_x: 0.0 | ||
theta_y: 0.0 | ||
theta_z: 0.0 | ||
poi_lever_arm: | ||
delta_x: 0.0 | ||
delta_y: 0.0 | ||
delta_z: 0.0 | ||
ant_lever_arm: | ||
x: 0.0 | ||
y: 0.0 | ||
z: 0.0 | ||
vsm_lever_arm: | ||
vsm_x: 0.0 | ||
vsm_y: 0.0 | ||
vsm_z: 0.0 | ||
|
||
ins_initial_heading: auto | ||
|
||
ins_std_dev_mask: | ||
att_std_dev: 5.0 | ||
pos_std_dev: 10.0 | ||
|
||
ins_use_poi: false | ||
|
||
ins_vsm: | ||
ros: | ||
source: "" | ||
config: [false, false, false] | ||
variances_by_parameter: false | ||
variances: [0.0, 0.0, 0.0] | ||
ip_server: | ||
id: "" | ||
port: 0 | ||
keep_open: true | ||
serial: | ||
port: "" | ||
baud_rate: 115200 | ||
keep_open: true | ||
|
||
|
||
# logger | ||
|
||
activate_debug_log: false |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.