1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/fk5-1.0.0"
6
7title: |
8  Represents a FK5 coordinate object from astropy
9
10examples:
11  -
12    - A FK5 frame without data with a custom equinox
13    - |
14        !<tag:astropy.org:astropy/coordinates/frames/fk5-1.0.0>
15          frame_attributes: {equinox: !time/time-1.1.0 '2011-01-02 00:00:00.000'}
16  -
17    - A FK5 frame with data
18    - |
19        !<tag:astropy.org:astropy/coordinates/frames/fk5-1.0.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: {equinox: !time/time-1.1.0 J2000.000}
31
32allOf:
33  - $ref: baseframe-1.0.0
34  - properties:
35      frame_attributes:
36        type: object
37        properties:
38          equinox:
39            $ref: "tag:stsci.edu:asdf/time/time-1.1.0"
40        required: [equinox]
41...
42