-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #401 from observerly/feature/wcs/SIP2DParameters
feat: add SIP2DParameters type to wcs module in @observerly/astrometry
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 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,11 +1,25 @@ | ||
/*****************************************************************************************************************/ | ||
|
||
// @author Michael Roberts <[email protected]> | ||
// @package @observerly/astrometry/vsop87 | ||
// @license Copyright © 2021-2023 observerly | ||
// @package @observerly/astrometry/wcs | ||
// @license Copyright © 2021-2025 observerly | ||
|
||
/*****************************************************************************************************************/ | ||
|
||
export type {} | ||
/*****************************************************************************************************************/ | ||
|
||
// SIP (Simple Imaging Polynomial) is a convention used in FITS (Flexible Image Transport System) | ||
// headers to describe complex distortions in astronomical images. It extends the standard World | ||
// Coordinate System (WCS) by introducing higher-order polynomial terms that account for non-linear | ||
// optical distortions, such as those introduced by telescope optics or atmospheric effects. | ||
// @see https://fits.gsfc.nasa.gov/registry/sip/SIP_distortion_v1_0.pdf | ||
export type SIP2DParameters = { | ||
AOrder: number | ||
APower: { [key: string]: number } | ||
BOrder: number | ||
BPower: { [key: string]: number } | ||
} | ||
|
||
|
||
/*****************************************************************************************************************/ |
Empty file.