A fast implementation of the VSOP87 theory in JavaScript.
A JavaScript library that implements series A and C of the VSOP87 theory.
It's big: ~719 Kb to ~826 Kb gzipped depending on the series (~2.08 Mb to ~2.29 Mb unzipped).
$ yarn add vsop87
In node:
// Can also be 'vsop87/dist/vsop87a'.
const vsop87c = require('vsop87/dist/vsop87c');
// Get an object with the (x,y,z) coordinates of each planet.
const coords = vsop87c(2451545);
In browsers, we recommend to load the script asynchronously:
// Can also be 'vsop87/dist/vsop87a'.
import('vsop87/dist/vsop87c').then((vsop87c) => {
// Get an object with the (x,y,z) coordinates of each planet.
const coords = vsop87c(2451545);
});
In browsers:
import vsop87cLoader from 'vsop87/dist/vsop87c-wasm';
vsop87cLoader.then((vsop87c) => {
// Get an object with the (x,y,z) coordinates of each planet.
const coords = vsop87c(2451545);
});
According to the doc:
- Mercury, Venus, Earth-Moon barycenter and Mars: precision of 1" for 4000 years before and after J2000.
- Jupiter and Saturn: precision of 1" for over 2000 years before and after J2000.
- Uranus and Neptune: precision of 1" for over 6000 years before and after J2000.
There are already tons of other implementations in JavaScript of the VSOP87 theory out there.
This one differs from the other ones by being statically compiled and optimised so it can run as fast as possible. Other implementations usually use the original VSOP87 files, or arrays containing the terms, and then apply the operations successively. This is less efficient that inlining the operations directly.
By doing so, a few optimisations are possible:
- Remove terms multiplying by 0
- Remove entire terms of specific order resulting in 0
- Avoid calls to cosine when the value is 0
- Avoid calls to cosine when the value is Pi
- The result code ensures good level of minifiability.
Unlike other ports, this one is incomplete as it only support VSOP87 series A and C. But it is fully tested and compliant with the official check values.
I accept PR for extending support to other series.
$ yarn build
If a RangeError: Maximum call stack size exceeded
error message occurs at build time, try to increase the maximum stack size of node:
$ node --stack-size=1968 node_modules/.bin/rollup --config
Install emscripten, then:
$ ./build && yarn build
If Prettier struggles to work on the big files, try the following:
$ node --stack-size=1968 node_modules/.bin/prettier --write "{src,test}/**/*.js"
Make sure to run the build script first, then:
$ yarn test