A class representing a satellite orbit.
STARLINK-1007 1 44713C 19074A 23048.53451389 -.00009219 00000+0 -61811-3 0 482 2 44713 53.0512 157.2379 0001140 81.3827 74.7980 15.06382459 15 Copy
STARLINK-1007 1 44713C 19074A 23048.53451389 -.00009219 00000+0 -61811-3 0 482 2 44713 53.0512 157.2379 0001140 81.3827 74.7980 15.06382459 15
import { Satellite } from 'gis-tools-ts';const sat = new Satellite(tleString);// get propagation at timeconst { position, velocity } = sat.propagate(new Date()); Copy
import { Satellite } from 'gis-tools-ts';const sat = new Satellite(tleString);// get propagation at timeconst { position, velocity } = sat.propagate(new Date());
Constructor
TLE data or TLE string
initialize the object on creation
Converts satellite state to an array that is readable by the GPU
propagate the satellite's position and velocity given a Date input
Date object
time in minutes since epoch
time in minutes
Satellite Orbit Class
Description
A class representing a satellite orbit.
Examples
Input TLE example
Run example
Links