Skip to main content

A pythonic interface for radio astronomy interferometry data

Project description

pyuvdata

CircleCI codecov DOI

pyuvdata defines a pythonic interface to interferometric data sets. Currently pyuvdata supports reading and writing of miriad, uvfits, CASA measurement sets and uvh5 files and reading of FHD (Fast Holographic Deconvolution) visibility save files, SMA Mir files and MWA correlator FITS files.

API documentation and a tutorial is hosted on ReadTheDocs.

Motivation

The main goals are:

  1. To provide a high quality, well documented path to convert between data formats
  2. Support the direct use of datasets from python with minimal software
  3. Provide precise data definition via both human readable code and high quality online documentation

Package Details

pyuvdata has four major user classes:

  • UVData: supports interferometric data (visibilities) and associated metadata
  • UVCal: supports interferometric calibration solutions (antenna-based) and associated metadata (Note that this is a fairly new object, consider it to be a beta version)
  • UVBeam: supports primary beams (E-field or power) and associated metadata (Note that this is a fairly new object, consider it to be a beta version)
  • UVFlag: A class to handle the manipulation and combination of flags for data sets. Also can convert raw data quality metrics into flags using thresholding. (This object is very new and experimental. Consider it to be a beta version)

UVData File standard notes

  • miriad has been thoroughly tested with aipy-style miriad files and minimally tested with ATCA files
  • uvfits conforms to AIPS memo 117 (as of March 2020). It is tested against FHD, CASA, and AIPS. However AIPS is limited to <80 antennas and CASA uvfits import does not seem to support >255 antennas. Users with data sets containing > 255 antennas should use the measurement set writer instead.
  • CASA measurement sets, primarily conforming to CASA Memo 229, with some elements taken from the proposed v3.0 format documented in CASA Memo 264. Measurement sets are tested against VLA and MWA data sets, (the latter filled via cotter), with some manual verification haven been performed against ALMA and SMA data sets, the latter filled using the importuvfits task of CASA. tested against ALMA-filled datasets and with SMA datasets
  • uvh5 is an HDF5-based file format defined by the HERA collaboration, details in the uvh5 memo. Note that this is a somewhat new format, so it may evolve a bit but we will strive to make future versions backwards compatible with the current format. It is probably not compatible with other interferometric HDF5 files defined by other groups.
  • FHD (read-only support, tested against MWA and PAPER data)
  • MIR (read-only support, though experimental write functions are available, tested against SMA data)
  • MWA correlator FITS files (read-only support, tested against Cotter outputs and FHD)

UVCal file formats

  • calh5: a new format defined in pyuvdata, details to come in a forthcoming memo.
  • Measurement Set calibration files (read and write, gains/delay/bandpass supported, beta version). Tested against a limited set of SMA, LWA, and VLA calibration files generated in CASA.
  • calfits: a custom format defined in pyuvdata, details in the calfits_memo. Note that this format was recently defined and may change in coming versions, based on user needs. Consider it to be a beta version, but we will strive to make future versions backwards compatible with the current format.
  • FHD calibration files (read-only support)

UVBeam file formats

  • regularly gridded fits for both E-field and power beams
  • non-standard HEALPix fits for both E-field and power beams (in an ImageHDU rather than a binary table to support frequency, polarization and E-field vector axes)
  • read support for CST beam text files, with a defined yaml file format for metadata, details here: cst settings file

Under Development

  • UVCal: object and calfits file format (beta version)
  • UVBeam: object and beamfits file format (beta version)
  • UVFlag: object and HDF5 file format. (beta version)
  • Mir: object (part of UVData class) (beta version)
  • MirParser: object and python interface for MIR file format (beta version)

