Skip to content

Commit

Permalink
Wording of the doc
Browse files Browse the repository at this point in the history
Signed-off-by: Cédric Foellmi <cedric@onekiloparsec.dev>
  • Loading branch information
onekiloparsec committed Nov 1, 2023
1 parent dd7d054 commit e05f8bd
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions src/planets/jupiter/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/mars/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/mercury/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/neptune/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/pluto/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getEclipticLatitude, getEclipticLongitude, getRadiusVector } from './co

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -19,7 +19,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -31,7 +31,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/saturn/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/uranus/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down
6 changes: 3 additions & 3 deletions src/planets/venus/elliptical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { getEccentricity, getSemiMajorAxis } from './orbital'

/**
* Geocentric distance (distance between the planet and Earth's center).
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -35,7 +35,7 @@ export function getGeocentricDistance (jd: JulianDay | number): AstronomicalUnit

/**
* Geocentric apparent ecliptic coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion).
* It takes into account the effects of light-time travel & Earth nutation and annual aberration.
* @see getEclipticCoordinates
* @see getGeocentricEquatorialCoordinates
* @param {JulianDay} jd The julian day
Expand All @@ -47,7 +47,7 @@ export function getGeocentricEclipticCoordinates (jd: JulianDay | number): Eclip

/**
* Geocentric apparent equatorial coordinates
* It takes into account the effects of aberration (light-time travel & Earth motion) and Earth nutation
* It takes into account the effects of light-time travel & Earth nutation and annual aberration
* (through the use of True Obliquity of Ecliptic at the time of JD).
* @see getEquatorialCoordinates
* @see getGeocentricEclipticCoordinates
Expand Down

0 comments on commit e05f8bd

Please sign in to comment.