earthlocation-1.0.0

Represents EarthLocation objects from astropy.

Description

Location on the Earth.

Outline

Schema Definitions

This type is an object with the following properties:

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://astropy.org/schemas/astropy/coordinates/earthlocation-1.0.0"

title: |
  Represents EarthLocation objects from astropy.

description: |
  Location on the Earth.

type: object
properties:
  x:
    description: |
      X component of location in geocentric representation
    $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0"
  y:
    description: |
      Y component of location in geocentric representation
    $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0"
  z:
    description: |
      Z component of location in geocentric representation
    $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0"
  ellipsoid:
    description: |
      Reference ellipsoid that is used when representing geodetic coordinates.
    type: string
    enum: [WGS84, GRS80, WGS72]

required: [x, y, z]
additionalProperties: False
...