Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs on how to select using the bls parameter #383

Merged
merged 1 commit into from
Feb 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/parameter_files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ these are passed into a simulation.
end_time: 2457458.175168105
duration_hours: 0.0276
select: # limit which baselines are simulated. Use any UVData.select keywords (except polarizations) and/or redundant_threshold
bls: [(1, 2), (3, 4), (5, 6)]
bls: '[(1, 2), (3, 4), (5, 6)]'
ant_str: 'cross'
antenna_nums: [1, 7, 9, 15]
redundant_threshold: 0.1 # redundancy threshold in meters. Only simulate one baseline per redundant group
Expand Down Expand Up @@ -287,6 +287,9 @@ Select
UVData.select, so it can accept any keyword that function accepts, except ones that
affect polarization because pyuvsim computes all polarizations.

Note that if using the ``bls`` parameter for selecting, which specifies a list of
baseline tuples, the list needs to be wrapped in a string in the obsparam yaml file.

In addition to the UVData.select keywords, a ``redundant_threshold`` parameter can
be specified. If it is present, only one baseline from each set of redundant
baselines is simulated. The ``redundant_threshold`` specifies how different two
Expand Down