Skip to content

Commit

Permalink
Merge pull request #75 from observerly/feature/transit/Transit
Browse files Browse the repository at this point in the history
feat: Added Transit type to transit module in @observerly/astrometry.
  • Loading branch information
michealroberts authored Aug 28, 2023
2 parents 8310de0 + 772b98e commit a20b234
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/transit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,43 @@ export interface Parameters {

/*****************************************************************************************************************/

export interface Transit {
/**
*
*
* The local sidereal time of rise.
*
*
*/
LSTr: number
/**
*
*
* The local sidereal time of set.
*
*
*/
LSTs: number
/**
*
*
* The azimuthal angle (in degrees) of the object at rise.
*
*
*/
R: number
/**
*
*
* The azimuthal angle (in degrees) of the object at set.
*
*
*/
S: number
}

/*****************************************************************************************************************/

/**
*
* isBodyCircumpolar()
Expand Down

0 comments on commit a20b234

Please sign in to comment.