Skip to content

objectType Observatory

extends Organization

An organisation that can perform astronomical observations

classDiagram

        class Observatory{

        }
        Observatory --|> Organization
Observatory *-- Telescope : telescopes
Observatory *-- Instrument : instruments
Observatory *-- Backend : backends
Observatory *-- TelescopeArray : arrays

link Organization "../Organization"
link Telescope "../Telescope"
link Instrument "../Instrument"
link Backend "../Backend"
link TelescopeArray "../TelescopeArray"

Members

name type mult description
telescopes Telescope 1 or more the telescopes that the observatory controls
instruments Instrument 1 or more the instruments that are available for the telescopes
backends Backend 1 or more the backends that exist
arrays TelescopeArray 0 or more any arrays of telescopes that typically operate together

References Detail

This is referred to by Person, proposalManagement:ProposalCycle

Has contained reference(s) Telescope in the containment hierarchy.