Releases: shashwatak/satellite-js
Releases · shashwatak/satellite-js
2.0.2
2.0.1
2.0.0
Release notes
- Library became ES and Common.js compatible.
- Source code is reorganized to match original Python library.
degreesLat
anddegreesLong
don't adjust input radians value and throwRangeError
if it's out of bounds
(breaking change).invjday
function is added.- Julian day calculations take account of milliseconds
(#38). - Incorrect position and velocity bug for times not close to
TLE epoch is fixed (#37). - Continuous integration and test coverage are provided.
- Bower support is dropped.
Key-Value Pair Coordinates
Replaced all positional arrays with key-value objects. Vastly improves code readability for users of this library. For example:
// Before
var x = position[0];
var y = position[1];
var z = position[2];
// Now
var x = position["x"];
var y = position["y"];
var z = position["z"];