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:
x
http://stsci.edu/schemas/asdf/unit/quantity-1.1.0 Required X component of location in geocentric representation
y
http://stsci.edu/schemas/asdf/unit/quantity-1.1.0 Required Y component of location in geocentric representation
z
http://stsci.edu/schemas/asdf/unit/quantity-1.1.0 Required Z component of location in geocentric representation
ellipsoid
string No length restrictionReference ellipsoid that is used when representing geodetic coordinates.
Only the following values are valid for this node:
WGS84
GRS80
WGS72
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
...