This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
An attempt to embed an IPython Qt Terminal widget in-process | |
Current Behavior | |
---------------- | |
1) Multiple widgets can be instantiated | |
2) Each widget shares the same namespace (and underlying kernel) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from glue import core | |
from glue.core.data_factories import auto_data, tabular_data | |
from glue.core.link_helpers import Galactic2Equatorial, MultiLink | |
from glue.qt.glue_application import GlueApplication | |
from convert_xyz import galactic2xyz | |
# Load data from files | |
d = tabular_data('irdcs.fits') | |
d.label = "IRDC Catalog" |
NewerOlder