mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-04-16 12:37:35 -04:00
Added missing supported bodies to Python HelioState docs.
This commit is contained in:
@@ -1031,7 +1031,7 @@ The vectors are expressed in equatorial J2000 coordinates (EQJ).
|
||||
|
||||
| Type | Parameter | Description |
|
||||
| --- | --- | --- |
|
||||
| [`Body`](#Body) | `body` | The celestial body whose barycentric state vector is to be calculated. Supported values are `Body.Sun`, `Body.SSB`, and all planets: `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`, `Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`. |
|
||||
| [`Body`](#Body) | `body` | The celestial body whose barycentric state vector is to be calculated. Supported values are `Body.Sun`, `Body.SSB`, `Body.Moon`, `Body.EMB`, and all planets: `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`, `Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`. |
|
||||
| [`Time`](#Time) | `time` | The date and time for which to calculate position and velocity. |
|
||||
|
||||
### Returns: [`StateVector`](#StateVector)
|
||||
@@ -1359,7 +1359,7 @@ of reference, consider using [`BaryState`](#BaryState) instead.
|
||||
|
||||
| Type | Parameter | Description |
|
||||
| --- | --- | --- |
|
||||
| [`Body`](#Body) | `body` | The celestial body whose heliocentric state vector is to be calculated. Supported values are `Body.Sun`, `Body.SSB`, and all planets: `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`, `Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`. |
|
||||
| [`Body`](#Body) | `body` | The celestial body whose heliocentric state vector is to be calculated. Supported values are `Body.Sun`, `Body.SSB`, `Body.Moon`, `Body.EMB`, and all planets: `Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`, `Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`. |
|
||||
| [`Time`](#Time) | `time` | The date and time for which to calculate position and velocity. |
|
||||
|
||||
### Returns: [`StateVector`](#StateVector)
|
||||
|
||||
@@ -4316,7 +4316,7 @@ def BaryState(body, time):
|
||||
----------
|
||||
body : Body
|
||||
The celestial body whose barycentric state vector is to be calculated.
|
||||
Supported values are `Body.Sun`, `Body.SSB`, and all planets:
|
||||
Supported values are `Body.Sun`, `Body.SSB`, `Body.Moon`, `Body.EMB`, and all planets:
|
||||
`Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`,
|
||||
`Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`.
|
||||
time : Time
|
||||
@@ -4400,7 +4400,7 @@ def HelioState(body, time):
|
||||
----------
|
||||
body : Body
|
||||
The celestial body whose heliocentric state vector is to be calculated.
|
||||
Supported values are `Body.Sun`, `Body.SSB`, and all planets:
|
||||
Supported values are `Body.Sun`, `Body.SSB`, `Body.Moon`, `Body.EMB`, and all planets:
|
||||
`Body.Mercury`, `Body.Venus`, `Body.Earth`, `Body.Mars`, `Body.Jupiter`,
|
||||
`Body.Saturn`, `Body.Uranus`, `Body.Neptune`, `Body.Pluto`.
|
||||
time : Time
|
||||
|
||||
Reference in New Issue
Block a user