Skip to content
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

fix: correct typo for getCorrectionToHorizontalForRefraction() in refraction module in @observerly/astrometry #396

Merged
Merged
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
4 changes: 2 additions & 2 deletions src/refraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import { convertDegreesToRadians as radians } from './utilities'
* The correct to the HorizontalCoordinate for refraction is an adjustment to the observed
* HorizontalCoordinate based on pressure and temperature effects.
*
* @param target - The equatorial coordinate of the observed object.
* @param target - The horizontal coordinate of the observed object.
* @param temperature - The temperature in Kelvin.
* @param pressure - The pressure in Pascals.
* @returns The equatorial coordinate of the observed object corrected for atmospheric refraction.
* @returns The horizontal coordinate of the observed object corrected for atmospheric refraction.
*
*/
export const getCorrectionToHorizontalForRefraction = (
Expand Down
Loading