1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/earthlocation-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/earthlocation-1.0.0"
6
7title: |
8  Represents EarthLocation objects from astropy.
9
10description: |
11  Location on the Earth.
12
13type: object
14properties:
15  x:
16    description: |
17      X component of location in geocentric representation
18    $ref: "tag:stsci.edu:asdf/unit/quantity-1.1.0"
19  y:
20    description: |
21      Y component of location in geocentric representation
22    $ref: "tag:stsci.edu:asdf/unit/quantity-1.1.0"
23  z:
24    description: |
25      Z component of location in geocentric representation
26    $ref: "tag:stsci.edu:asdf/unit/quantity-1.1.0"
27  ellipsoid:
28    description: |
29      Reference ellipsoid that is used when representing geodetic coordinates.
30    type: string
31    enum: [WGS84, GRS80, WGS72]
32
33required: [x, y, z]
34additionalProperties: False
35...
36