tethys-feature-service/node_modules/proj4/lib/common/asinz.js
2023-10-02 15:04:02 +02:00

6 lines
108 B
JavaScript

export default function(x) {
if (Math.abs(x) > 1) {
x = (x > 1) ? 1 : -1;
}
return Math.asin(x);
}