Revision d31fe849ec9af8bd5a4e4e4233aaa8e8db702b40 authored by Matthew Kolopanis on 28 May 2019, 22:43:51 UTC, committed by Bryna Hazelton on 29 May 2019, 19:01:41 UTC
1 parent 255cb0f
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