-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ivan Stanojevic
committed
Jan 8, 2020
1 parent
9cf2335
commit 5bd7487
Showing
32 changed files
with
2,824 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.idea | ||
|
||
/vendor |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
# TLE - Two Line Element | ||
NASA/NORAD Two line element set framework | ||
# TLE PHP | ||
|
||
A two-line element (TLE) is a set of two data lines listing orbital elements that describe the state (position and velocity) of an Earth-orbiting object. The TLE data representation is specific to the Simplified perturbations models (SGP, SGP4, SDP4, SGP8 and SDP8) so any algorithm using a TLE as a data source must implement one of the simplified perturbations models to correctly compute the state of an object at a time of interest. | ||
Client for NASA TLE API (http://api.nasa.gov/) and TLE framework implemented in php. | ||
|
||
Parser usage: | ||
# About | ||
|
||
The TLE API provides up to date two line element set records, the data is updated daily from [CelesTrak](https://celestrak.com/) and served in JSON format. A two-line element set (TLE) is a data format encoding a list of orbital elements of an Earth-orbiting object for a given point in time. For more information on TLE data format visit [Definition of Two-line Element Set Coordinate System](https://spaceflight.nasa.gov/realdata/sightings/SSapplications/Post/JavaSSOP/SSOP_Help/tle_def.html). | ||
|
||
#Usage | ||
``` | ||
use TLE\Parser; | ||
use Ivanstan\Tle\Api; | ||
$tleParser = new Parser($tleString); | ||
$client = new Api(); | ||
$tleParser->eccentricity; | ||
$tleParser->raan; | ||
$tle = $client->get(25544); | ||
$tle->getLine1(); | ||
$tle->getLine2(); | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.