Skip to content

abstract objectType Observation

An observation - a pointing of the telescope at a part of the sky, occurs in a single non-overlapping time period

classDiagram

        class Observation{

        }
        TargetObservation --|> Observation
CalibrationObservation --|> Observation
Observation --> "0..*" Target : target
Observation --> "1" Field : field
Observation --> "1" TechnicalGoal : technicalGoal
Observation *-- "0..*" ObservingConstraint : constraints

link TargetObservation "../TargetObservation"
link CalibrationObservation "../CalibrationObservation"
link Target "../Target"
link Field "../Field"
link TechnicalGoal "../TechnicalGoal"
link ObservingConstraint "../ObservingConstraint"

Members

name type mult description
target Target 0 or more The actual target of the observation
field Field The Field for the observation
technicalGoal TechnicalGoal The technical goals of the observation
constraints ObservingConstraint 0 or more any constraints on the observation

References Detail

Containment

This is contained by ObservingProposal