https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 2b219e0a1c851c6dc1e12400b0a037b9bd7e8351 authored by Matthew Kolopanis on 28 April 2020, 00:40:04 UTC, committed by Paul La Plante on 28 April 2020, 03:11:57 UTC
1 parent 0081bd9
Raw File
Tip revision: 2b219e0a1c851c6dc1e12400b0a037b9bd7e8351 authored by Matthew Kolopanis on 28 April 2020, 00:40:04 UTC
try sudo update
Tip revision: 2b219e0
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