Skip to content
Snippets Groups Projects
Commit 34c47df7 authored by sesteves's avatar sesteves
Browse files

minor

parent 6b023157
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ package org.orekit.rugged.atmosphericrefraction;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.raster.Tile;
import org.orekit.rugged.utils.NormalizedGeodeticPoint;
......@@ -27,6 +28,6 @@ import org.orekit.rugged.utils.NormalizedGeodeticPoint;
*/
public interface AtmosphericRefraction {
NormalizedGeodeticPoint getPointOnGround(Vector3D pos, Vector3D los, Vector3D zenith, double altitude, Tile tile);
NormalizedGeodeticPoint getPointOnGround(Vector3D pos, Vector3D los, Vector3D zenith, double altitude, Tile tile) throws RuggedException;
}
......@@ -16,7 +16,6 @@
*/
package org.orekit.rugged.atmosphericrefraction;
import com.sun.org.apache.xpath.internal.operations.Mult;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.apache.commons.math3.util.FastMath;
import org.orekit.bodies.OneAxisEllipsoid;
......@@ -29,7 +28,10 @@ import org.orekit.rugged.utils.NormalizedGeodeticPoint;
import org.orekit.utils.Constants;
import org.orekit.utils.IERSConventions;
import java.util.*;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
/**
* Multi layer model for atmospheric refraction.
......
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