Ejemplo n.º 1
0
def convert_polimage_to_stokes(im: Image):
    """Convert a polarisation image to stokes IQUV (complex)

    For example:
        imIQUV = convert_polimage_to_stokes(impol)

    :param im: Complex Image in linear or circular
    :returns: Complex image

    See also
        :py:func:`rascil.processing_components.image.convert_stokes_to_polimage`
        :py:func:`rascil.data_models.polarisation.convert_stokes_to_circular`
        :py:func:`rascil.data_models.polarisation.convert_stokes_to_linear`

    """
    assert isinstance(im, Image)
    assert im.data.dtype == 'complex'

    if im.polarisation_frame == PolarisationFrame('linear'):
        cimarr = convert_linear_to_stokes(im.data)
        return create_image_from_array(cimarr, im.wcs, PolarisationFrame('stokesIQUV'))
    elif im.polarisation_frame == PolarisationFrame('circular'):
        cimarr = convert_circular_to_stokes(im.data)
        return create_image_from_array(cimarr, im.wcs, PolarisationFrame('stokesIQUV'))
    else:
        raise ValueError("Cannot convert %s to stokes" % (im.polarisation_frame.type))
Ejemplo n.º 2
0
def convert_polimage_to_stokes(im: Image, complex_image=False, **kwargs):
    """Convert a polarisation image to stokes IQUV (complex)

    For example:
        imIQUV = convert_polimage_to_stokes(impol)

    :param im: Complex Image in linear or circular
    :param complex_image: Return complex image?
    :returns: Complex or Real image

    See also
        :py:func:`rascil.processing_components.image.operations.convert_stokes_to_polimage`
        :py:func:`rascil.data_models.polarisation.convert_stokes_to_circular`
        :py:func:`rascil.data_models.polarisation.convert_stokes_to_linear`

    """
    assert isinstance(im, Image)
    assert im.data.dtype == 'complex'

    def to_required(cimarr):
        if complex_image:
            return cimarr
        else:
            return numpy.real(cimarr)

    if im.polarisation_frame == PolarisationFrame('linear'):
        cimarr = convert_linear_to_stokes(im.data)
        return create_image_from_array(to_required(cimarr), im.wcs,
                                       PolarisationFrame('stokesIQUV'))
    elif im.polarisation_frame == PolarisationFrame('linearnp'):
        cimarr = convert_linear_to_stokes(im.data)
        return create_image_from_array(to_required(cimarr), im.wcs,
                                       PolarisationFrame('stokesIQ'))
    elif im.polarisation_frame == PolarisationFrame('circular'):
        cimarr = convert_circular_to_stokes(im.data)
        return create_image_from_array(to_required(cimarr), im.wcs,
                                       PolarisationFrame('stokesIQUV'))
    elif im.polarisation_frame == PolarisationFrame('circularnp'):
        cimarr = convert_circular_to_stokes(im.data)
        return create_image_from_array(to_required(cimarr), im.wcs,
                                       PolarisationFrame('stokesIV'))
    elif im.polarisation_frame == PolarisationFrame('stokesI'):
        return create_image_from_array(to_required(im.data), im.wcs,
                                       PolarisationFrame('stokesI'))
    else:
        raise ValueError("Cannot convert %s to stokes" %
                         (im.polarisation_frame.type))
Ejemplo n.º 3
0
def convert_visibility_to_stokes(vis):
    """Convert the polarisation frame data into Stokes parameters.

    :param vis: Visibility
    :return: Converted visibility data.
    """
    poldef = vis.polarisation_frame
    if poldef == PolarisationFrame('linear'):
        vis.data['vis'] = convert_linear_to_stokes(vis.data['vis'], polaxis=1)
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    elif poldef == PolarisationFrame('circular'):
        vis.data['vis'] = convert_circular_to_stokes(vis.data['vis'],
                                                     polaxis=1)
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    return vis
Ejemplo n.º 4
0
def convert_blockvisibility_to_stokes(vis):
    """Convert the polarisation frame data into Stokes parameters.

    Args:
    vis (obj): RASCIL visibility data.

    Returns:
    vis: Converted visibility data.
    """
    poldef = vis.polarisation_frame
    if poldef == PolarisationFrame('linear'):
        vis.data['vis'] = convert_linear_to_stokes(vis.data['vis'], polaxis=4)
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    elif poldef == PolarisationFrame('circular'):
        vis.data['vis'] = convert_circular_to_stokes(vis.data['vis'],
                                                     polaxis=4)
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    return vis
Ejemplo n.º 5
0
def convert_blockvisibility_to_stokes(vis):
    """Convert the polarisation frame data into Stokes parameters.

    :param vis: Visibility
    :return: Converted visibility data.
    """
    poldef = vis.polarisation_frame
    if poldef == PolarisationFrame('linear'):
        vis.data['vis'] = convert_linear_to_stokes(vis.data['vis'], polaxis=4)
        vis.data['flags'] = \
            numpy.logical_or(vis.flags[..., 0], vis.flags[..., 3])[
                ..., numpy.newaxis]
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    elif poldef == PolarisationFrame('circular'):
        vis.data['vis'] = convert_circular_to_stokes(vis.data['vis'],
                                                     polaxis=4)
        vis.data['flags'] = \
            numpy.logical_or(vis.flags[..., 0], vis.flags[..., 3])[
                ..., numpy.newaxis]
        vis.polarisation_frame = PolarisationFrame('stokesIQUV')
    return vis
Ejemplo n.º 6
0
 def test_stokes_linear_stokes_conversion(self):
     stokes = numpy.array([1, 0.5, 0.2, -0.1])
     linear = convert_stokes_to_linear(stokes)
     assert_array_almost_equal(
         convert_linear_to_stokes(linear).real, stokes, 15)
 def test_stokes_linearnp_stokesIQ_conversion(self):
     stokes = numpy.array([1, 0.5])
     linearnp = convert_stokes_to_linear(stokes, 0)
     assert_array_almost_equal(
         convert_linear_to_stokes(linearnp, 0).real, stokes, 15)