Skip to content
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

compute_compass2 #5

Open
11721206 opened this issue Feb 17, 2023 · 0 comments
Open

compute_compass2 #5

11721206 opened this issue Feb 17, 2023 · 0 comments

Comments

@11721206
Copy link

def compute_compass2(Hx, Hy):
compass = []
for i in range(len(Hx)):
direction = compute_direction(Hx[i], Hy[i])
direction = (450-direction)math.pi/180
direction = 2
math.pi - direction
compass.append(direction)
return np.array(compass)

direction = (450-direction)*math.pi/180 why do like this ? is there any reference?

my trajectory is like "L", but the trajectory is like this:

0, 1, 2 _ 0, 1, 2 _ 0, 1, 2 _tracking

I think the turn over in that point is right,but the trajectory is not like this. Would you please give me some advices? Thanks very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant