You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
532 B

import {
geodeticToGeocentric,
geocentricToGeodetic
} from '../datumUtils';
export function init() {
this.name = 'geocent';
}
export function forward(p) {
var point = geodeticToGeocentric(p, this.es, this.a);
return point;
}
export function inverse(p) {
var point = geocentricToGeodetic(p, this.es, this.a, this.b);
return point;
}
export var names = ["Geocentric", 'geocentric', "geocent", "Geocent"];
export default {
init: init,
forward: forward,
inverse: inverse,
names: names
};