Calculate the True North Node longitude.
The true node includes perturbations from the Sun, causing it to oscillate around the mean node by up to ~1.5°.
Julian Date
True North Node longitude in degrees [0, 360)
import { getTrueNodeLongitude } from 'celestine';const jd = 2451545.0; // J2000.0const trueNode = getTrueNodeLongitude(jd);console.log(trueNode); // ~123.95° Copy
import { getTrueNodeLongitude } from 'celestine';const jd = 2451545.0; // J2000.0const trueNode = getTrueNodeLongitude(jd);console.log(trueNode); // ~123.95°
Calculate the True North Node longitude.
The true node includes perturbations from the Sun, causing it to oscillate around the mean node by up to ~1.5°.