slant_zenithal_perspective-1.2.0¶
The slant zenithal perspective projection.
Description
Corresponds to the SZP
projection in the FITS WCS standard.
See zenithal for the definition of the full transformation.
The pixel-to-sky transformation is defined as:
And the sky-to-pixel transformation is defined as:
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:
mu
object Distance from point of projection to center of sphere in spherical radii.
This node must validate against any of the following:
number
phi0
object The longitude \(\phi_0\) of the reference point, in degrees.
This node must validate against any of the following:
number
theta0
object The latitude \(\theta_0\) of the reference point, in degrees.
This node must validate against any of the following:
number
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/slant_zenithal_perspective-1.2.0"
title: |
The slant zenithal perspective projection.
description: |
Corresponds to the `SZP` projection in the FITS WCS standard.
See
[zenithal](ref:schemas/zenithal-1.2.0)
for the definition of the full transformation.
The pixel-to-sky transformation is defined as:
$$\theta = \tan^{-1}\left(\frac{180^{\circ}}{\pi R_\theta}\right)$$
And the sky-to-pixel transformation is defined as:
$$R_\theta = \frac{180^{\circ}}{\pi}\cot \theta$$
Invertibility: All ASDF tools are required to provide the inverse of
this transform.
allOf:
- $ref: "zenithal-1.2.0"
- type: object
properties:
mu:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: |
Distance from point of projection to center of sphere in
spherical radii.
default: 0
phi0:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: |
The longitude $\phi_0$ of the reference point, in degrees.
default: 0
theta0:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: |
The latitude $\theta_0$ of the reference point, in degrees.
default: 90
...