Skip to content

version 0.8.0

Compare
Choose a tag to compare
@sosey sosey released this 06 Nov 20:29
· 143 commits to master since this release
4689dc7
  • fixed show_xpa_commands bug sending None instead of empty string
    to the xpa library
  • fixed logic of connect method. When a target is given, do not look
    for an executable
  • logic bug in ds9 class init updated to warn when user specified target doesn't exist
  • cube arrays can now be loaded using the view() method in DS9. If there are 3 dimensions, the cube dialog will open automatically in DS9. Right now it supports 2 and 3 dimensional arrays.
import numpy as np
import imexam
rancube = np.ones([50, 50, 50]) * np.random.rand(50)
a=imexam.connect()
a.view(rancube)
a.zoom()
a.close()