Revision 403b55fce8a5989811ff905219c30062199f2f3b authored by Bryna Hazelton on 07 July 2020, 23:27:35 UTC, committed by Matthew Kolopanis on 10 July 2020, 20:12:49 UTC
1 parent 033df02
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