Exemplo n.º 1
0
 def test_passthrough(self):
     to_cube = Path('test_passthrough.cub')
     isis.hi2isis(HiRISE_img, to=to_cube)
     print('\n  about to call qview()')
     isis.qview(to_cube)
     print('  just got back from qview()')
     to_cube.unlink()
Exemplo n.º 2
0
 def setUp(self):
     self.cub = Path('test_getkey.cub')
     isis.hi2isis(img, to=self.cub)
Exemplo n.º 3
0
 def setUp(self):
     self.cub = Path('test_histat.cub')
     isis.hi2isis(img, to=self.cub)
Exemplo n.º 4
0
 def test_hi2isis(self):
     tocube = Path('test_hi2isis.cub')
     isis.hi2isis(self.img, to=tocube)
     self.assertTrue(tocube.is_file())
     tocube.unlink()