Link to website: https://pagsa.github.io/tips
The goal of TIPs is to provide a cheatsheet for new astronomers to get a feel for what telescopes exist, the differences between them, and what they tend to be used for. TIPs is a collaborative effort, so if you are very familiar with a particular telescope or instrument, please contribute your knowledge!
The website parses a single JSON file to display which contains the information for each telescope. Contributions can be made by adding your telescope/instrument to this file. To do this:
-
Fork this repository to your own account.
-
Insert your telescope/instrument into the
telescopes.json
file, in alphabetical order. Detailed instructions are below. -
If you have an image, copy it to the
img/
subdirectory. -
Create a pull request on Github with your changes.
This format is still in progress. Please be alert for updates.
The JSON file is structured as an array []
of telescope objects {}
, each containing their own properties and sub-objects. Only the properties defined below are used on the website, although more properties are planned. If certain properties do not apply to your telescope, do not include them, as opposed to leaving a blank entry.
Telescope object:
"name"
: Full name of the telescope.
"nameshort"
: Shortened name of the telescope — no spaces, used for HTML linking.
"location"
: Where the telescope is. Typically the mountain or city, state/province, and country are sufficient. If in space, describe the orbit. Examples: Mauna Kea, HI, USA; Cerro Pachón, Chile; L2; Low Earth orbit at 540 km; Elliptical high Earth orbit between 16,000 km and 139,000 km.
"altitude"
: For ground-based telescopes, the altitude in km. If space-based, do not include this line.
"primirror"
: Effective diameter of the primary mirror, or effective aperture.
"image"
: The path to an image of the telescope (beginning with img/
).
"website"
: Link to the main website for the telescope. If there are multiple, choose the one most directed toward astronomers.
"etc"
: Link to an exposure time calculator for the telescope.
"instruments"
: An array of objects, each containing one instrument used on the telescope.
Instrument object:
"name"
: Short, common name of the instrument, often an abbreviation.
"namelong"
: Full, unabbreviated name of the instrument.
"type"
: What sort of instrument it is (e.g., imager, spectrograph, coronagraph). Multiple categories can apply.
"detector"
: Not yet implemented.
"wavelengths"
: The full wavelength range of the instrument, spanning all filters.
"filters"
: Not yet implemented.
"resolution"
: On-sky or spectral resolution, or both, depending on the type of instrument.
"fov"
: Field of view.
"targets"
: (implementation to be updated) Description of typical targets and science uses for the instrument.
"firstlight"
: Year of first light of the instrument.
{
"name": "James Webb Space Telescope",
"nameshort": "JWST",
"location": "L2",
"primirror": "6.5 m",
"image": "img/relative-image-path.png",
"website": "https://webb.nasa.gov/",
"etc": "https://link.to/exposure-time-calculator",
"instruments" : [
{
"name": "MIRI",
"namelong": "Mid-Infrared Instrument",
"type": "Imager, spectrograph, coronagraph",
"wavelengths": "4.9–27.9 μm",
"resolution": "0.11”",
"fov": "1.2’ x 1.9’",
"targets": "High-redshift galaxies",
"firstlight": "2022"
},
{
"name": "..."
}
]
}