https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: 983ae27b57a28550b6ee1a58e13cc9161bb89327 authored by Bryna Hazelton on 15 January 2020, 19:15:00 UTC
update release date
Tip revision: 983ae27
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