-
-
Save aalfiann/bfae301ad7f616aeb60bd8da0df199d4 to your computer and use it in GitHub Desktop.
Get Moon Phase by Date, written in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* modified from http://www.voidware.com/moon_phase.htm | |
*/ | |
function getMoonPhase(year, month, day) | |
{ | |
var c = e = jd = b = 0; | |
if (month < 3) { | |
year--; | |
month += 12; | |
} | |
++month; | |
c = 365.25 * year; | |
e = 30.6 * month; | |
jd = c + e + day - 694039.09; //jd is total days elapsed | |
jd /= 29.5305882; //divide by the moon cycle | |
b = parseInt(jd); //int(jd) -> b, take integer part of jd | |
jd -= b; //subtract integer part to leave fractional part of original jd | |
b = Math.round(jd * 8); //scale fraction from 0-8 and round | |
if (b >= 8 ) { | |
b = 0; //0 and 8 are the same so turn 8 into 0 | |
} | |
// 0 => New Moon | |
// 1 => Waxing Crescent Moon | |
// 2 => Quarter Moon | |
// 3 => Waxing Gibbous Moon | |
// 4 => Full Moon | |
// 5 => Waning Gibbous Moon | |
// 6 => Last Quarter Moon | |
// 7 => Waning Crescent Moon | |
return b; | |
} | |
console.log(getMoonPhase(2015, 3, 29)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment