https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 7499f04c7772238663399fc6b2091bbd0642be86 authored by Paul La Plante on 12 May 2021, 19:03:41 UTC, committed by Paul La Plante on 01 July 2021, 19:47:27 UTC
1 parent c46e8dc
Raw File
Tip revision: 7499f04c7772238663399fc6b2091bbd0642be86 authored by Paul La Plante on 12 May 2021, 19:03:41 UTC
Take initial stab at filename attribute for UVData
Tip revision: 7499f04
known_telescopes.rst
Known Telescopes
================

Known Telescope Data
--------------------
pyuvdata uses `Astropy sites <https://docs.astropy.org/en/stable/api/astropy.coordinates.EarthLocation.html#astropy.coordinates.EarthLocation.get_site_names>`_
for telescope location information, in addition to the following telescope information
that is tracked within pyuvdata:

.. 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