slant_orthographic-1.0.0¶
The slant orthographic projection.
Description
Corresponds to the SIN
projection in the FITS WCS standard.
See zenithal for the definition of the full transformation.
The pixel-to-sky transformation is defined as:
\[\theta = \cos^{-1}\left(\frac{\pi}{180^{\circ}}R_\theta\right)\]
And the sky-to-pixel transformation is defined as:
\[R_\theta = \frac{180^{\circ}}{\pi}\cos \theta\]
Invertibility: All ASDF tools are required to provide the inverse of this transform.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
xi
number Obliqueness parameter, first equation of the slant orthographic projection.
Default value: 0
eta
number Obliqueness parameter, second equation of the slant orthographic projection.
Default value: 0
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/slant_orthographic-1.0.0"
title: |
The slant orthographic projection.
description: |
Corresponds to the `SIN` projection in the FITS WCS standard.
See
[zenithal](ref:schemas/zenithal-1.0.0)
for the definition of the full transformation.
The pixel-to-sky transformation is defined as:
$$\theta = \cos^{-1}\left(\frac{\pi}{180^{\circ}}R_\theta\right)$$
And the sky-to-pixel transformation is defined as:
$$R_\theta = \frac{180^{\circ}}{\pi}\cos \theta$$
Invertibility: All ASDF tools are required to provide the inverse of
this transform.
allOf:
- $ref: "zenithal-1.0.0"
- type: object
properties:
xi:
type: number
description: Obliqueness parameter, first equation of the slant
orthographic projection.
default: 0
eta:
type: number
description: Obliqueness parameter, second equation of the slant
orthographic projection.
default: 0
...