Class Segment
java.lang.Object
org.orekit.models.earth.ionosphere.nequick.Segment
Performs the computation of the coordinates along the integration path.
- Since:
- 13.0
- Author:
- Bryan Cazabonne
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubleGet the integration step.intGet number of points.getPoint(int index) Get point along the ray.
-
Constructor Details
-
Segment
Constructor.- Parameters:
n- number of intervals for integration (2 points per interval, hence 2n points will be generated)ray- ray-perigee parameterss1- lower boundary of integrations2- upper boundary for integration
-
-
Method Details
-
getPoint
Get point along the ray.- Parameters:
index- point index (between O included andgetNbPoints()excluded)- Returns:
- point on ray
- Since:
- 13.0
-
getNbPoints
public int getNbPoints()Get number of points.Note there are 2 points per interval, so
indexmust be between 0 (included) and 2n (excluded) for a segment built withnintervals- Returns:
- number of points
-
getInterval
public double getInterval()Get the integration step.- Returns:
- the integration step in meters
-