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
I'm playing with your code for now I'm trying to change some values in the simulator. Like the start altitude, the turn radius or no_turns_below. My first question is, what is the difference between Planand Simcurves in the simulator (the glider always follow Simcurve), because in some case if I lower the start altitude I have a better trajectory and error score with the Plancurve.
The text was updated successfully, but these errors were encountered:
The "plan" is the flight planner's current, instantaneous navigation plan. The device updates its plan at every step, and so the best "plan" can change. There are factors like the wind which the device doesn't know in advance. Also new alternative plans become available and so the plan can change.
The "sim" curve represents the actual flight path. Basically the code just plays forward each step of the simulation, and takes the sequence of actual positions as the "sim" path.
I'm playing with your code for now I'm trying to change some values in the simulator. Like the start altitude, the turn radius or no_turns_below. My first question is, what is the difference between
Plan
andSim
curves in the simulator (the glider always followSim
curve), because in some case if I lower the start altitude I have a better trajectory and error score with thePlan
curve.The text was updated successfully, but these errors were encountered: