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

Improved javadoc.

parent d5076af5
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,6 @@ import org.orekit.rugged.linesensor.LineSensor;
import org.orekit.rugged.linesensor.SensorMeanPlaneCrossing;
import org.orekit.rugged.linesensor.SensorPixel;
import org.orekit.rugged.linesensor.SensorPixelCrossing;
import org.orekit.rugged.refraction.AtmosphericRefraction;
import org.orekit.rugged.utils.DSGenerator;
import org.orekit.rugged.utils.ExtendedEllipsoid;
import org.orekit.rugged.utils.NormalizedGeodeticPoint;
......
......@@ -25,12 +25,13 @@ import org.orekit.rugged.utils.NormalizedGeodeticPoint;
/**
* Interface for atmospheric refraction model.
* @author Sergio Esteves
* @since 2.0
*/
public interface AtmosphericRefraction {
/** Apply correction to the intersected point with an atmospheric refraction model.
* @param satPos satellite position
* @param satLos satellite line of sight
* @param satPos satellite position, in <em>body frame</em>
* @param satLos satellite line of sight, in <em>body frame</em>
* @param rawIntersection intersection point before refraction correction
* @param algorithm intersection algorithm
* @return corrected point with the effect of atmospheric refraction
......@@ -39,7 +40,7 @@ public interface AtmosphericRefraction {
* {@link IntersectionAlgorithm#refineIntersection(ExtendedEllipsoid, Vector3D, Vector3D, NormalizedGeodeticPoint)}
*/
NormalizedGeodeticPoint applyCorrection(Vector3D satPos, Vector3D satLos, NormalizedGeodeticPoint rawIntersection,
IntersectionAlgorithm algorithm)
IntersectionAlgorithm algorithm)
throws RuggedException;
}
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