Added check_internal_links.py utility to look for broken links in markdown files.

Currently I ignore any errors when checking the C# documentation,
because there are broken links for the rotation functions I
haven't started adding yet.  I will turn that error check back on
once I finish those functions.
This commit is contained in:
Don Cross
2019-12-21 15:41:39 -05:00
parent 30d03321e3
commit 1fde8049c6
9 changed files with 72 additions and 41 deletions

View File

@@ -664,7 +664,7 @@ which are relative to the plane of the Earth's orbit around the Sun.
| Type | Parameter | Description |
| --- | --- | --- |
| [`EquatorialCoordinates`](#EquatorialCoordinates) | `equ` | Equatorial coordinates in the J2000 frame of reference. |
| [`Equatorial`](#Equatorial) | `equ` | Equatorial coordinates in the J2000 frame of reference. |
### Returns: [`EclipticCoordinates`](#EclipticCoordinates)
Ecliptic coordinates in the J2000 frame of reference.
@@ -745,7 +745,7 @@ Correction for aberration is optional, using the `aberration` parameter.
| `bool` | `ofdate` | Selects the date of the Earth's equator in which to express the equatorial coordinates. If `True`, returns coordinates using the equator and equinox of date. If `False`, returns coordinates converted to the J2000 system. |
| `bool` | `aberration` | If `True`, corrects for aberration of light based on the motion of the Earth with respect to the heliocentric origin. If `False`, does not correct for aberration. |
### Returns: [`EquatorialCoordinates`](#EquatorialCoordinates)
### Returns: [`Equatorial`](#Equatorial)
Equatorial coordinates in the specified frame of reference.
---

View File

@@ -3379,7 +3379,7 @@ def Equator(body, time, observer, ofdate, aberration):
Returns
-------
EquatorialCoordinates
Equatorial
Equatorial coordinates in the specified frame of reference.
"""
gc_observer = _geo_pos(time, observer)
@@ -3746,7 +3746,7 @@ def Ecliptic(equ):
Parameters
----------
equ : EquatorialCoordinates
equ : Equatorial
Equatorial coordinates in the J2000 frame of reference.
Returns