1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/itrs-1.0.0"
6
7title: |
8  Represents a ITRS coordinate object from astropy
9
10examples:
11  -
12    - A ITRS frame without data
13    - |
14        !<tag:astropy.org:astropy/coordinates/frames/itrs-1.0.0>
15          frame_attributes:
16            obstime: !time/time-1.1.0 {scale: tai, value: B1950.000}
17  -
18    - A ITRS frame with data
19    - |
20        !<tag:astropy.org:astropy/coordinates/frames/itrs-1.0.0>
21          data: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
22            components:
23              lat: !<tag:astropy.org:astropy/coordinates/latitude-1.0.0> {unit: !unit/unit-1.0.0 deg,
24                value: 10.0}
25              lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
26                unit: !unit/unit-1.0.0 deg
27                value: 120.0
28                wrap_angle: !<tag:astropy.org:astropy/coordinates/angle-1.0.0> {unit: !unit/unit-1.0.0 deg,
29                  value: 360.0}
30            type: UnitSphericalRepresentation
31          frame_attributes:
32            obstime: !time/time-1.1.0 {scale: tai, value: B1950.000}
33
34allOf:
35  - $ref: baseframe-1.0.0
36  - properties:
37      frame_attributes:
38        type: object
39        properties:
40          obstime:
41            $ref: "tag:stsci.edu:asdf/time/time-1.1.0"
42        required: [obstime]
43...
44