Skip to content

Commit

Permalink
minor wording fixes, better keyword ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
bhazelton authored and mkolopanis committed Feb 1, 2022
1 parent 08fcef2 commit 1d3959b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ redundant groups of baselines in an array, either by antenna positions or uvw
coordinates. Baselines are considered redundant if they are within a specified tolerance
distance (default is 1 meter).

The default behavior is to use ``uvw_array`` on the object (representing the baselines
The default behavior is to use the ``uvw_array`` on the object (representing the baselines
that have data on the object) to find redundancies among the uvw vectors. If the
``include_conjugates`` option is set, it will include baselines that are redundant when
reversed in the same group. In this case, a list of ``conjugates`` is returned as well,
Expand All @@ -1595,7 +1595,7 @@ redundancies instead of the ``uvw_array``. This can result in different behavior
all possible redundant baselines will be returned, not just the ones with data on the
object. In this case, the baselines are defined in the u>0 convention, so some of the
baselines may be conjugated relative to the baselines with data on the object. If the
``conjugate_bls`` keyword is set, it will also update baseline conjugation on the object
``conjugate_bls`` keyword is set, it will also update the baseline conjugation on the object
so that the baselines in the returned groups correspond with the baselines listed on the
object (except for antenna pairs with no associated data).

Expand Down
2 changes: 1 addition & 1 deletion pyuvdata/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3544,7 +3544,7 @@ def find_clusters(location_ids, location_vectors, tol, strict=False):


def get_baseline_redundancies(
baselines, baseline_vecs, tol=1.0, with_conjugates=False, include_conjugates=False,
baselines, baseline_vecs, tol=1.0, include_conjugates=False, with_conjugates=False
):
"""
Find redundant baseline groups.
Expand Down

0 comments on commit 1d3959b

Please sign in to comment.