Checking in documentation changes.

This commit is contained in:
Don Cross
2019-05-09 20:53:53 -04:00
parent 296367bd63
commit 6fc7fcd736
2 changed files with 2 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ to create a <code>Time</code> object.
| Name | Type | Description |
| --- | --- | --- |
| date | <code>Date</code> | The JavaScript Date object for the given date and time. This Date corresponds to the numeric day value stored in the <code>ut</code> property. |
| ut | <code>number</code> | Universal Time (UT1/UTC) in fractional days since the J2000 epoch. Universal Time represents time measured with respect to the Earth's rotation, tracking mean solar days. The Astronomy library approximates UT1 and UTC as being the same thing. This gives sufficient accuracy for the 1-arcminute angular resolution requirement of this project. |
| ut | <code>number</code> | Universal Time (UT1/UTC) in fractional days since the J2000 epoch. Universal Time represents time measured with respect to the Earth's rotation, tracking mean solar days. The Astronomy library approximates UT1 and UTC as being the same thing. This gives sufficient accuracy for the precision requirements of this project. |
| tt | <code>number</code> | Terrestrial Time in fractional days since the J2000 epoch. TT represents a continuously flowing ephemeris timescale independent of any variations of the Earth's rotation, and is adjusted from UT using historical and predictive models of those variations. |

View File

@@ -1159,8 +1159,7 @@ function TerrestrialTime(ut) {
* Universal Time represents time measured with respect to the Earth's rotation,
* tracking mean solar days.
* The Astronomy library approximates UT1 and UTC as being the same thing.
* This gives sufficient accuracy for the 1-arcminute angular resolution requirement
* of this project.
* This gives sufficient accuracy for the precision requirements of this project.
*
* @property {number} tt
* Terrestrial Time in fractional days since the J2000 epoch.