Constructor
new Ellipsoid(equatorialSize, polarSize)
Name | Type | Description |
---|---|---|
equatorialSize | number | Equatorial ellipsoid size. |
polarSize | number | Polar ellipsoid size. |
- Source
Methods
cartesianToLonLat(cart) → {LonLat}
Converts 3d cartesian coordinates to geodetic
Name | Type | Description |
---|---|---|
cart | Vec3 | Cartesian coordinates |
- Source
- Geodetic coordinates
- Type:
- LonLat
cartesianToLonLatRes(cart, res) → {LonLat}
Converts 3d cartesian coordinates to geodetic
Name | Type | Description |
---|---|---|
cart | Vec3 | Cartesian coordinates |
res | LonLat | Link geodetic coordinates variable |
- Source
- Geodetic coordinates
- Type:
- LonLat
direct(lonLat, azimuth, dist)
Calculates the destination point given start point lat / lon, azimuth(deg) and distance (m). Source: http://movable-type.co.uk/scripts/latlong-vincenty-direct.html and optimized / cleaned up by Mathias Bynens http://mathiasbynens.be/ Based on the Vincenty direct formula by T. Vincenty, “Direct and Inverse Solutions of Geodesics on the Ellipsoid with application of nested equations”, Survey Review, vol XXII no 176, 1975 http://www.ngs.noaa.gov/PUBS_LIB/inverse.pdf
Name | Type | Description |
---|---|---|
lonLat | LonLat | Origin coordinates |
azimuth | number | View azimuth in degrees |
dist | number | Distance to the destination point coordinates in meters |
- Source
geodeticToCartesian(lon, lat, height, res) → {Vec3}
Gets cartesian ECEF 3d coordinates from geodetic coordinates.
Name | Type | Default | Description |
---|---|---|---|
lon | Number | Longitude. | |
lat | Number | Latitude. | |
height | Number | 0 | Height. |
res | Vec3 | Output result variable. |
- Source
- Type:
- Vec3
getBearingDestination(lonLat1, bearing, distance) → {LonLat}
Name | Type | Default | Description |
---|---|---|---|
lonLat1 | |||
bearing | 0 | ||
distance | 0 |
- Source
- To Do
- this is not precise function, needs to be replaced or removed
- Type:
- LonLat
getEquatorialSize() → {number}
Gets ellipsoid equatorial size.
- Source
- Type:
- number
getGreatCircleDestination(lonLat, azimuth, dist) → {LonLat}
Calculates the destination point given start point lat / lon, azimuth(deg) and distance (m). Source: http://movable-type.co.uk/scripts/latlong-vincenty-direct.html and optimized / cleaned up by Mathias Bynens http://mathiasbynens.be/ Based on the Vincenty direct formula by T. Vincenty, “Direct and Inverse Solutions of Geodesics on the Ellipsoid with application of nested equations”, Survey Review, vol XXII no 176, 1975 http://www.ngs.noaa.gov/PUBS_LIB/inverse.pdf
Name | Type | Description |
---|---|---|
lonLat | LonLat | Origin coordinates |
azimuth | number | View azimuth in degrees |
dist | number | Distance to the destination point coordinates in meters |
- Source
- Destination point coordinates
- Type:
- LonLat
getIntermediatePointOnGreatCircle(lonLat1, lonLat2, fraction) → {LonLat}
Returns the point at given fraction between two points on the great circle.
Name | Type | Description |
---|---|---|
lonLat1 | LonLat | Longitude/Latitude of source point. |
lonLat2 | LonLat | Longitude/Latitude of destination point. |
fraction | number | Fraction between the two points (0 = source point, 1 = destination point). |
- Source
Intermediate point between points.
- Type:
- LonLat
getPolarSize() → {number}
Gets ellipsoid polar size.
- Source
- Type:
- number
getSurfaceNormal3v(coord) → {Vec3}
Gets ellipsoid surface normal.
Name | Type | Description |
---|---|---|
coord | Vec3 | Spatial coordinates. |
- Source
- Type:
- Vec3
hitRay(origin, direction) → {Vec3}
Returns cartesian coordinates of the intersection of a ray and an ellipsoid. If the ray doesn't hit ellipsoid returns null.
- Source
- Type:
- Vec3
inverse(lonLat1, lonLat2) → {IInverseResult}
Returns inverse Geodesic solution for two points
Name | Type | Description |
---|---|---|
lonLat1 | LonLat | start coordinates point |
lonLat2 | LonLat | end coordinates point |
- Source
- Contains distance, initialAzimuth, and finalAzimuth values
- Type:
- IInverseResult
lonLatToCartesian(lonlat) → {Vec3}
Calculate cartesian coordinates by its ECEF geodetic coordinates.
Name | Type | Description |
---|---|---|
lonlat | LonLat | Geodetic coordinates. |
- Source
- Type:
- Vec3
lonLatToCartesianRes(lonlat, res) → {Vec3}
Calculate cartesian coordinates by its ECEF geodetic coordinates.
- Source
- Type:
- Vec3
projToSurface(p) → {LonLat}
Gets Wgs84 geodetic coordinates from cartesian ECEF.
Name | Type | Description |
---|---|---|
p | Vec3 | Cartesian coordinates. |
- Source
- Type:
- LonLat
rhumbDistanceTo(startLonLat, endLonLat) → {number}
Returns the distance travelling from ‘this’ point to destination point along a rhumb line.
- Source
Distance in m between this point and destination point (same units as radius).
- Type:
- number
(static) getBearing(lonLat1, lonLat2) → {number}
REMOVE ASAP after
Name | Type | Description |
---|---|---|
lonLat1 | ||
lonLat2 |
- Source
- Type:
- number
(static) getIntermediatePointOnGreatCircle(lonLat1, lonLat2, fraction) → {LonLat}
Returns the point at given fraction between two points on the great circle.
Name | Type | Description |
---|---|---|
lonLat1 | LonLat | Longitude/Latitude of source point. |
lonLat2 | LonLat | Longitude/Latitude of destination point. |
fraction | number | Fraction between the two points (0 = source point, 1 = destination point). |
- Source
Intermediate point between points.
- Type:
- LonLat