1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/icrs-1.0.0"
6
7title: |
8  Represents an ICRS coordinate object from astropy
9
10description: |
11  This object represents the right ascension (RA) and declination of an ICRS
12  coordinate or frame. The ICRS class contains additional fields that may be
13  useful to add here in the future.
14
15type: object
16properties:
17  ra:
18    type: object
19    description: |
20      A longitude representing the right ascension of the ICRS coordinate
21    properties:
22      value:
23        type: number
24      unit:
25        $ref: "tag:stsci.edu:asdf/unit/unit-1.0.0"
26        default: deg
27      wrap_angle:
28        $ref: "tag:stsci.edu:asdf/unit/quantity-1.1.0"
29        default: "360 deg"
30  dec:
31    type: object
32    description: |
33      A latitude representing the declination of the ICRS coordinate
34    properties:
35      value:
36        type: number
37      unit:
38        $ref: "tag:stsci.edu:asdf/unit/unit-1.0.0"
39        default: deg
40
41required: [ra, dec]
42...
43