Package gaiasky.util.coord
Class AstroUtils
java.lang.Object
gaiasky.util.coord.AstroUtils
Some astronomical algorithms and utilities to compute and convert Julian dates,
work out the coordinates of the Moon, Pluto, and more.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final long
Milliseconds of J2000 in the scale ofInstant
.static final double
Julian date of reference epoch J2000 = JD2451544.5 = 2000-01-01T00:00:00Z.static final double
Julian date of reference epoch J2010 = JD2455197.5 = 2010-01-01T00:00:00Z.static final double
Julian date of reference epoch J2015.0 = JD2457023.5 = 2015-01-01T00:00:00Z.static final double
Julian date of reference epoch J2015.5 = JD2457206.125 = 2015-01-01T00:00:00Z.static final double
Julian days per year. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic double
apparentToAbsoluteMagnitude
(double distPc, double appMag) Converts an apparent magnitude to an absolute magnitude given the distance in parsecs.static long[]
getCalendarDay
(double julianDate) Gets the Gregorian calendar quantities given the Julian date.static double
getDayFraction
(int hour, int min, int sec, int nanos) Gets the day fraction from the day quantities.static long[]
getDayQuantities
(double dayFraction) Gets the day quantities from the day fractionstatic double
getDaysSince
(Instant date, double epoch_jd) Returns the elapsed days since the given julian date jd until the given date.static double
getDaysSinceJ2000
(Instant date) Returns the elapsed days since the epoch J2000 until the given date.static Vector3b
getEclipticCoordinates
(String body, Instant instant, Vector3b out, boolean highAccuracy) Returns a vector with the heliocentric ecliptic latitude and longitude in radians and the distance in internal units.static double
getJulianDate
(double refEpoch) Get julian date from a double reference epoch, as a Gregorian calendar year plus fraction.static double
getJulianDate
(int year, int month, int day, int hour, int min, int sec, int nanos, boolean gregorian) Gets the Julian date number given the Gregorian calendar quantities.static double
getJulianDate
(Instant instant) static double
getJulianDateCache
(Instant instant) Gets the Julian Date for the given date.static double
getJulianDayNumberBook
(int year, int month, int day) Deprecated.This does not work well!static double
getJulianDayNumberWikipediaGregorianCalendar
(int year, int month, int day) Returns the Julian day number of a date in the Gregorian calendar.static double
getJulianDayNumberWikipediaJulianCalendar
(int year, int month, int day) Returns the Julian day number of a date in the Julian calendar.static double
getMsSince
(Instant date, double epoch_jd) Returns the elapsed milliseconds since the given julian date jd until the given date.static double
getMsSinceJ2000
(Instant date) Returns the elapsed milliseconds since the epoch J2000 until the given date.static double
getMsSinceJ2010
(Instant date) Returns the elapsed milliseconds since the epoch J2010 until the given date.static double
getMsSinceJ2015
(Instant date) Returns the elapsed milliseconds since the epoch J2015 until the given date.static double
getSunDistance
(double jd) static double
getSunDistance
(Instant date) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static double
getSunLongitude
(Instant date) Returns the Sun's ecliptic longitude in degrees for the given time.static double
getSunLongitudeWikipedia
(double jd) Gets the ecliptic longitude of the Sun in degrees as published in Wikipedia.static Instant
julianDateToInstant
(double jd) static Vector3d
moonEclipticCoordinates
(double julianDate, Vector3d out) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static Vector3d
moonEclipticCoordinates
(Instant date, Vector3d out) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static Vector3b
moonEclipticCoordinates
(Instant date, Vector3d aux, Vector3b out) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static void
moonEquatorialCoordinates
(Vector3d placeholder, double julianDate) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static void
moonEquatorialCoordinates
(Vector3d placeholder, Instant date) Algorithm in "Astronomical Algorithms" book by Jean Meeus.static double
obliquity
(double julianDate) Returns the obliquity of the ecliptic (inclination of the Earth's axis of rotation) for a given date, in degreesstatic Vector3b
plutoEclipticCoordinates
(Instant date, Vector3b out) Ecliptic coordinates of pluto at the given date.static Vector3d
properMotionsToCartesian
(double muAlphaStar, double muDelta, double radvel, double ra, double dec, double distPc, Vector3d out) Converts proper motions + radial velocity into a cartesian vector.static double
T
(double julianDate) Time T measured in Julian centuries from the Epoch J2000.0.static double
tau
(double julianDate)
-
Field Details
-
JD_TO_Y
public static final double JD_TO_YJulian days per year.- See Also:
-
JD_J2000
public static final double JD_J2000Julian date of reference epoch J2000 = JD2451544.5 = 2000-01-01T00:00:00Z. -
JD_J2010
public static final double JD_J2010Julian date of reference epoch J2010 = JD2455197.5 = 2010-01-01T00:00:00Z. -
JD_J2015
public static final double JD_J2015Julian date of reference epoch J2015.0 = JD2457023.5 = 2015-01-01T00:00:00Z. -
JD_J2015_5
public static final double JD_J2015_5Julian date of reference epoch J2015.5 = JD2457206.125 = 2015-01-01T00:00:00Z. -
J2000_MS
public static final long J2000_MSMilliseconds of J2000 in the scale ofInstant
. This is the number of milliseconds elapsed since 1970-01-01T00:00:00Z (UTC) until 2000-01-01T00:00:00Z (UTC).
-
-
Constructor Details
-
AstroUtils
public AstroUtils()
-
-
Method Details
-
getJulianDate
public static double getJulianDate(double refEpoch) Get julian date from a double reference epoch, as a Gregorian calendar year plus fraction.- Parameters:
refEpoch
- The reference epoch as a Gregorian calendar year.- Returns:
- The julian date.
-
getSunDistance
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Finds out the distance from the Sun to the Earth in Km- Parameters:
date
- The date- Returns:
- The distance from the Sun to the Earth in Km
-
getSunDistance
public static double getSunDistance(double jd) -
getSunLongitude
Returns the Sun's ecliptic longitude in degrees for the given time. Caches the last Sun's longitude for future use.- Parameters:
date
- The time for which the longitude must be calculated.- Returns:
- The Sun's longitude in [deg].
-
getSunLongitudeWikipedia
public static double getSunLongitudeWikipedia(double jd) Gets the ecliptic longitude of the Sun in degrees as published in Wikipedia.- Parameters:
jd
- The Julian date for which to calculate the latitude.- Returns:
- The ecliptic longitude of the Sun at the given Julian date, in degrees.
- See Also:
-
moonEquatorialCoordinates
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Returns a vector with the equatorial longitude (α) in radians, the equatorial latitude (δ) in radians and the distance in kilometers.- Parameters:
date
- The date for which to compute the coordinates.
-
moonEquatorialCoordinates
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Returns a vector with the equatorial longitude (α) in radians, the equatorial latitude (δ) in radians and the distance in kilometers.- Parameters:
julianDate
- The Julain date for which to compute the coordinates.
-
moonEclipticCoordinates
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Returns a vector with the ecliptic longitude (λ) in radians, the ecliptic latitude (β) in radians and the distance in kilometers.- Parameters:
date
- The date for which to compute the coordinates.out
- The output vector.- Returns:
- The output vector, for chaining.
-
moonEclipticCoordinates
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Returns a vector with the ecliptic longitude (λ) in radians, the ecliptic latitude (β) in radians and the distance in kilometers.- Parameters:
date
- The instant date.aux
- Auxiliary double vector.out
- The output vector.- Returns:
- The output vector, for chaining.
-
moonEclipticCoordinates
Algorithm in "Astronomical Algorithms" book by Jean Meeus. Returns a vector with the ecliptic longitude (λ) in radians, the ecliptic latitude (β) in radians and the distance between the centers of the Earth and the Moon in kilometers.- Parameters:
julianDate
- The julian days since J2000.out
- The output vector with geocentric longitude (lambda) [rad], geocentric latitude (beta) [rad], distance between the centers of the Earth and the Moon [km].- Returns:
- The output vector, for chaining.
-
plutoEclipticCoordinates
Ecliptic coordinates of pluto at the given date.- Parameters:
date
- The date.out
- The out vector.- Returns:
- Ecliptic coordinates of Pluto at the given julian date.
-
getEclipticCoordinates
public static Vector3b getEclipticCoordinates(String body, Instant instant, Vector3b out, boolean highAccuracy) Returns a vector with the heliocentric ecliptic latitude and longitude in radians and the distance in internal units.- Parameters:
body
- The body.instant
- The date to get the position.out
- The output vector.highAccuracy
- Whether to use the full precision algorithms or skip some terms for speed.- Returns:
- The output vector with L, B and R, for chaining.
-
getJulianDate
public static double getJulianDate(int year, int month, int day, int hour, int min, int sec, int nanos, boolean gregorian) Gets the Julian date number given the Gregorian calendar quantities.- Parameters:
gregorian
- Whether to use the Gregorian or the Julian calendar.- Returns:
- The julian date number.
-
getJulianDateCache
Gets the Julian Date for the given date. It uses a cache.- Parameters:
instant
- The date.- Returns:
- The Julian Date.
-
getJulianDate
-
getMsSinceJ2010
Returns the elapsed milliseconds since the epoch J2010 until the given date. Can be negative.- Parameters:
date
- The date.- Returns:
- The elapsed milliseconds.
-
getMsSinceJ2000
Returns the elapsed milliseconds since the epoch J2000 until the given date. Can be negative.- Parameters:
date
- The date.- Returns:
- The elapsed milliseconds.
-
getDaysSinceJ2000
Returns the elapsed days since the epoch J2000 until the given date. Can be negative.- Parameters:
date
- The date.- Returns:
- The elapsed days.
-
getMsSinceJ2015
Returns the elapsed milliseconds since the epoch J2015 until the given date. Can be negative.- Parameters:
date
- The date.- Returns:
- The elapsed milliseconds.
-
getMsSince
Returns the elapsed milliseconds since the given julian date jd until the given date. Can be negative.- Parameters:
date
- The date.epoch_jd
- The reference epoch in julian days.- Returns:
- The elapsed milliseconds.
-
getDaysSince
Returns the elapsed days since the given julian date jd until the given date. Can be negative.- Parameters:
date
- The date.epoch_jd
- The reference epoch in julian days.- Returns:
- The elapsed days
-
getCalendarDay
public static long[] getCalendarDay(double julianDate) Gets the Gregorian calendar quantities given the Julian date.- Parameters:
julianDate
- The Julian date.- Returns:
- Vector with [year, month, day, hour, min, sec, nanos].
-
getJulianDayNumberBook
Deprecated.This does not work well!Returns the Julian day number. Uses the method shown in "Astronomical Algorithms" by Jean Meeus.- Parameters:
year
- The yearmonth
- The month in [1:12]day
- The day in the month, starting at 1- Returns:
- The Julian date
-
getJulianDayNumberWikipediaGregorianCalendar
public static double getJulianDayNumberWikipediaGregorianCalendar(int year, int month, int day) Returns the Julian day number of a date in the Gregorian calendar. Uses Wikipedia's algorithm.- Parameters:
year
- The year.month
- The month in [1:12].day
- The day in the month, starting at 1.- Returns:
- The Julian date.
- See Also:
-
getJulianDayNumberWikipediaJulianCalendar
public static double getJulianDayNumberWikipediaJulianCalendar(int year, int month, int day) Returns the Julian day number of a date in the Julian calendar. Uses Wikipedia's algorithm.- Parameters:
year
- The yearmonth
- The month in [1:12]day
- The day in the month, starting at 1- Returns:
- The Julian date
- See Also:
-
julianDateToInstant
-
getDayFraction
public static double getDayFraction(int hour, int min, int sec, int nanos) Gets the day fraction from the day quantities.- Parameters:
hour
- The hour in 0-24min
- The minute in 0-1440sec
- The second in 0-86400nanos
- The nanoseconds- Returns:
- The day fraction
-
getDayQuantities
public static long[] getDayQuantities(double dayFraction) Gets the day quantities from the day fraction- Parameters:
dayFraction
- The day fraction.- Returns:
- [hours, minutes, seconds, nanos].
-
obliquity
public static double obliquity(double julianDate) Returns the obliquity of the ecliptic (inclination of the Earth's axis of rotation) for a given date, in degrees- Returns:
- The obliquity in degrees
-
T
public static double T(double julianDate) Time T measured in Julian centuries from the Epoch J2000.0.- Parameters:
julianDate
- The julian date.- Returns:
- The time in julian centuries.
-
tau
public static double tau(double julianDate) -
properMotionsToCartesian
public static Vector3d properMotionsToCartesian(double muAlphaStar, double muDelta, double radvel, double ra, double dec, double distPc, Vector3d out) Converts proper motions + radial velocity into a cartesian vector. See this article.- Parameters:
muAlphaStar
- Mu alpha star, in mas/yr.muDelta
- Mu delta, in mas/yr.radvel
- Radial velocity in km/s.ra
- Right ascension in radians.dec
- Declination in radians.distPc
- Distance in parsecs to the star.- Returns:
- The proper motion vector in internal_units/year.
-
apparentToAbsoluteMagnitude
public static double apparentToAbsoluteMagnitude(double distPc, double appMag) Converts an apparent magnitude to an absolute magnitude given the distance in parsecs.- Parameters:
distPc
- The distance to the star in parsecs.appMag
- The apparent magnitude.- Returns:
- The absolute magnitude.
-