Skip to content
Snippets Groups Projects
Commit 1f5b79f6 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Added getMinDate and getMaxDate to rugged API.

parent 13177b62
No related branches found
No related tags found
No related merge requests found
...@@ -362,6 +362,20 @@ public class Rugged { ...@@ -362,6 +362,20 @@ public class Rugged {
return sensors.values(); return sensors.values();
} }
/** Get the start of search time span.
* @return start of search time span
*/
public AbsoluteDate getMinDate() {
return scToBody.getMinDate();
}
/** Get the end of search time span.
* @return end of search time span
*/
public AbsoluteDate getMaxDate() {
return scToBody.getMaxDate();
}
/** Select inertial frame. /** Select inertial frame.
* @param inertialFrameId inertial frame identifier * @param inertialFrameId inertial frame identifier
* @return inertial frame * @return inertial frame
......
...@@ -139,6 +139,20 @@ public class SpacecraftToObservedBody { ...@@ -139,6 +139,20 @@ public class SpacecraftToObservedBody {
} }
} }
/** Get the start of search time span.
* @return start of search time span
*/
public AbsoluteDate getMinDate() {
return minDate;
}
/** Get the end of search time span.
* @return end of search time span
*/
public AbsoluteDate getMaxDate() {
return maxDate;
}
/** Get transform from spacecraft to inertial frame. /** Get transform from spacecraft to inertial frame.
* @param date date of the transform * @param date date of the transform
* @return transform from spacecraft to inertial frame * @return transform from spacecraft to inertial frame
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment