mirror of
https://github.com/proj4js/proj4js.git
synced 2026-01-25 16:26:11 +00:00
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
import {PJD_3PARAM, PJD_7PARAM, PJD_NODATUM} from './constants/values';
|
|
|
|
import {geodeticToGeocentric, geocentricToGeodetic, geocentricToWgs84, geocentricFromWgs84, compareDatums} from './datumUtils';
|
|
function checkParams(type) {
|
|
return (type === PJD_3PARAM || type === PJD_7PARAM);
|
|
}
|
|
|
|
export default function(source, dest, point) {
|
|
// Short cut if the datums are identical.
|
|
if (compareDatums(source, dest)) {
|
|
return point; // in this case, zero is sucess,
|
|
// whereas cs_compare_datums returns 1 to indicate TRUE
|
|
// confusing, should fix this
|
|
}
|
|
|
|
// Explicitly skip datum transform by setting 'datum=none' as parameter for either source or dest
|
|
if (source.datum_type === PJD_NODATUM || dest.datum_type === PJD_NODATUM) {
|
|
return point;
|
|
}
|
|
|
|
// If this datum requires grid shifts, then apply it to geodetic coordinates.
|
|
|
|
// Do we need to go through geocentric coordinates?
|
|
if (source.es === dest.es && source.a === dest.a && !checkParams(source.datum_type) && !checkParams(dest.datum_type)) {
|
|
return point;
|
|
}
|
|
|
|
// Convert to geocentric coordinates.
|
|
point = geodeticToGeocentric(point, source.es, source.a);
|
|
// Convert between datums
|
|
if (checkParams(source.datum_type)) {
|
|
point = geocentricToWgs84(point, source.datum_type, source.datum_params);
|
|
}
|
|
if (checkParams(dest.datum_type)) {
|
|
point = geocentricFromWgs84(point, dest.datum_type, dest.datum_params);
|
|
}
|
|
return geocentricToGeodetic(point, dest.es, dest.a, dest.b);
|
|
|
|
}
|