Class FootprintOverlapDetector
- All Implemented Interfaces:
EventDetector
Field Of View.
This detector is a mix between to FieldOfViewDetector and GeographicZoneDetector. Similar to the first detector above, it triggers events
related to entry/exit of targets in a Field Of View, taking attitude into account.
Similar to the second detector above, its target is an entire geographic region
(which can even be split in several non-connected patches and can have holes).
This detector is typically used for ground observation missions with agile satellites than can look away from nadir.
The default implementation behavior is to continue
propagation at FOV entry and to stop propagation
at FOV exit. This can be changed by calling
AbstractDetector.withHandler(EventHandler) after construction.
- Since:
- 7.1
- Author:
- Luc Maisonobe
- See Also:
-
Field Summary
Fields inherited from class org.orekit.propagation.events.AbstractDetector
DEFAULT_MAX_CHECK, DEFAULT_MAX_ITER, DEFAULT_THRESHOLD -
Constructor Summary
ConstructorsModifierConstructorDescriptionFootprintOverlapDetector(FieldOfView fov, OneAxisEllipsoid body, SphericalPolygonsSet zone, double samplingStep) Build a new instance.protectedFootprintOverlapDetector(EventDetectionSettings detectionSettings, EventHandler handler, FieldOfView fov, OneAxisEllipsoid body, SphericalPolygonsSet zone, double samplingStep, List<org.orekit.propagation.events.FootprintOverlapDetector.SamplingPoint> sampledZone) Protected constructor with full parameters. -
Method Summary
Modifier and TypeMethodDescriptionprotected FootprintOverlapDetectorcreate(EventDetectionSettings detectionSettings, EventHandler newHandler) Build a new instance.doubleg(SpacecraftState s) Compute the value of the switching function.getBody()Get the body on which the geographic zone is defined.getFOV()Get the Field Of View.getZone()Get the geographic zone triggering the events.Methods inherited from class org.orekit.propagation.events.AbstractDetector
checkIfForward, getDetectionSettings, getEventFunction, getHandler, init, isForward, withDetectionSettings, withHandler, withMaxCheck, withMaxCheck, withMaxIter, withThresholdMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.propagation.events.EventDetector
finish, getMaxCheckInterval, getMaxIterationCount, getThreshold, reset
-
Constructor Details
-
FootprintOverlapDetector
public FootprintOverlapDetector(FieldOfView fov, OneAxisEllipsoid body, SphericalPolygonsSet zone, double samplingStep) Build a new instance.The maximal interval between distance to FOV boundary checks should be smaller than the half duration of the minimal pass to handle, otherwise some short passes could be missed.
- Parameters:
fov- sensor field of viewbody- body on which the geographic zone is definedzone- geographic zone to considersamplingStep- linear step used for sampling the geographic zone (in meters)- Since:
- 10.1
-
FootprintOverlapDetector
protected FootprintOverlapDetector(EventDetectionSettings detectionSettings, EventHandler handler, FieldOfView fov, OneAxisEllipsoid body, SphericalPolygonsSet zone, double samplingStep, List<org.orekit.propagation.events.FootprintOverlapDetector.SamplingPoint> sampledZone) Protected constructor with full parameters.This constructor is not public as users are expected to use the builder API with the various
withXxx()methods to set up the instance in a readable manner without using a huge amount of parameters.- Parameters:
detectionSettings- event detection settingshandler- event handler to call at event occurrencesfov- sensor field of viewbody- body on which the geographic zone is definedzone- geographic zone to considersamplingStep- linear step used for sampling the geographic zone (in meters)sampledZone- sampling of the geographic zone- Since:
- 13.0
-
-
Method Details
-
create
protected FootprintOverlapDetector create(EventDetectionSettings detectionSettings, EventHandler newHandler) Build a new instance.- Specified by:
createin classAbstractDetector<FootprintOverlapDetector>- Parameters:
detectionSettings- detection settingsnewHandler- event handler to call at event occurrences- Returns:
- a new instance of the appropriate sub-type
-
getZone
Get the geographic zone triggering the events.The zone is mapped on the unit sphere
- Returns:
- geographic zone triggering the events
-
getFOV
Get the Field Of View.- Returns:
- Field Of View
- Since:
- 10.1
-
getBody
Get the body on which the geographic zone is defined.- Returns:
- body on which the geographic zone is defined
-
g
Compute the value of the switching function. This function must be continuous (at least in its roots neighborhood), as the integrator will need to find its roots to locate the events.The g function value is the minimum offset among the region points with respect to the Field Of View boundary. It is positive if all region points are outside of the Field Of View, and negative if at least some of the region points are inside of the Field Of View. The minimum is computed by sampling the region, considering only the points for which the spacecraft is above the horizon. The accuracy of the detection depends on the linear sampling step set at detector construction. If the spacecraft is below horizon for all region points, an arbitrary positive value is returned.
As per the previous definition, when the region enters the Field Of View, a decreasing event is generated, and when the region leaves the Field Of View, an increasing event is generated.
- Parameters:
s- the current state information: date, kinematics, attitude- Returns:
- value of the switching function
-