tethys-feature-service/node_modules/proj4/lib/common/asinz.js

6 lines
108 B
JavaScript
Raw Permalink Normal View History

2023-10-02 13:04:02 +00:00
export default function(x) {
if (Math.abs(x) > 1) {
x = (x > 1) ? 1 : -1;
}
return Math.asin(x);
}