Current scheduler generate move_to(Az, El) that move azimuth and elevation simultaneously when we want to move elevation as well as azimuth.
E.g. run.acu.move_to(az=296.53, el=48) from cmb scan at el = 60deg
Can we modify scheduler so that we divide those separately?
E.g. Azimuth movement first, then elevation;
run.acu.move_to(az=296.53, el=60)
run.acu.move_to(az=296.53, el=48)