redshift_scale_factor-1.0.0¶
One dimensional redshift scale factor model.
Description
One dimensional redshift scale factor model.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
z
object Required Redshift value.
This node must validate against any of the following:
number
Examples ¶
\[f(x)=x(1+2.5)\]
!transform/redshift_scale_factor-1.0.0 {z: 2.5}
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/redshift_scale_factor-1.0.0"
title: >
One dimensional redshift scale factor model.
description: >
One dimensional redshift scale factor model.
examples:
-
- $$f(x)=x(1+2.5)$$
- |
!transform/redshift_scale_factor-1.0.0 {z: 2.5}
allOf:
- $ref: "transform-1.2.0"
- type: object
properties:
z:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: Redshift value.
required: ['z']
...