First commit

This commit is contained in:
Thomas Fuhrmann 2023-10-02 15:04:02 +02:00
commit 87d22a4516
235 changed files with 51802 additions and 0 deletions

27
node_modules/proj4/lib/projections/geocent.js generated vendored Normal file
View file

@ -0,0 +1,27 @@
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
};