diff --git a/src/pyuvdata/beam_interface.py b/src/pyuvdata/beam_interface.py index 0bd0bde9a..23a4e0f2b 100644 --- a/src/pyuvdata/beam_interface.py +++ b/src/pyuvdata/beam_interface.py @@ -266,13 +266,15 @@ def compute_response( spline_opts : dict Provide options to numpy.RectBivariateSpline. This includes spline order parameters `kx` and `ky`, and smoothing parameter `s`. Only - applies if beam is a UVBeam and interpolation_function is "az_za_simple". + applies if beam is a UVBeam and interpolation_function is "az_za_simple" + or "az_za_map_coordinates". check_azza_domain : bool Whether to check the domain of az/za to ensure that they are covered by the intrinsic data array. Checking them can be quite computationally expensive. Conversely, if the passed az/za are outside of the domain, they will be silently extrapolated and the behavior is not well-defined. Only - applies if beam is a UVBeam and interpolation_function is "az_za_simple". + applies if beam is a UVBeam and interpolation_function is "az_za_simple" + or "az_za_map_coordinates". Returns ------- diff --git a/src/pyuvdata/uvbeam/uvbeam.py b/src/pyuvdata/uvbeam/uvbeam.py index b07a19e26..d8e52ccaf 100644 --- a/src/pyuvdata/uvbeam/uvbeam.py +++ b/src/pyuvdata/uvbeam/uvbeam.py @@ -2064,7 +2064,7 @@ def interp( or for frequency only interpolation. reuse_spline : bool Save the interpolation functions for reuse. Only applies for - `az_za_simple` interpolation. + `az_za_simple` and `az_za_map_coordinates` interpolation. spline_opts : dict Provide options to numpy.RectBivariateSpline. This includes spline order parameters `kx` and `ky`, and smoothing parameter `s`. @@ -2083,7 +2083,7 @@ def interp( intrinsic data array. Checking them can be quite computationally expensive. Conversely, if the passed az/za are outside of the domain, they will be silently extrapolated and the behavior is not well-defined. Only - applies for `az_za_simple` interpolation. + applies for `az_za_simple` and `az_za_map_coordinates` interpolation. return_basis_vector : bool Whether to return the interpolated basis vectors. Prior to v3.1.1 these were always returned. In v3.3+ they will _not_ be returned by default