Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit
Rugged
Commits
d4c7f865
Commit
d4c7f865
authored
8 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Improved javadoc.
parent
d5076af5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/orekit/rugged/api/Rugged.java
+0
-1
0 additions, 1 deletion
src/main/java/org/orekit/rugged/api/Rugged.java
src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java
+4
-3
4 additions, 3 deletions
...a/org/orekit/rugged/refraction/AtmosphericRefraction.java
with
4 additions
and
4 deletions
src/main/java/org/orekit/rugged/api/Rugged.java
+
0
−
1
View file @
d4c7f865
...
@@ -55,7 +55,6 @@ import org.orekit.rugged.linesensor.LineSensor;
...
@@ -55,7 +55,6 @@ import org.orekit.rugged.linesensor.LineSensor;
import
org.orekit.rugged.linesensor.SensorMeanPlaneCrossing
;
import
org.orekit.rugged.linesensor.SensorMeanPlaneCrossing
;
import
org.orekit.rugged.linesensor.SensorPixel
;
import
org.orekit.rugged.linesensor.SensorPixel
;
import
org.orekit.rugged.linesensor.SensorPixelCrossing
;
import
org.orekit.rugged.linesensor.SensorPixelCrossing
;
import
org.orekit.rugged.refraction.AtmosphericRefraction
;
import
org.orekit.rugged.utils.DSGenerator
;
import
org.orekit.rugged.utils.DSGenerator
;
import
org.orekit.rugged.utils.ExtendedEllipsoid
;
import
org.orekit.rugged.utils.ExtendedEllipsoid
;
import
org.orekit.rugged.utils.NormalizedGeodeticPoint
;
import
org.orekit.rugged.utils.NormalizedGeodeticPoint
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/orekit/rugged/refraction/AtmosphericRefraction.java
+
4
−
3
View file @
d4c7f865
...
@@ -25,12 +25,13 @@ import org.orekit.rugged.utils.NormalizedGeodeticPoint;
...
@@ -25,12 +25,13 @@ import org.orekit.rugged.utils.NormalizedGeodeticPoint;
/**
/**
* Interface for atmospheric refraction model.
* Interface for atmospheric refraction model.
* @author Sergio Esteves
* @author Sergio Esteves
* @since 2.0
*/
*/
public
interface
AtmosphericRefraction
{
public
interface
AtmosphericRefraction
{
/** Apply correction to the intersected point with an atmospheric refraction model.
/** Apply correction to the intersected point with an atmospheric refraction model.
* @param satPos satellite position
* @param satPos satellite position
, in <em>body frame</em>
* @param satLos satellite line of sight
* @param satLos satellite line of sight
, in <em>body frame</em>
* @param rawIntersection intersection point before refraction correction
* @param rawIntersection intersection point before refraction correction
* @param algorithm intersection algorithm
* @param algorithm intersection algorithm
* @return corrected point with the effect of atmospheric refraction
* @return corrected point with the effect of atmospheric refraction
...
@@ -39,7 +40,7 @@ public interface AtmosphericRefraction {
...
@@ -39,7 +40,7 @@ public interface AtmosphericRefraction {
* {@link IntersectionAlgorithm#refineIntersection(ExtendedEllipsoid, Vector3D, Vector3D, NormalizedGeodeticPoint)}
* {@link IntersectionAlgorithm#refineIntersection(ExtendedEllipsoid, Vector3D, Vector3D, NormalizedGeodeticPoint)}
*/
*/
NormalizedGeodeticPoint
applyCorrection
(
Vector3D
satPos
,
Vector3D
satLos
,
NormalizedGeodeticPoint
rawIntersection
,
NormalizedGeodeticPoint
applyCorrection
(
Vector3D
satPos
,
Vector3D
satLos
,
NormalizedGeodeticPoint
rawIntersection
,
IntersectionAlgorithm
algorithm
)
IntersectionAlgorithm
algorithm
)
throws
RuggedException
;
throws
RuggedException
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment