Source code for sofia_redux.scan.custom.example.info.telescope
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from sofia_redux.scan.info.telescope import TelescopeInfo
__all__ = ['ExampleTelescopeInfo']
[docs]
class ExampleTelescopeInfo(TelescopeInfo):
def __init__(self):
"""
Initialize the telescope information for the example instrument.
"""
super().__init__()
self.telescope = "Example Telescope"
[docs]
@staticmethod
def get_telescope_name():
"""
Return the telescope name.
Returns
-------
name : str
"""
return "EGTEL"