20:49:29 Thursday, 3 April 2025 | G.M.T. 0h | JD G.M.T.=2460769.36770 | Greenwich Sidereal Time: 09h. 39m. 13s. | L.S.T. of Irgoli 10h. 17m. 45s. | Leo

The Sky Of Baronie

Welcome to this site, dedicated to the beauty of the sky of Sardinia...

Versione inglese
Versione inglese

ASTROJS – Code examples: The equation of time

Listings for the calculation of the equation of time.
Before commencing, connect your Html page to the Astrojs library, pasting the following listing, under the tag <title>.
IMPORTANT! The functions in red, are not Javascript commands, but belong to the Astrojs library.

<script type="text/javascript" src="http://www.suchelu.it/astrojs/astrojs.js"></script>

The equation of time for today:

<script language="JavaScript" type="text/javascript">
    //<!--

    var v_eqtime=eq_tempo();          // the value equation time today.

    document.write(v_eqtime+"<br>");  // writes the results in minutes and seconds decimals.
    document.write(sc_md(v_eqtime));  // writes the results:  mm|ss. with one decimal.
                                      // mm|ss = minutes & seconds
    //-->

</script>

The equation of time for any date:

<script language="JavaScript" type="text/javascript">
    //<!-- 
                                   // modified the variables of time.

    var dd=23;                     // day.
    var mm=6;                      // month.
    var yy=2011;                   // year.
    var hh=12;                     // hours.
    var mi=0;                      // minutes=0.
    var se=0;                      // seconds=0.

    var njd=calcola_jddata(dd,mm,yy,hh,mi,se); //the J.D. for the date.

    var v_eqtime=eq_tempo_data(yy,njd);     //   Eq.Time for the date.

    document.write(v_eqtime+"<br>");  //  writes the results in minutes and seconds decimals.
    document.write(sc_md(v_eqtime));  // writes the results:  mm|ss. with one decimal.

    //-->

</script>

The equation of time for any date - JEAN MEEUS algorithm

This is the listing to calculate the value of the equation of time with the method described in the volume of J.MEEUS.
The difference compared to previous listings, can vary from 1" to 10" seconds (at certain times of the year).
You can find both methods on the net.

<script language="JavaScript" type="text/javascript">
    //<!-- 
                                   // modified the variables of time.

    var dd=23;                     // giorno.
    var mm=6;                      // mese.
    var yy=2011;                   // anno.
    var hh=0;                      // ora =0.
    var mi=0;                      // minuti=0.
    var se=0;                      // secondi=0.

    var njd=calcola_jddata(dd,mm,yy,hh,mi,se); // calcola il G.G. della data.

    var v_eqtempo=eq_tempo_data2(yy,njd);     //   Eq.Tempo per la data (MEEUS).

    document.write(v_eqtempo+"<br>");  // scrive il risultato in minuti con decimali.
    document.write(sc_md(v_eqtempo));  // scrive il risultato in formato mm|ss. con un decimale.

    //-->

</script>

Copyright ©2009 - Salvatore Ruiu
Tutti i contenuti del sito sono protetti dal diritto d'autore.
All Rights Reserved.

Questo Sito e' Online da Maggio 2010 || Ultima modifica: 10 Maggio 2020 || Questa pagina web rispetta le direttive del W3C | CSS 2.1 | XHTML 1.0
Contatti email: senes2020@yahoo.com
Questo sito utilizza il framework Javascript: JQuery