temporal_frame-1.0.0¶
Represents a temporal frame.
Outline
Schema Definitions ¶
This type is an object with the following properties:
name
string Required No length restrictionA user-friendly name for the frame.
axes_order
array No length restrictionThe order of the axes.
Items in the array are restricted to the following types:
integer
axes_names
array No length restrictionThe name of each axis in this frame.
Items in the array must be any of the following types:
- No length restriction
string
null
reference_frame
http://stsci.edu/schemas/asdf/time/time-1.1.0 The reference frame.
unit
array No length restrictionUnits for each axis.
Items in the array are restricted to the following types:
axis_physical_types
array No length restrictionAn iterable of strings describing the physical type for each world axis. These should be names from the VO UCD1+ controlled Vocabulary (http://www.ivoa.net/documents/latest/UCDlist.html).
Items in the array are restricted to the following types:
No length restrictionstring
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/gwcs/temporal_frame-1.0.0"
title: >
Represents a temporal frame.
type: object
properties:
name:
description: |
A user-friendly name for the frame.
type: string
axes_order:
description: |
The order of the axes.
type: array
items:
type: integer
axes_names:
description: |
The name of each axis in this frame.
type: array
items:
anyOf:
- type: string
- type: 'null'
reference_frame:
description: |
The reference frame.
$ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0"
unit:
description: |
Units for each axis.
type: array
items:
$ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0"
axis_physical_types:
description: |
An iterable of strings describing the physical type for each world axis.
These should be names from the VO UCD1+ controlled Vocabulary
(http://www.ivoa.net/documents/latest/UCDlist.html).
type: array
items:
type:
string
required: [name]
...