You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 = 2math.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:
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
The text was updated successfully, but these errors were encountered:
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 = 2math.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:
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
The text was updated successfully, but these errors were encountered: