Skip to content

docs: 📝 update documentation in line1/2 definitions #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/line-1-definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ export const lineNumber1 = {
/**
* NORAD satellite catalog number (e.g. Sputnik's rocket was number 00001).
* See https://en.wikipedia.org/wiki/Satellite_Catalog_Number
*
* NOTE: This will not handle Alpha-5 satellites.
* See https://www.space-track.org/documentation#tle-alpha5
*
* Range: 0 to 99999
* Example: 25544
Expand All @@ -28,7 +31,7 @@ export const catalogNumber1 = {
/**
* Satellite classification.
* 'U' = unclassified
* 'C' = classified
* 'C' = confidential
* 'S' = secret
*
* Example: 'U'
Expand Down Expand Up @@ -81,6 +84,8 @@ export const intDesignatorPieceOfLaunch = {

/**
* Year when the TLE was generated (TLE epoch), last two digits.
*
* 57 to 99 = 1900s, 00-56 = 2000s
*
* Range: 00 to 99
* Example: 17
Expand Down Expand Up @@ -147,7 +152,7 @@ export const bstarDrag = {
};

/**
* Private value - used by Air Force Space Command to reference the orbit model used to
* Private value - used by United States Space Force to reference the orbit model used to
* generate the TLE. Will always be seen as zero externally (e.g. by "us", unless you are
* "them" - in which case, hello!).
*
Expand Down
2 changes: 1 addition & 1 deletion src/line-2-definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const meanMotion = {
};

/**
* Total satellite revolutions when this TLE was generated. This number seems to roll over
* Total satellite revolutions when this TLE was generated. This number rolls over
* (e.g. 99999 -> 0).
*
* Range: 0 to 99999
Expand Down