https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 6a29f0944d806f0cf14bf44d62729e684ea50e95 authored by Garrett Keating on 03 August 2020, 13:20:12 UTC, committed by Garrett Keating on 03 August 2020, 13:20:12 UTC
1 parent dfea90c
Raw File
Tip revision: 6a29f0944d806f0cf14bf44d62729e684ea50e95 authored by Garrett Keating on 03 August 2020, 13:20:12 UTC
Updating environment file to reflect req for numpy 1.18 for complex dtypes in mir_parser.
Tip revision: 6a29f09
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