Revision de8e3aeccc97e3045a2975a8a545e651a0c04155 authored by Steven Murray on 02 January 2020, 13:55:47 UTC, committed by Bryna Hazelton on 13 February 2020, 08:30:39 UTC
1 parent 44b7b79
Raw File
known_telescopes.rst
Known Telescopes
================

Known Telescope Data
--------------------
pyuvdata has the following known telescopes:

.. exec::
    import json
    from pyuvdata.telescopes import KNOWN_TELESCOPES
    json_obj = json.dumps(KNOWN_TELESCOPES, sort_keys=True, indent=4)
    json_obj = json_obj[:-1] + " }"
    print('.. code-block:: JavaScript\n\n {json_str}\n\n'.format(json_str=json_obj))

Related class and functions
---------------------------

.. automodule:: pyuvdata.telescopes
  :members:
back to top