Gridding and Degridding¶
This section contains routines for
Gridding complex visibilities onto an image.
Degridding complex visibilities from an image.
Nifty¶
Dask wrappers around Nifty’s Gridder.
Dask¶
|
Returns a wrapper around a NIFTY GridderConfiguration object. |
|
Grids the supplied visibilities in parallel. |
|
Computes the dirty image from gridded visibilities and the gridding configuration. |
|
Degrids the visibilities from the supplied grid in parallel. |
|
Computes model visibilities from an image and a gridding configuration. |
- africanus.gridding.nifty.dask.grid_config(nx=1024, ny=1024, eps=2e-13, cell_size_x=2.0, cell_size_y=2.0)[source]¶
Returns a wrapper around a NIFTY GridderConfiguration object.
- Parameters
- nxint, optional
Number of X pixels in the grid. Defaults to 1024.
- nyint, optional
Number of Y pixels in the grid. Defaults to 1024.
- cell_size_xfloat, optional
Cell size of the X pixel in arcseconds. Defaults to 2.0.
- cell_size_yfloat, optional
Cell size of the Y pixel in arcseconds. Defaults to 2.0.
- epsfloat
Gridder accuracy error. Defaults to 2e-13
- Returns
- grid_config
GridderConfigWrapper The NIFTY Gridder Configuration
- grid_config
- africanus.gridding.nifty.dask.grid(vis, uvw, flags, weights, frequencies, grid_config, wmin=- 1e+30, wmax=1e+30, streams=None)[source]¶
Grids the supplied visibilities in parallel. Note that a grid is create for each visibility chunk.
- Parameters
- vis
dask.array.Array visibilities of shape
(row, chan, corr)- uvw
dask.array.Array uvw coordinates of shape
(row, 3)- flags
dask.array.Array flags of shape
(row, chan, corr)- weights
dask.array.Array weights of shape
(row, chan, corr).- frequencies
dask.array.Array frequencies of shape
(chan,)- grid_config
GridderConfigWrapper Gridding Configuration
- wminfloat
Minimum W coordinate to grid. Defaults to -1e30.
- wmaxfloat
Maximum W coordinate to grid. Default to 1e30.
- streamsint, optional
Number of parallel gridding operations. Default to None, in which case as many grids as visibility chunks will be created.
- vis
- Returns
- grid
dask.array.Array grid of shape
(ny, nx, corr)
- grid
- africanus.gridding.nifty.dask.dirty(grid, grid_config)[source]¶
Computes the dirty image from gridded visibilities and the gridding configuration.
- Parameters
- grid
dask.array.Array Gridded visibilities of shape
(nv, nu, ncorr)- grid_config
GridderConfigWrapper Gridding configuration
- grid
- Returns
- dirty
dask.array.Array dirty image of shape
(ny, nx, corr)
- dirty
- africanus.gridding.nifty.dask.degrid(grid, uvw, flags, weights, frequencies, grid_config, wmin=- 1e+30, wmax=1e+30)[source]¶
Degrids the visibilities from the supplied grid in parallel.
- Parameters
- grid
dask.array.Array gridded visibilities of shape
(ny, nx, corr)- uvw
dask.array.Array uvw coordinates of shape
(row, 3)- flags
dask.array.Array flags of shape
(row, chan, corr)- weights
dask.array.Array weights of shape
(row, chan, corr). Currently unsupported and ignored.- frequencies
dask.array.Array frequencies of shape
(chan,)- grid_config
GridderConfigWrapper Gridding Configuration
- wminfloat
Minimum W coordinate to grid. Defaults to -1e30.
- wmaxfloat
Maximum W coordinate to grid. Default to 1e30.
- grid
- Returns
- grid
dask.array.Array grid of shape
(ny, nx, corr)
- grid
- africanus.gridding.nifty.dask.model(image, grid_config)[source]¶
Computes model visibilities from an image and a gridding configuration.
- Parameters
- image
dask.array.Array Image of shape
(ny, nx, corr).- grid_config
GridderConfigWrapper nifty gridding configuration object
- image
- Returns
- model_vis
dask.array.Array Model visibilities of shape
(nu, nv, corr).
- model_vis
wgridder¶
Wrappers around ‘ducc.wgridder <https://gitlab.mpcdf.mpg.de/mtr/ducc>`_.
Numpy¶
|
Compute visibility to image mapping using ducc gridder i.e. |
|
Compute image to visibility mapping using ducc degridder i.e. |
|
Compute residual image given a model and visibilities using ducc degridder i.e. |
|
Compute action of Hessian on an image using ducc |
- africanus.gridding.wgridder.dirty(uvw, freq, vis, freq_bin_idx, freq_bin_counts, nx, ny, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute visibility to image mapping using ducc gridder i.e.
\[I^D = R^\dagger \Sigma^{-1} V\]where \(R^\dagger\) is an implicit gridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(I^D\) is the dirty image of shape(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.Note that, if self adjoint gridding and degridding operators are required then
weightsshould be the square root of what is typically referred to as imaging weights and should also be passed into the degridder. In this case, the data needs to be pre-whitened.- Parameters
- uvw
numpy.ndarray uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
numpy.ndarray Observational frequencies of shape
(chan,).- vis
numpy.ndarray Visibilities of shape
(row,chan).- freq_bin_idx
numpy.ndarray Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
numpy.ndarray The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- weights
numpy.ndarray, optional Imaging weights of shape
(row, chan).- flag:class:numpy.ndarray, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one. If set to zero will use all available cores.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- model
numpy.ndarray Dirty image corresponding to visibilities of shape
(nband, nx, ny).
- model
- africanus.gridding.wgridder.model(uvw, freq, image, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True)[source]¶
Compute image to visibility mapping using ducc degridder i.e.
\[V = Rx\]where \(R\) is an implicit degridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(x\) is the image of shape(band, nx, ny).The number of imaging bands
(band)has to be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.There is an option to provide weights during degridding to cater for self adjoint gridding and degridding operators. In this case
weightsshould actually be the square root of what is typically referred to as imaging weights. In this case the degridder computes the whitened model visibilities i.e.\[V = \Sigma^{-\frac{1}{2}} R x\]where \(\Sigma\) refers to the inverse of the weights (i.e. the data covariance matrix when using natural weighting).
- Parameters
- uvw
numpy.ndarray uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
numpy.ndarray Observational frequencies of shape
(chan,).- model
numpy.ndarray Model image to degrid of shape
(nband, nx, ny).- freq_bin_idx
numpy.ndarray Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
numpy.ndarray The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- weights
numpy.ndarray, optional Imaging weights of shape
(row, chan).- flag:class:numpy.ndarray, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one. If set to zero will use all available cores.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- uvw
- Returns
- vis
numpy.ndarray Visibilities corresponding to
modelof shape(row,chan).
- vis
- africanus.gridding.wgridder.residual(uvw, freq, image, vis, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute residual image given a model and visibilities using ducc degridder i.e.
\[I^R = R^\dagger \Sigma^{-1}(V - Rx)\]where \(R\) is an implicit degridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(x\) is the image of shape(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.Note that, if the gridding and degridding operators both apply the square root of the imaging weights then the visibilities that are passed in should be pre-whitened. In this case the function computes
\[I^R = R^\dagger \Sigma^{-\frac{1}{2}}(\tilde{V} - \Sigma^{-\frac{1}{2}}Rx)\]which is identical to the above expression if \(\tilde{V} = \Sigma^{-\frac{1}{2}}V\).
- Parameters
- uvw
numpy.ndarray uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
numpy.ndarray Observational frequencies of shape
(chan,).- model
numpy.ndarray Model image to degrid of shape
(band, nx, ny).- vis
numpy.ndarray Visibilities of shape
(row,chan).- weights
numpy.ndarray Imaging weights of shape
(row, chan).- freq_bin_idx
numpy.ndarray Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
numpy.ndarray The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- flag:class:numpy.ndarray, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- nuint, optional
The number of pixels in the padded grid along the \(x\) direction. Chosen automatically by default.
- nvint, optional
The number of pixels in the padded grid along the \(y\) direction. Chosen automatically by default.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- residual
numpy.ndarray Residual image corresponding to
modelof shape(band, nx, ny).
- residual
- africanus.gridding.wgridder.hessian(uvw, freq, image, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute action of Hessian on an image using ducc
\[R^\dagger \Sigma^{-1} R x\]where \(R\) is an implicit degridding operator and \(x\) is the image of shape
(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.- Parameters
- uvw
numpy.ndarray uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
numpy.ndarray Observational frequencies of shape
(chan,).- model
numpy.ndarray Model image to degrid of shape
(band, nx, ny).- weights
numpy.ndarray Imaging weights of shape
(row, chan).- freq_bin_idx
numpy.ndarray Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
numpy.ndarray The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- flag:class:numpy.ndarray, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- nuint, optional
The number of pixels in the padded grid along the \(x\) direction. Chosen automatically by default.
- nvint, optional
The number of pixels in the padded grid along the \(y\) direction. Chosen automatically by default.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- residual
numpy.ndarray Residual image corresponding to
modelof shape(band, nx, ny).
- residual
Dask¶
|
Compute visibility to image mapping using ducc gridder i.e. |
|
Compute image to visibility mapping using ducc degridder i.e. |
|
Compute residual image given a model and visibilities using ducc degridder i.e. |
|
Compute action of Hessian on an image using ducc |
- africanus.gridding.wgridder.dask.dirty(uvw, freq, vis, freq_bin_idx, freq_bin_counts, nx, ny, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute visibility to image mapping using ducc gridder i.e.
\[I^D = R^\dagger \Sigma^{-1} V\]where \(R^\dagger\) is an implicit gridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(I^D\) is the dirty image of shape(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.Note that, if self adjoint gridding and degridding operators are required then
weightsshould be the square root of what is typically referred to as imaging weights and should also be passed into the degridder. In this case, the data needs to be pre-whitened.- Parameters
- uvw
dask.array.Array uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
dask.array.Array Observational frequencies of shape
(chan,).- vis
dask.array.Array Visibilities of shape
(row,chan).- freq_bin_idx
dask.array.Array Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
dask.array.Array The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- weights
dask.array.Array, optional Imaging weights of shape
(row, chan).- flag:class:dask.array.Array, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one. If set to zero will use all available cores.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- model
dask.array.Array Dirty image corresponding to visibilities of shape
(nband, nx, ny).
- model
- africanus.gridding.wgridder.dask.model(uvw, freq, image, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True)[source]¶
Compute image to visibility mapping using ducc degridder i.e.
\[V = Rx\]where \(R\) is an implicit degridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(x\) is the image of shape(band, nx, ny).The number of imaging bands
(band)has to be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.There is an option to provide weights during degridding to cater for self adjoint gridding and degridding operators. In this case
weightsshould actually be the square root of what is typically referred to as imaging weights. In this case the degridder computes the whitened model visibilities i.e.\[V = \Sigma^{-\frac{1}{2}} R x\]where \(\Sigma\) refers to the inverse of the weights (i.e. the data covariance matrix when using natural weighting).
- Parameters
- uvw
dask.array.Array uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
dask.array.Array Observational frequencies of shape
(chan,).- model
dask.array.Array Model image to degrid of shape
(nband, nx, ny).- freq_bin_idx
dask.array.Array Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
dask.array.Array The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- weights
dask.array.Array, optional Imaging weights of shape
(row, chan).- flag:class:dask.array.Array, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one. If set to zero will use all available cores.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- uvw
- Returns
- vis
dask.array.Array Visibilities corresponding to
modelof shape(row,chan).
- vis
- africanus.gridding.wgridder.dask.residual(uvw, freq, image, vis, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute residual image given a model and visibilities using ducc degridder i.e.
\[I^R = R^\dagger \Sigma^{-1}(V - Rx)\]where \(R\) is an implicit degridding operator, \(V\) denotes visibilities of shape
(row, chan)and \(x\) is the image of shape(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.Note that, if the gridding and degridding operators both apply the square root of the imaging weights then the visibilities that are passed in should be pre-whitened. In this case the function computes
\[I^R = R^\dagger \Sigma^{-\frac{1}{2}}(\tilde{V} - \Sigma^{-\frac{1}{2}}Rx)\]which is identical to the above expression if \(\tilde{V} = \Sigma^{-\frac{1}{2}}V\).
- Parameters
- uvw
dask.array.Array uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
dask.array.Array Observational frequencies of shape
(chan,).- model
dask.array.Array Model image to degrid of shape
(band, nx, ny).- vis
dask.array.Array Visibilities of shape
(row,chan).- weights
dask.array.Array Imaging weights of shape
(row, chan).- freq_bin_idx
dask.array.Array Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
dask.array.Array The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- flag:class:dask.array.Array, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- nuint, optional
The number of pixels in the padded grid along the \(x\) direction. Chosen automatically by default.
- nvint, optional
The number of pixels in the padded grid along the \(y\) direction. Chosen automatically by default.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- residual
dask.array.Array Residual image corresponding to
modelof shape(band, nx, ny).
- residual
- africanus.gridding.wgridder.dask.hessian(uvw, freq, image, freq_bin_idx, freq_bin_counts, cell, weights=None, flag=None, celly=None, epsilon=1e-05, nthreads=1, do_wstacking=True, double_accum=False)[source]¶
Compute action of Hessian on an image using ducc
\[R^\dagger \Sigma^{-1} R x\]where \(R\) is an implicit degridding operator and \(x\) is the image of shape
(band, nx, ny).The number of imaging bands
(band)must be less than or equal to the number of channels(chan)at which the data were obtained. The mapping from(chan)to(band)is described byfreq_bin_idxandfreq_bin_countsas described below.- Parameters
- uvw
dask.array.Array uvw coordinates at which visibilities were obtained with shape
(row, 3).- freq
dask.array.Array Observational frequencies of shape
(chan,).- model
dask.array.Array Model image to degrid of shape
(band, nx, ny).- weights
dask.array.Array Imaging weights of shape
(row, chan).- freq_bin_idx
dask.array.Array Starting indices of frequency bins for each imaging band of shape
(band,).- freq_bin_counts
dask.array.Array The number of channels in each imaging band of shape
(band,).- cellfloat
The cell size of a pixel along the \(x\) direction in radians.
- flag:class:dask.array.Array, optional
Flags of shape
(row,chan). Will only process visibilities for which flag!=0- cellyfloat, optional
The cell size of a pixel along the \(y\) direction in radians. By default same as cell size along \(x\) direction.
- nuint, optional
The number of pixels in the padded grid along the \(x\) direction. Chosen automatically by default.
- nvint, optional
The number of pixels in the padded grid along the \(y\) direction. Chosen automatically by default.
- epsilonfloat, optional
The precision of the gridder with respect to the direct Fourier transform. By deafult, this is set to
1e-5for single precision and1e-7for double precision.- nthreadsint, optional
The number of threads to use. Defaults to one.
- do_wstackingbool, optional
Whether to correct for the w-term or not. Defaults to True
- double_accumbool, optional
If true ducc will accumulate in double precision regardless of the input type.
- uvw
- Returns
- residual
dask.array.Array Residual image corresponding to
modelof shape(band, nx, ny).
- residual
Utilities¶
|
Estimate the cell size in arcseconds given baseline |
- africanus.gridding.util.estimate_cell_size(u, v, wavelength, factor=3.0, ny=None, nx=None)[source]¶
Estimate the cell size in arcseconds given baseline
uandvcoordinates, as well as thewavelengths, \(\lambda\).The cell size is computed as:
\[ \begin{align}\begin{aligned}\Delta u = 1.0 / \left( 2 \times \text{ factor } \times \max (\vert u \vert) / \min( \lambda) \right)\\\Delta v = 1.0 / \left( 2 \times \text{ factor } \times \max (\vert v \vert) / \min( \lambda) \right)\end{aligned}\end{align} \]If
nyandnxare provided the following checks are performed and exceptions are raised on failure:\[ \begin{align}\begin{aligned}\Delta u * \text{ ny } \leq \min (\lambda) / \min (\vert u \vert)\\\Delta v * \text{ nx } \leq \min (\lambda) / \min (\vert v \vert)\end{aligned}\end{align} \]- Parameters
- u
numpy.ndarrayor float Maximum
ucoordinate in metres.- v
numpy.ndarrayor float Maximum
vcoordinate in metres.- wavelength
numpy.ndarrayor float Wavelengths, in metres.
- factorfloat, optional
Scaling factor
- nyint, optional
Grid y dimension
- nxint, optional
Grid x dimension
- u
- Returns
numpy.ndarrayCell size of
uandvin arcseconds with shape(2,)
- Raises
- ValueError
If the cell size criteria are not matched.