Uses of Class
org.orekit.time.DateTimeComponents
-
Packages that use DateTimeComponents Package Description org.orekit.files.ccsds.definitions This package contains definitions for CCSDS objects (frames, time systems...).org.orekit.files.rinex.section This package contains class managing the sections in RINEX files.org.orekit.models.earth.troposphere This package provides models that simulate the impact of the troposphere.org.orekit.time This independent package provides classes to handle epochs, time scales, and to compare instants together. -
-
Uses of DateTimeComponents in org.orekit.files.ccsds.definitions
Methods in org.orekit.files.ccsds.definitions that return DateTimeComponents Modifier and Type Method Description DateTimeComponents
TimeConverter. components(AbsoluteDate date)
Generate calendar components. -
Uses of DateTimeComponents in org.orekit.files.rinex.section
Methods in org.orekit.files.rinex.section that return DateTimeComponents Modifier and Type Method Description DateTimeComponents
RinexBaseHeader. getCreationDateComponents()
Getter for the creation date of the file as a string.Methods in org.orekit.files.rinex.section with parameters of type DateTimeComponents Modifier and Type Method Description void
RinexBaseHeader. setCreationDateComponents(DateTimeComponents creationDateComponents)
Setter for the creation date as a string. -
Uses of DateTimeComponents in org.orekit.models.earth.troposphere
Methods in org.orekit.models.earth.troposphere with parameters of type DateTimeComponents Modifier and Type Method Description void
ViennaModelCoefficientsLoader. loadViennaCoefficients(DateTimeComponents dateTimeComponents)
Load the data for a given day. -
Uses of DateTimeComponents in org.orekit.time
Fields in org.orekit.time declared as DateTimeComponents Modifier and Type Field Description static DateTimeComponents
DateTimeComponents. JULIAN_EPOCH
The Julian Epoch.Methods in org.orekit.time that return DateTimeComponents Modifier and Type Method Description DateTimeComponents
AbsoluteDate. getComponents(int minutesFromUTC)
Split the instance into date/time components for a local time.DateTimeComponents
AbsoluteDate. getComponents(int minutesFromUTC, TimeScale utc)
Split the instance into date/time components for a local time.DateTimeComponents
AbsoluteDate. getComponents(TimeZone timeZone)
Split the instance into date/time components for a time zone.DateTimeComponents
AbsoluteDate. getComponents(TimeZone timeZone, TimeScale utc)
Split the instance into date/time components for a time zone.DateTimeComponents
AbsoluteDate. getComponents(TimeScale timeScale)
Split the instance into date/time components.DateTimeComponents
FieldAbsoluteDate. getComponents(int minutesFromUTC)
Split the instance into date/time components for a local time.DateTimeComponents
FieldAbsoluteDate. getComponents(int minutesFromUTC, TimeScale utc)
Split the instance into date/time components for a local time.DateTimeComponents
FieldAbsoluteDate. getComponents(TimeZone timeZone)
Split the instance into date/time components for a time zone.DateTimeComponents
FieldAbsoluteDate. getComponents(TimeZone timeZone, TimeScale utc)
Split the instance into date/time components for a time zone.DateTimeComponents
FieldAbsoluteDate. getComponents(TimeScale timeScale)
Split the instance into date/time components.static DateTimeComponents
DateTimeComponents. parseDateTime(String string)
Parse a string in ISO-8601 format to build a date/time.DateTimeComponents
DateTimeComponents. roundIfNeeded(int minuteDuration, int fractionDigits)
Round this date-time to the given precision if needed to prevent rounding up to an invalid seconds number.Methods in org.orekit.time with parameters of type DateTimeComponents Modifier and Type Method Description int
DateTimeComponents. compareTo(DateTimeComponents other)
double
DateTimeComponents. offsetFrom(DateTimeComponents dateTime)
Compute the seconds offset between two instances.long
DateTimeComponents. offsetFrom(DateTimeComponents dateTime, TimeUnit timeUnit)
Compute the seconds offset between two instances.Constructors in org.orekit.time with parameters of type DateTimeComponents Constructor Description AbsoluteDate(DateTimeComponents location, TimeScale timeScale)
Build an instance from a location in atime scale
.DateTimeComponents(DateTimeComponents reference, double offset)
Build an instance from a seconds offset with respect to another one.DateTimeComponents(DateTimeComponents reference, long offset, TimeUnit timeUnit)
Build an instance from a seconds offset with respect to another one.FieldAbsoluteDate(Field<T> field, DateTimeComponents location, TimeScale timeScale)
Build an instance from a location in atime scale
.
-