diff --git a/demo/python/astronomy.py b/demo/python/astronomy.py index 1b43af21..e36dad86 100644 --- a/demo/python/astronomy.py +++ b/demo/python/astronomy.py @@ -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 diff --git a/generate/template/astronomy.py b/generate/template/astronomy.py index 0ba745b3..ca457084 100644 --- a/generate/template/astronomy.py +++ b/generate/template/astronomy.py @@ -2274,7 +2274,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 @@ -2358,7 +2358,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 diff --git a/source/python/README.md b/source/python/README.md index cfea599d..72f1b22b 100644 --- a/source/python/README.md +++ b/source/python/README.md @@ -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) diff --git a/source/python/astronomy.py b/source/python/astronomy.py index 1b43af21..e36dad86 100644 --- a/source/python/astronomy.py +++ b/source/python/astronomy.py @@ -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