Skip to content

Releases: shashwatak/satellite-js

2.0.2

15 Sep 19:23
Compare
Choose a tag to compare

Release notes

2.0.1

15 Sep 19:22
Compare
Choose a tag to compare

Release notes

  • sgp4 function's call result is used in sgp4init.
  • Longitude of eciToGeodetic result is in [-PI; PI] range now.

2.0.0

22 Dec 23:33
Compare
Choose a tag to compare

Release notes

Key-Value Pair Coordinates

09 Dec 23:55
Compare
Choose a tag to compare

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"];