Revision 636372672acb2e3fbc80259a38fe94b8e809a675 authored by Bryna Hazelton on 24 March 2020, 22:16:56 UTC, committed by Paul La Plante on 24 March 2020, 23:37:51 UTC
1 parent c6046d2
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