jarisuomela Dec 24, 2014
1,1:RMotion is %.2lf ^degree^s/day in RA, %.2lf ^degree^s/day in dec\n
The "1,1:R" tells Guide to multiply the rates in RA and dec by 1 and 1 (i.e., not scale them at all). If you wanted rates in arcseconds per day and arcminutes/day, you would revise that line to read:
3600,60:RMotion is %.0lf ^arcsecond^s/day in RA, %.1lf ^arcminute^s/day in dec\n
Units can be set on each axis. By changing the ":(space)" to ":R", you can switch the RA to be in time units rather than straight angular units. Mix-and-match all this, and you can get combinations such as:
15,60: Motion is %.1lf ^RA minute^s/day in RA, %.0lf ^arcminute^s/day in dec\n .625,2.5: Motion is %.2lf ^RA minute^s/hour in RA, %.2lf ^arcminute^s/hour in dec\n .625,2.5: Motion is %.2lf ^RA second^s/minute in RA, %.2lf ^arcsecond^s/minute in dec\n 37.5,150: Motion is %.1lf ^RA second^s/hour in RA, %.0lf ^arcsecond^s/hour in dec\n
The above gives positive RA motion to the west. To reverse this, negate the RA multiplier; for example, the first line would become
-15,60: Motion is %.1lf ^RA minute^s/day in RA, %.0lf ^arcminute^s/day in dec\n