|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use GeodeticPoint | |
|---|---|
| fr.cnes.sirius.patrius.projections | |
| org.orekit.attitudes | This package provides classes to represent simple attitudes. |
| org.orekit.bodies | This package provides interface to represent the position and geometry of space objects such as stars, planets or asteroids. |
| org.orekit.frames | This package provides classes to handle frames and transforms between them. |
| org.orekit.models.earth | This package provides models that simulate certain physical phenomena experienced in the atmosphere of the earth. |
| Uses of GeodeticPoint in fr.cnes.sirius.patrius.projections |
|---|
| Methods in fr.cnes.sirius.patrius.projections that return GeodeticPoint | |
|---|---|
GeodeticPoint |
Mercator.applyInverseTo(double x,
double y)
Inverse projection. |
GeodeticPoint |
GeneralizedFlamsteedSamson.applyInverseTo(double x,
double y)
Inverse projection. |
GeodeticPoint |
IdentityProjection.applyInverseTo(double x,
double y)
Inverse projection. |
GeodeticPoint |
IProjection.applyInverseTo(double x,
double y)
Inverse projection. |
GeodeticPoint |
Mercator.applyInverseTo(double x,
double y,
double alt)
This is the Two standard parallel Mercator Projection model. |
GeodeticPoint |
GeneralizedFlamsteedSamson.applyInverseTo(double x,
double y,
double alt)
This is the Two standard parallel Mercator Projection model. |
GeodeticPoint |
IdentityProjection.applyInverseTo(double x,
double y,
double alt)
This is the Two standard parallel Mercator Projection model. |
GeodeticPoint |
IProjection.applyInverseTo(double x,
double y,
double alt)
This is the Two standard parallel Mercator Projection model. |
GeodeticPoint |
ProjectionEllipsoid.computePointAlongLoxodrome(GeodeticPoint p1,
double distance,
double azimuth)
Compute the point coordinates from an origin point, an azimuth and a distance along the rhumb line (Loxodrome). |
GeodeticPoint |
ProjectionEllipsoid.computePointAlongOrthodrome(GeodeticPoint p1,
double distance,
double azimuthDirection)
Compute a geodetic point along orthodrome, from a point p1, at a distance d,
in a direction defined from an azimuth. |
GeodeticPoint |
AbstractProjection.getPivotPoint()
Get the projection pivot point. |
| Methods in fr.cnes.sirius.patrius.projections that return types with arguments of type GeodeticPoint | |
|---|---|
List<GeodeticPoint> |
AbstractProjection.applyInverseTo(double[] x,
double[] y)
Inversion transformation of arrays of x and y projected coordinates. |
List<GeodeticPoint> |
AbstractProjection.applyInverseTo(List<Vector2D> list)
Inverse Projects a list of Vector2D (projected points) with a given projection. |
List<GeodeticPoint> |
ProjectionEllipsoid.discretizeGreatCircle(GeodeticPoint from,
GeodeticPoint to,
double maxLength)
Discretize a great circle into N segments, between two points. |
List<GeodeticPoint> |
ProjectionEllipsoid.discretizeRhumbLine(GeodeticPoint from,
GeodeticPoint to,
double maxLength)
Discretize a rhumb line into N segments, between two points. |
| Methods in fr.cnes.sirius.patrius.projections with parameters of type GeodeticPoint | |
|---|---|
Vector2D |
Mercator.applyTo(GeodeticPoint geodeticPoint)
Returns Easting value and Northing value in meters from geodetic coordinates. |
Vector2D |
GeneralizedFlamsteedSamson.applyTo(GeodeticPoint geodeticPoint)
Returns Easting value and Northing value in meters from geodetic coordinates. |
Vector2D |
IdentityProjection.applyTo(GeodeticPoint geoPoint)
Returns Easting value and Northing value in meters from geodetic coordinates. |
Vector2D |
IProjection.applyTo(GeodeticPoint geodeticPoint)
Returns Easting value and Northing value in meters from geodetic coordinates. |
List<Vector2D> |
AbstractProjection.applyToAndDiscretize(GeodeticPoint from,
GeodeticPoint to,
double maxLength,
boolean lastIncluded)
Project two points, then discretize 2D the line. |
boolean |
Mercator.canMap(GeodeticPoint coordinates)
Returns a boolean depending if the geodetic point can be map with the selected projection method. |
boolean |
IdentityProjection.canMap(GeodeticPoint coordinates)
Returns a boolean depending if the geodetic point can be map with the selected projection method. |
boolean |
IProjection.canMap(GeodeticPoint geodeticPoint)
Returns a boolean depending if the geodetic point can be map with the selected projection method. |
double |
ProjectionEllipsoid.computeBearing(GeodeticPoint gv1,
GeodeticPoint gv2)
Compute the bearing (azimuth) between two geodetic Points. |
double |
ProjectionEllipsoid.computeLoxodromicDistance(GeodeticPoint p1,
GeodeticPoint p2)
Loxodromic distance between P1 and P2.This is the distance of constant bearing (or along a line in Mercator). |
double |
ProjectionEllipsoid.computeOrthodromicDistance(GeodeticPoint p1,
GeodeticPoint p2)
Compute the orthodromic distance between two points. |
GeodeticPoint |
ProjectionEllipsoid.computePointAlongLoxodrome(GeodeticPoint p1,
double distance,
double azimuth)
Compute the point coordinates from an origin point, an azimuth and a distance along the rhumb line (Loxodrome). |
GeodeticPoint |
ProjectionEllipsoid.computePointAlongOrthodrome(GeodeticPoint p1,
double distance,
double azimuthDirection)
Compute a geodetic point along orthodrome, from a point p1, at a distance d,
in a direction defined from an azimuth. |
double |
ProjectionEllipsoid.computeSphericalAzimuth(GeodeticPoint p1,
GeodeticPoint p2)
Compute the spherical azimuth (clock wise) between two points. |
List<GeodeticPoint> |
ProjectionEllipsoid.discretizeGreatCircle(GeodeticPoint from,
GeodeticPoint to,
double maxLength)
Discretize a great circle into N segments, between two points. |
List<GeodeticPoint> |
ProjectionEllipsoid.discretizeRhumbLine(GeodeticPoint from,
GeodeticPoint to,
double maxLength)
Discretize a rhumb line into N segments, between two points. |
| Method parameters in fr.cnes.sirius.patrius.projections with type arguments of type GeodeticPoint | |
|---|---|
List<Vector2D> |
AbstractProjection.applyTo(List<GeodeticPoint> list)
Project a list of GeodeticPoints with a given projection. |
List<Vector2D> |
AbstractProjection.discretizeAndApplyTo(List<GeodeticPoint> list,
EnumLineProperty ltype,
double maxLength)
Discretizes a polygon conforming to a line property directive, and a maximum length of discretization. |
List<Vector2D> |
AbstractProjection.discretizeCircleAndApplyTo(List<GeodeticPoint> list,
double maxLength)
Discretize following great circle lines between vertices of polygon and project obtained points. |
List<Vector2D> |
AbstractProjection.discretizeRhumbAndApplyTo(List<GeodeticPoint> list,
double maxLength)
Project a rhumb line polygon, with the given projection. |
| Constructors in fr.cnes.sirius.patrius.projections with parameters of type GeodeticPoint | |
|---|---|
AbstractProjection(GeodeticPoint pivotIn,
ProjectionEllipsoid shape)
Constructor. |
|
GeneralizedFlamsteedSamson(GeodeticPoint pivotPoint,
ProjectionEllipsoid shape,
double cap)
Constructor : Mercator constructor is used with : a pivot point a reference shape a cap parameter centered set to true parameter series set to false indicating that inverse transformation is done with iterations : slower but more accurate |
|
Mercator(GeodeticPoint pivotIn,
ProjectionEllipsoid shape,
double azimuthIn,
boolean centeredIn,
boolean seriesIn)
Complete constructor. |
|
| Uses of GeodeticPoint in org.orekit.attitudes |
|---|
| Constructors in org.orekit.attitudes with parameters of type GeodeticPoint | |
|---|---|
TargetGroundPointing(BodyShape shape,
GeodeticPoint targetGeo)
Creates a new instance from body shape and target expressed in geodetic coordinates. |
|
TargetPointing(GeodeticPoint targetGeo,
BodyShape shape)
Creates a new instance from body shape and target expressed in geodetic coordinates. |
|
| Uses of GeodeticPoint in org.orekit.bodies |
|---|
| Methods in org.orekit.bodies that return GeodeticPoint | |
|---|---|
GeodeticPoint |
BodyShape.getIntersectionPoint(Line line,
Vector3D close,
Frame frame,
AbsoluteDate date)
Get the intersection point of a line with the surface of the body. |
GeodeticPoint |
ExtendedOneAxisEllipsoid.getIntersectionPoint(Line line,
Vector3D close,
Frame frame,
AbsoluteDate date)
|
GeodeticPoint |
OneAxisEllipsoid.getIntersectionPoint(Line line,
Vector3D close,
Frame frame,
AbsoluteDate date)
Get the intersection point of a line with the surface of the body. |
GeodeticPoint |
BodyShape.transform(Vector3D point,
Frame frame,
AbsoluteDate date)
Transform a cartesian point to a surface-relative point. |
GeodeticPoint |
ExtendedOneAxisEllipsoid.transform(Vector3D point,
Frame frame,
AbsoluteDate date)
|
GeodeticPoint |
OneAxisEllipsoid.transform(Vector3D point,
Frame frame,
AbsoluteDate date)
Transform a cartesian point to a surface-relative point. |
GeodeticPoint |
OneAxisEllipsoid.transformAndComputeJacobian(Vector3D point,
Frame frame,
AbsoluteDate date,
double[][] jacobian)
Transform a cartesian point to a surface-relative point and compute the jacobian of the transformation. |
| Methods in org.orekit.bodies with parameters of type GeodeticPoint | |
|---|---|
Vector3D |
BodyShape.transform(GeodeticPoint point)
Transform a surface-relative point to a cartesian point. |
Vector3D |
ExtendedOneAxisEllipsoid.transform(GeodeticPoint point)
|
Vector3D |
OneAxisEllipsoid.transform(GeodeticPoint point)
Transform a surface-relative point to a cartesian point. |
Vector3D |
OneAxisEllipsoid.transformAndComputeJacobian(GeodeticPoint geodeticPoint,
double[][] jacobian)
Transform a surface-relative point to a cartesian point and compute the jacobian of the transformation. |
| Uses of GeodeticPoint in org.orekit.frames |
|---|
| Methods in org.orekit.frames that return GeodeticPoint | |
|---|---|
GeodeticPoint |
TopocentricFrame.computeLimitVisibilityPoint(double radius,
double azimuth,
double elevation)
Compute the limit visibility point for a satellite in a given direction. |
GeodeticPoint |
TopocentricFrame.getPoint()
Get the surface point defining the origin of the frame. |
GeodeticPoint |
TopocentricFrame.pointAtDistance(double azimuth,
double elevation,
double distance)
Compute the point observed from the station at some specified distance. |
| Constructors in org.orekit.frames with parameters of type GeodeticPoint | |
|---|---|
TopocentricFrame(BodyShape bodyParentShape,
GeodeticPoint geodeticPoint,
double frameOrientation,
String name)
This constructor builds a topocentric frame which Z-axis is the zenith. |
|
TopocentricFrame(BodyShape bodyParentShape,
GeodeticPoint geodeticPoint,
String name)
This constructor builds an east oriented topocentric frame. |
|
| Uses of GeodeticPoint in org.orekit.models.earth |
|---|
| Methods in org.orekit.models.earth with parameters of type GeodeticPoint | |
|---|---|
GeoMagneticElements |
GeoMagneticField.calculateField(GeodeticPoint gp)
Calculate the magnetic field at the specified geodetic point identified by geodetic objet. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||