frames/icrs-1.1.0

Represents an ICRS coordinate object from astropy.

Outline

Schema Definitions

This node must validate against all of the following:

Examples

An ICRS frame without data:

!<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
  frame_attributes: {}

An ICRS frame with data:

!<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
  data: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
    components:
      lat: !<tag:astropy.org:astropy/coordinates/latitude-1.0.0> {unit: !unit/unit-1.0.0 deg,
        value: 10.0}
      lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
        unit: !unit/unit-1.0.0 deg
        value: 120.0
        wrap_angle: !<tag:astropy.org:astropy/coordinates/angle-1.0.0> {unit: !unit/unit-1.0.0 deg,
          value: 360.0}
    type: UnitSphericalRepresentation
  frame_attributes: {}

Original Schema

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

title: |
  Represents an ICRS coordinate object from astropy.

examples:
  -
    - An ICRS frame without data
    - |
        !<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
          frame_attributes: {}
  -
    - An ICRS frame with data
    - |
        !<tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0>
          data: !<tag:astropy.org:astropy/coordinates/representation-1.0.0>
            components:
              lat: !<tag:astropy.org:astropy/coordinates/latitude-1.0.0> {unit: !unit/unit-1.0.0 deg,
                value: 10.0}
              lon: !<tag:astropy.org:astropy/coordinates/longitude-1.0.0>
                unit: !unit/unit-1.0.0 deg
                value: 120.0
                wrap_angle: !<tag:astropy.org:astropy/coordinates/angle-1.0.0> {unit: !unit/unit-1.0.0 deg,
                  value: 360.0}
            type: UnitSphericalRepresentation
          frame_attributes: {}



allOf:
  - $ref: baseframe-1.0.0
...