Observatory
Observatory Schema¶
Description: A location with one or more telescopes, owned by an Entity.
An Observatory is a *region* (e.g., a campus or part of a mountain) and
typically references a :class:`Site`. Its ``latitude``/``longitude``/
``elevation`` are usually populated from the site but may be tweaked to a
representative point for large sites. Each :class:`Telescope` within an
observatory has its own pier coordinates, which may differ from the
observatory's representative location.
Properties¶
| Name | Type | Description |
|---|---|---|
| id | Integer |
No description |
| uid | UUID |
No description |
| owner_id | Integer |
The organization or user which owns the observatory |
| site_id | Integer (Optional) |
No description |
| country_code | String(3) |
No description |
| iau_code | String(3) (Optional) |
No description |
| name | String(100) |
No description |
| short_name | String(50) (Optional) |
No description |
| slug | String(100) |
No description |
| description | String(Unbounded) |
No description |
| image_id | UUID (Optional) |
No description |
| is_available | Boolean |
No description |
| is_public | Boolean |
No description |
| location | String(100) |
No description |
| latitude_deg | Float |
No description |
| longitude_deg | Float |
No description |
| elevation_m | Float |
No description |
Relationships¶
| Relationship Name | Type |
|---|---|
| site | Site |
| country | Country |
| telescopes | Telescope |
| owner | Entity |
| image | File |
| gallery_items | ObservatoryGalleryItem |
| log | ObservatoryLogEntry |
| devices | Device |
| ip_cameras | IPCamera |
| shutdown_interlocks | ShutdownInterlock |
| sky_node_installations | SkyNodeInstallation |