(timestamp)
| 95806 | return timestamp / DAY_IN_MS - 0.5 + JD1970; |
| 95807 | } |
| 95808 | function toDays(timestamp) { |
| 95809 | return toJulianDay(timestamp) - JD2000; |
| 95810 | } |
| 95811 | function getRightAscension(eclipticLongitude, b) { |
| 95812 | var lambda = eclipticLongitude; |
| 95813 | return Math.atan2(Math.sin(lambda) * Math.cos(e) - Math.tan(b) * Math.sin(e), Math.cos(lambda)); |
no test coverage detected