Skip to content

Commit

Permalink
show EOT as H:M:S not just fractional hours
Browse files Browse the repository at this point in the history
  • Loading branch information
jtauber committed Aug 15, 2012
1 parent 1f94295 commit 115c961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Expand Up @@ -130,7 +130,7 @@ <h3>Coordinated Mars Time</h3>
<i>L</i><sub>s</sub> = <span class="l_s"></span>&deg;<br>
</div>
<div>
EOT = <span class="eot"></span>&deg; = <span class="eot_h"></span>h
EOT = <span class="eot"></span>&deg; = <span class="eot_h"></span>
</div>

<h2>Curiosity<br><span>137.4&deg;E longitude</span></h2>
Expand Down Expand Up @@ -463,7 +463,7 @@ <h3>Areocentric Solar Longitude</h3>
$(".nu").text(nu.toFixed(5));
$(".l_s").text(l_s.toFixed(5));
$(".eot").text(eot.toFixed(5));
$(".eot_h").text(eot_h.toFixed(5));
$(".eot_h").text(h_to_hms(eot_h.toFixed(5)));
$(".msd").text(add_commas(msd.toFixed(5)));
$(".mtc").text(h_to_hms(mtc));

Expand Down

0 comments on commit 115c961

Please sign in to comment.