1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/gcrs-1.0.0"
6
7title: |
8  Represents a GCRS coordinate object from astropy
9
10examples:
11  -
12    - A GCRS frame without data
13    - |
14        !<tag:astropy.org:astropy/coordinates/frames/gcrs-1.0.0>
15            frame_attributes:
16              obsgeoloc: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
17                components:
18                  x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
19                  y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
20                  z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
21                type: CartesianRepresentation
22              obsgeovel: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
23                components:
24                  x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
25                  y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
26                  z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
27                type: CartesianRepresentation
28              obstime: !time/time-1.1.0 J2000.000
29  -
30    - A GCRS frame with data
31    - |
32        !<tag:astropy.org:astropy/coordinates/frames/gcrs-1.0.0>
33          data: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
34            components:
35              lat: !<tag:astropy.org:astropy/coordinates/latitude-1.0.0> {unit: !unit/unit-1.0.0 deg,
36                value: 2.0}
37              lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
38                unit: !unit/unit-1.0.0 deg
39                value: 1.0
40                wrap_angle: !<tag:astropy.org:astropy/coordinates/angle-1.0.0> {unit: !unit/unit-1.0.0 deg,
41                  value: 360.0}
42            type: UnitSphericalRepresentation
43          frame_attributes:
44            obsgeoloc: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
45              components:
46                x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
47                y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
48                z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0}
49              type: CartesianRepresentation
50            obsgeovel: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
51              components:
52                x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
53                y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
54                z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0}
55              type: CartesianRepresentation
56            obstime: !time/time-1.1.0 J2000.000
57
58allOf:
59  - $ref: baseframe-1.0.0
60  - properties:
61      frame_attributes:
62        type: object
63        properties:
64          obstime:
65            $ref: "tag:stsci.edu:asdf/time/time-1.1.0"
66          obsgeoloc:
67            $ref: "../representation-1.0.0"
68          obsgeovel:
69            $ref: "../representation-1.0.0"
70...
71