1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/angle-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/angle-1.0.0"
6
7title: |
8  Represents an Angle.
9
10description:
11  This object represents a subtype of Quantity which has units equivalent to
12  radians or degrees.
13
14examples:
15  -
16    - An Angle object in Degrees
17    - |
18        !<tag:astropy.org:astropy/coordinates/angle-1.0.0>
19          unit: !unit/unit-1.0.0 deg
20          value: 10.0
21
22type: object
23properties:
24  value:
25    description: |
26      A vector of one or more values
27    anyOf:
28      - type: number
29      - $ref: "tag:stsci.edu:asdf/core/ndarray-1.0.0"
30  unit:
31    description: |
32      The unit corresponding to the values
33    $ref: "tag:stsci.edu:asdf/unit/unit-1.0.0"
34required: [value, unit]
35...
36