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.1.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0"
6
7title: |
8  Represents an ICRS coordinate object from astropy.
9
10examples:
11  -
12    - An ICRS frame without data
13    - |
14        !<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
15          frame_attributes: {}
16  -
17    - An ICRS frame with data
18    - |
19        !<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
20          data: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
21            components:
22              lat: !<tag:astropy.org:astropy/coordinates/latitude-1.0.0> {unit: !unit/unit-1.0.0 deg,
23                value: 10.0}
24              lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
25                unit: !unit/unit-1.0.0 deg
26                value: 120.0
27                wrap_angle: !<tag:astropy.org:astropy/coordinates/angle-1.0.0> {unit: !unit/unit-1.0.0 deg,
28                  value: 360.0}
29            type: UnitSphericalRepresentation
30          frame_attributes: {}
31
32
33
34allOf:
35  - $ref: baseframe-1.0.0
36...
37