Known Issues and Planned Improvements

  • UVBeam: support phased-array antenna beams (e.g. MWA beams).
  • UVFlag: Adding requires a high level knowledge of individual objects. (see issue #653)

For details see the issue log.

Community Guidelines

Contributions to this package to add new file formats or address any of the issues in the issue log are very welcome, as are bug reports and feature requests. Please see our guide on contributing

Telescopes

pyuvdata has been used with data from the following telescopes. If you use it on data from a telescope we don't have listed here please let us know how it went via an issue! We would like to make pyuvdata generally useful to the community for as many telescopes as possible.

  • MWA
  • HERA
  • PAPER
  • LWA
  • ALMA
  • VLA
  • ATCA
  • SMA

Versioning

We use a generation.major.minor version number format. We use the generation number for very significant improvements or major rewrites, the major number to indicate substantial package changes (intended to be released every 3-4 months) and the minor number to release smaller incremental updates (intended to be released approximately monthly and which usually do not include breaking API changes). We do our best to provide a significant period (usually 2 major generations) of deprecation warnings for all breaking changes to the API. We track all changes in our changelog.

History

pyuvdata was originally developed in the low frequency 21cm community to support the development of and interchange of data between calibration and foreground subtraction pipelines. Particular focus has been paid to supporting drift and phased array modes.

Citation

Please cite pyuvdata by citing our JOSS paper:

Hazelton et al, (2017), pyuvdata: an interface for astronomical interferometeric datasets in python, Journal of Open Source Software, 2(10), 140, doi:10.21105/joss.00140

ADS Link; Bibtex entry

Installation

Simple installation via conda is available for users, developers should follow the directions under Developer Installation below.

For simple installation, the latest stable version is available via conda (preferred: conda install -c conda-forge pyuvdata) or pip (pip install pyuvdata).

There are some optional dependencies that are required for specific functionality, which will not be installed automatically by conda or pip. See Dependencies for details on installing optional dependencies.

Dependencies

Required:

  • astropy >= 6.0
  • docstring_parser>=0.15
  • h5py >= 3.4
  • numpy >= 1.23
  • pyerfa >= 2.0.1.1
  • python >= 3.10
  • pyyaml >= 5.4.1
  • scipy >= 1.8
  • setuptools_scm >= 8.1

Optional:

  • astropy-healpix >= 1.0.2 (for working with beams in HEALPix formats)
  • astroquery >= 0.4.4 (for enabling phasing to ephemeris objects using JPL-Horizons)
  • hdf5plugin >= 3.2.0 (for enabling bitshuffle and other hdf5 compression filters in uvh5 files)
  • lunarsky >=0.2.5 (for working with simulated datasets for lunar telescopes)
  • novas and novas_de405 (for using the NOVAS library for astrometry)
  • python-casacore >= 3.5.2 (for working with CASA measurement sets)

The numpy and astropy versions are important, so make sure these are up to date.

We suggest using conda to install all the dependencies. If you want to install python-casacore and astropy-healpix, you'll need to add conda-forge as a channel (conda config --add channels conda-forge).

If you do not want to use conda, the packages are also available on PyPI (python-casacore may require more effort, see details for that package below). You can install the optional dependencies via pip by specifying an option when you install pyuvdata, as in pip install pyuvdata[healpix] which will install all the required packages for using the HEALPix functionality in pyuvdata. The options that can be passed in this way are: [astroquery, casa, cst, hdf5_compression, healpix, lunar, novas, all, test, doc, dev]. The first set (astroquery, casa, cst, hdf5_compression, healpix, lunar, novas) enable various specific functionality while all will install all optional dependencies. The last three (test, doc, dev) may be useful for developers of pyuvdata.

Installing python-casacore

python-casacore requires the casacore c++ libraries. It can be installed easily using conda (python-casacore on conda-forge).

If you do not want to use conda, the casacore c++ libraries are available for ubuntu through the kern suite. On OSX, casacore is available through the ska-sa brew tap. The python-casacore library (with manual install instructions) is available at https://github.com/casacore/python-casacore

Developer Installation

Clone the repository using git clone https://github.com/RadioAstronomySoftwareGroup/pyuvdata.git

Navigate into the pyuvdata directory and run pip install . (note that python setup.py install does not work). Note that this will attempt to automatically install any missing dependencies. If you use anaconda or another package manager you might prefer to first install the dependencies as described in Dependencies.

To install without dependencies, run pip install --no-deps .

To compile the binary extension modules such that you can successfully run import pyuvdata from the top-level directory of your Git checkout, run: python setup.py build_ext --inplace

If you want to do development on pyuvdata, in addition to the other dependencies you will need the following packages:

  • pytest >= 6.2
  • pytest-cases >= 3.8.3
  • pytest-cov
  • cython >=3.0
  • coverage
  • pre-commit
  • matplotlib
  • sphinx
  • pypandoc

One other package, pytest-xdist, is not required, but can be used to speed up running the test suite by running tests in parallel. To use it call pytest with the -n auto option.

One way to ensure you have all the needed packages is to use the included environment.yaml file to create a new environment that will contain all the optional dependencies along with dependencies required for testing and development (conda env create -f environment.yaml). Alternatively, you can specify test, doc, or dev when installing pyuvdata (as in pip install pyuvdata[dev]) to install the packages needed for testing (including coverage and linting) and documentation development; dev includes everything in test and doc.

To use pre-commit to prevent committing code that does not follow our style, you'll need to run pre-commit install in the top level pyuvdata directory.

Tests

Uses the pytest package to execute test suite. From the source pyuvdata directory run pytest or python -m pytest.

Testing of UVFlag module requires the pytest-cases plug-in.

API

The primary interface to data from python is via the UVData object. It provides import functionality from all supported file formats (UVFITS, Miriad, UVH5, FHD, CASA measurement sets, SMA Mir, MWA correlator FITS) and export to UVFITS, Miriad, CASA measurement sets and UVH5 formats and can be interacted with directly. Similarly, the primary calibration, beam, and flag interfaces are via the UVCal, UVBeam, and UVflag objects. The attributes of the UVData, UVCal, UVBeam, and UVFlag objects are described in the UVData Parameters, UVCal Parameters, UVBeam Parameters and UVFlag Parameters pages on ReadTheDocs.

Maintainers

pyuvdata is maintained by the RASG Managers, which currently include:

  • Adam Beardsley (Winona State University)
  • Bryna Hazelton (University of Washington)
  • Garrett "Karto" Keating (Smithsonian Astrophysical Observatory)
  • Daniel Jacobs (Arizona State University)
  • Matt Kolopanis (Arizona State University)
  • Paul La Plante (University of Nevada, Las Vegas)
  • Jonathan Pober (Brown University)

Please use the channels discussed in the guide on contributing for code-related discussions. You can contact us privately if needed at rasgmanagers@gmail.com.

Acknowledgments

Support for pyuvdata was provided by NSF awards #1835421 and #1835120.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyuvdata-3.1.2.tar.gz (51.2 MB view details)

Uploaded Source

Built Distributions

pyuvdata-3.1.2-cp312-cp312-win_amd64.whl (47.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

pyuvdata-3.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyuvdata-3.1.2-cp312-cp312-macosx_11_0_arm64.whl (48.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyuvdata-3.1.2-cp312-cp312-macosx_10_9_x86_64.whl (48.4 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyuvdata-3.1.2-cp311-cp311-win_amd64.whl (47.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

pyuvdata-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyuvdata-3.1.2-cp311-cp311-macosx_11_0_arm64.whl (48.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyuvdata-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl (48.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyuvdata-3.1.2-cp310-cp310-win_amd64.whl (47.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

pyuvdata-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyuvdata-3.1.2-cp310-cp310-macosx_11_0_arm64.whl (48.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyuvdata-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl (48.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

File details

Details for the file pyuvdata-3.1.2.tar.gz.

File metadata

  • Download URL: pyuvdata-3.1.2.tar.gz
  • Upload date:
  • Size: 51.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyuvdata-3.1.2.tar.gz
Algorithm Hash digest
SHA256 4942e54d89f13be1a09f1f82c60a2c429c68eb8f8c504c97616e9b1e8a3dfaa6
MD5 51cbc4f3c32aae346b57b573f599eba5
BLAKE2b-256 4668718ebbc47d56ad9d2202b34a98be1e4c083663782dd581ccc90ebf12365c

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyuvdata-3.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 47.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyuvdata-3.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c862c63ffa921d3c1cd50a0ad8cebf080943d2b8e3d4946071f21a66ece7bdd4
MD5 d66bb9707a69c123c35463c74a5ebe6e
BLAKE2b-256 48e876939e25b61497bf5a892940eccc25fa6b697a3ece6117a8dddc3610efd8

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a81d74165a314dd5373e7f3994ef5dc8b426bd68cfd9f79ad198ab70f11f630
MD5 6e4b29e1b57b2ea15ca9713a887a1253
BLAKE2b-256 2989ecc60ff173d5951c329b3c26f78a749dd1cef90ae2409e9f69a922be8388

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 774e7fc86252b197ebf6b754985f5985d1b5187dd81833e80398ed20235c9911
MD5 0051ee790f1d25a0f763dd374554f22a
BLAKE2b-256 8d2f9e95726afee3d18aad5b26dd3115db3a2ccf673fd5fb85fcc36ea0684260

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7461833f19432fab3e948e81aa33d1d384250eafa70e895121e723457c97b114
MD5 267c821df2c9f7cd1f9c81439b9223c8
BLAKE2b-256 51d24d9ab53f4205c05351a41a9c9e18e94ac6905dfaf942a67a38afb41ebdb2

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyuvdata-3.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 47.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyuvdata-3.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd6437c796c041cac1402c303e033b5fcfb0bb366837e341e763a57ba49f16db
MD5 58836773ac1482c9671d076312996c8b
BLAKE2b-256 e964a2501c832248b630bef7243605ad2ed1973e29de9ffbc2c25b9c43e1f37a

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4754540e3fba04a1daa94ec1bd2ae00a139793d1bea14a336903ac2a1889e7da
MD5 6949dfc68deb777dad20f7f76ba82a3b
BLAKE2b-256 2c363f9e4c0d981e4ddde46fcb8084cb93b8f770199f3cca1f4a142f2bddfc6b

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ab02cfa2d0389d4cac44117bb0093e5d486481d8f125b6654fb516c94b1f9cd
MD5 72f17ba801e01e77b451a0900065838f
BLAKE2b-256 c65f5ad2457bed324302e4c34a47c2ba54484c11a59d91a7b269c8136b3d8dc2

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fb5d5ba2b774aefb8b50ab02964ad2063a76d31e0f1190ebb7d6bac68cd23a3
MD5 323581042fdc37547cf183c74edb050b
BLAKE2b-256 ee26929e01dfbc8fc20110d5f75b5dab69b197a67c6ef1004eb5ae172741ea99

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyuvdata-3.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 47.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyuvdata-3.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 531dc08c1d773b2a27e1c79c9de4c54b38883abbefba018fb5a285b78ed4c831
MD5 fec55314b1859f4eb9f67b6dee945dc6
BLAKE2b-256 d674514eeb9ecbb901e4391ff3454bb56d552c94b493f0aa0cd24af31b646190

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca7c8e6e68dfcc14fc92ce4f3f3bc32d49705dd9a9840cd919c686c7d6fb1203
MD5 82ec2d89deb3abf0c25d67648fbd1e44
BLAKE2b-256 1a560b99fd35a0cc0586b225f2e615ce90d0e4af4f218f39167b0f578202985d

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0b3b701366f9eefe0f29e73cea12e49464de7d5acabcccfc5e6c840050cde0d
MD5 2c621de2f05db2a9414e8bfc265d71d4
BLAKE2b-256 c471585b4bb8de6e6107aa00eed0a2f4b8e090cf2d7bf65318bfcefc11832f31

See more details on using hashes here.

File details

Details for the file pyuvdata-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyuvdata-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 132bc3c4f6b06ed9320c8f1e85472bffc1efb5032ae59d3473784f9eb57aa5e4
MD5 55cea04b763550ad8692567ea2d2d4f9
BLAKE2b-256 92427747665c66df13f518be9effeed8981d983d14ccc9c8fd1ec0cecbd52f55

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page