Skip to content

Commit 343bd65

Browse files
committed
Update
1 parent b6f8102 commit 343bd65

24 files changed

+10
-33
lines changed

proto_mav/scripts/run.sh

-23
This file was deleted.

scripts/plot_imu_odom.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
odom_init = pd.read_csv("/tmp/imu_odom-init.csv")
88
odom_est = pd.read_csv("/tmp/imu_odom-est.csv")
99

10-
gnd_x = odom_gnd["x"].to_numpy()
11-
gnd_y = odom_gnd["y"].to_numpy()
12-
gnd_z = odom_gnd["z"].to_numpy()
10+
gnd_x = odom_gnd["rx"].to_numpy()
11+
gnd_y = odom_gnd["ry"].to_numpy()
12+
gnd_z = odom_gnd["rz"].to_numpy()
1313
gnd_vx = odom_gnd["vx"].to_numpy()
1414
gnd_vy = odom_gnd["vy"].to_numpy()
1515
gnd_vz = odom_gnd["vz"].to_numpy()
1616

17-
init_x = odom_init["x"].to_numpy()
18-
init_y = odom_init["y"].to_numpy()
19-
init_z = odom_init["z"].to_numpy()
17+
init_x = odom_init["rx"].to_numpy()
18+
init_y = odom_init["ry"].to_numpy()
19+
init_z = odom_init["rz"].to_numpy()
2020
init_vx = odom_init["vx"].to_numpy()
2121
init_vy = odom_init["vy"].to_numpy()
2222
init_vz = odom_init["vz"].to_numpy()
2323

24-
est_x = odom_est["x"].to_numpy()
25-
est_y = odom_est["y"].to_numpy()
26-
est_z = odom_est["z"].to_numpy()
24+
est_x = odom_est["rx"].to_numpy()
25+
est_y = odom_est["ry"].to_numpy()
26+
est_z = odom_est["rz"].to_numpy()
2727
est_vx = odom_est["vx"].to_numpy()
2828
est_vy = odom_est["vy"].to_numpy()
2929
est_vz = odom_est["vz"].to_numpy()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

xyz/xyz.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
xyz
2+
xyz.py
33
44
Contains the following library code useful for prototyping robotic algorithms:
55

0 commit comments

Comments
 (0)