修正後の座標。
引数originalで与えた座標を
「分」「秒」が0以上60未満となるように修正した値を返す。
メンバdegの値が非負になるように符号についても修正する。
The coordinate corrected from argument original, such that
the minute and second are greater than or equal to 0 and less than 60.
Also, the sign is corrected such that
the sign of member deg is non-negative.
この例では
\(-23^{\circ}-45’67{’}{’}\)
→ \(-23^{\circ}-44’07{’}{’}\)
→ \(-24^{\circ}16’07{’}{’}\)
と修正されて
corrected.sign=-1
corrected.deg=24
corrected.min=16
corrected.sec=7.0
となる。
In this example, the correction is made as
\(-23^{\circ}-45’67{’}{’}\)
→ \(-23^{\circ}-44’07{’}{’}\)
→ \(-24^{\circ}16’07{’}{’}\),
resulting in the following values:
corrected.sign=-1,
corrected.deg=24,
corrected.min=16, and
corrected.sec=7.0.