Skip to content

dataType GenericPoint

extends Point

GenericPoint supports the representation of spatial coordinates in a custom coordinate space, or any space which is not covered by the other specializations. The coordinate values map, in order, to the axes described by the associated CoordSpace. If no CoordSpace is provided, the behavior is undefined. Values for unused/undefined dimensions need not be provided.

classDiagram

        class GenericPoint{
        ivoa:Quantity axis1
ivoa:Quantity axis2
ivoa:Quantity axis3

        }
        GenericPoint --|> Point
Point --|> Coordinate

link Point "../Point"
link Coordinate "../Coordinate"

Members

name type mult description
axis1 ivoa:Quantity optional Coordinate value along the first axis of the associated coordinate space, expressed as an ivoa:Quantity.
axis2 ivoa:Quantity optional Coordinate value along the second axis of the associated coordinate space, expressed as an ivoa:Quantity.
axis3 ivoa:Quantity optional Coordinate value along the third axis of the associated coordinate space, expressed as an ivoa:Quantity.