1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/latitude-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/latitude-1.0.0"
6
7title: |
8  Represents latitude-like angles.
9
10description: |
11  Represents latitude-like angle(s) which must be in the range -90 to +90 deg.
12
13examples:
14  -
15    - A Latitude object in Degrees
16    - |
17        !<tag:astropy.org:astropy/coordinates/latitude-1.0.0>
18          unit: !unit/unit-1.0.0 deg
19          value: 10.0
20
21type: object
22properties:
23  value:
24    description: |
25      A vector of one or more values
26    anyOf:
27      - type: number
28      - $ref: "tag:stsci.edu:asdf/core/ndarray-1.0.0"
29  unit:
30    description: |
31      The unit corresponding to the values
32    $ref: "tag:stsci.edu:asdf/unit/unit-1.0.0"
33required: [value, unit]
34...
35