@@ -1094,23 +1094,20 @@ def _parse_result(self, result, **kwargs):
1094
1094
elif 's=s' in result .request .body : # sky Motion
1095
1095
names += ('dRA cos(Dec)' , 'dDec' )
1096
1096
units += ('arcsec/h' , 'arcsec/h' )
1097
- # Correct start and end for Motion columns if the results have 3 digit precision.
1098
1097
col_starts += (73 , 82 )
1099
1098
col_ends += (81 , 91 )
1100
1099
1101
1100
if 'Moon' in columns :
1102
1101
# table includes Alt, Az, Sun and Moon geometry
1103
1102
names += ('Azimuth' , 'Altitude' , 'Sun altitude' , 'Moon phase' ,
1104
1103
'Moon distance' , 'Moon altitude' )
1105
- # Modified column start and end as motion column can have 3 digit precision.
1106
1104
col_starts += tuple ((col_ends [- 1 ] + offset for offset in
1107
1105
(1 , 8 , 13 , 19 , 26 , 32 )))
1108
1106
col_ends += tuple ((col_ends [- 1 ] + offset for offset in
1109
1107
(7 , 12 , 18 , 25 , 31 , 36 )))
1110
1108
units += ('deg' , 'deg' , 'deg' , None , 'deg' , 'deg' )
1111
1109
if 'Uncertainty' in columns :
1112
1110
names += ('Uncertainty 3sig' , 'Unc. P.A.' )
1113
- # Modified column start and end as motion column can have 3 digit precision.
1114
1111
col_starts += tuple ((col_ends [- 1 ] + offset for offset in
1115
1112
(1 , 10 )))
1116
1113
col_ends += tuple ((col_ends [- 1 ] + offset for offset in
0 commit comments