public class GeodeticPoint extends Object implements Serializable
此类的实例保证是不可变的。
BodyShape
, FieldGeodeticPoint
, Serialized Form
Modifier and Type | Field and Description |
---|---|
static GeodeticPoint |
NORTH_POLE
北极。
|
static GeodeticPoint |
SOUTH_POLE
南极。
|
Constructor and Description |
---|
GeodeticPoint(double latitude, double longitude, double altitude)
构建一个新实例。
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object object) |
double |
getAltitude()
获取海拔。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getEast()
获取点向东的方向,以父形状参考系表示。
|
double |
getLatitude()
获取纬度。
|
double |
getLongitude()
获取经度。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getNadir()
获取点下方的方向,以父形状参考系表示。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getNorth()
获取点向北的方向,以父形状参考系表示。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getSouth()
获取点向南的方向,以父形状参考系表示。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getWest()
获取点向西的方向,以父形状参考系表示。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getZenith()
获取点上方的方向,以父形状参考系表示。
|
int |
hashCode() |
String |
toString() |
public static final GeodeticPoint NORTH_POLE
public static final GeodeticPoint SOUTH_POLE
public GeodeticPoint(double latitude, double longitude, double altitude)
latitude
- 点的纬度(弧度)
longitude
- 点的经度(弧度)
altitude
- 点的海拔(米)
public double getLatitude()
public double getLongitude()
public double getAltitude()
public org.hipparchus.geometry.euclidean.threed.Vector3D getZenith()
天顶方向被定义为与本地水平面垂直的方向。
getNadir()
public org.hipparchus.geometry.euclidean.threed.Vector3D getNadir()
天底方向是天顶方向的相反方向。
getZenith()
public org.hipparchus.geometry.euclidean.threed.Vector3D getNorth()
北方向在水平平面中定义(垂直于天顶方向),并沿着当地子午线。
getSouth()
public org.hipparchus.geometry.euclidean.threed.Vector3D getSouth()
南方向是北方向的相反方向。
getNorth()
public org.hipparchus.geometry.euclidean.threed.Vector3D getEast()
东方向在水平平面中定义,以便完成直角三角形(东、北、天顶)。
getWest()
public org.hipparchus.geometry.euclidean.threed.Vector3D getWest()
西方向是东方向的相反方向。
getEast()
Copyright © 2002-2023 CS GROUP. All rights reserved.