1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/frames/galactic-1.0.0"
6
7title: |
8  Represents an Galactic coordinate object from astropy.
9
10examples:
11  -
12    - An Galactic frame without data
13    - |
14         !<tag:astropy.org:astropy/coordinates/frames/galactic-1.0.0>
15           frame_attributes: {}
16  -
17    - An Galactic frame with data
18    - |
19         !<tag:astropy.org:astropy/coordinates/frames/galactic-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: 2.0}
24               lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
25                 unit: !unit/unit-1.0.0 deg
26                 value: 1.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
34
35allOf:
36  - $ref: baseframe-1.0.0
37...
38