00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 import shutil
00070 import casac
00071 from tasks import *
00072 from taskinit import *
00073 from __main__ import *
00074 import unittest
00075
00076
00077 class ia_subimage_test(unittest.TestCase):
00078
00079 def setUp(self):
00080 self.myia = iatool()
00081
00082 def tearDown(self):
00083 self.myia.done()
00084
00085 def test_stretch(self):
00086 """Test the stretch parameter"""
00087 myia = self.myia
00088 myia.fromshape("mask1.im", [20, 30, 4, 10])
00089 myia.fromshape("mask2.im", [20, 30, 4, 1])
00090 myia.fromshape("mask3.im", [20, 30, 4, 2])
00091
00092 imname = "xx.im"
00093 myia.fromshape(imname, [20,30,4,10])
00094 mask1 = "mask1.im > 10"
00095 mm = myia.subimage("", mask=mask1)
00096 self.assertTrue(mm)
00097 mm = imsubimage(imagename=imname, mask=mask1)
00098 self.assertTrue(mm)
00099 mask2 = "mask2.im > 10"
00100 self.assertRaises(Exception, myia.subimage, "", mask=mask2, stretch=False)
00101 self.assertFalse(imsubimage(imname, "", mask=mask2, stretch=False))
00102 self.assertTrue(myia.subimage("", mask=mask2, stretch=True))
00103 self.assertTrue(imsubimage(imname, "", mask=mask2, stretch=True))
00104 mask3 = "mask3.im > 10"
00105 self.assertRaises(Exception, myia.subimage, "", mask=mask3, stretch=True)
00106 self.assertFalse(imsubimage(imname, "", mask=mask3, stretch=True))
00107
00108 def test_beams(self):
00109 """ Test per plane beams """
00110 myia = self.myia
00111
00112
00113 myia.fromshape("", [10, 10, 10, 4])
00114 myia.setrestoringbeam(
00115 "4arcsec", "2arcsec", "5deg", channel=0, polarization=0
00116 )
00117 for i in range(10):
00118 for j in range(4):
00119 myia.setrestoringbeam(
00120 qa.quantity(i + j + 2, "arcsec"),
00121 qa.quantity(i + j + 1, "arcsec"),
00122 qa.quantity("5deg"),
00123 channel=i, polarization=j
00124 )
00125 box = rg.box([2, 2, 2, 2], [5, 5, 5, 3])
00126 subim = myia.subimage("", region=box)
00127 for i in range(subim.shape()[2]):
00128 for j in range(subim.shape()[3]):
00129 self.assertTrue(
00130 subim.restoringbeam(channel=i, polarization=j)
00131 == myia.restoringbeam(channel=i+2, polarization=j+2)
00132 )
00133 box = rg.box([2, 2, 2, 2], [5, 5, 5, 2])
00134 subim = myia.subimage("", region=box, dropdeg=T)
00135 for i in range(subim.shape()[2]):
00136 self.assertTrue(
00137 subim.restoringbeam(channel=i, polarization=-1)
00138 == myia.restoringbeam(channel=i+2, polarization=2)
00139 )
00140 box = rg.box([2, 2, 6, 1], [5, 5, 6, 3])
00141 subim = myia.subimage("", region=box, dropdeg=T)
00142 for i in range(subim.shape()[2]):
00143 self.assertTrue(
00144 subim.restoringbeam(channel=-1, polarization=i)
00145 == myia.restoringbeam(channel=6, polarization=i+1)
00146 )
00147
00148 def suite():
00149 return [ia_subimage_test]