-
I notice that some of your plugin callback methods return `True`. What is the different between returning `True`, `False`, or `None` (nothing)?
pllim updated
9 years ago
-
So, for my own reasons, I decided to disabled the built-in `Contents` global plugin and write my own modified version. I disabled it like this:
```
from ginga import main as gmain
def main():
# …
pllim updated
9 years ago
-
For testing purposes, I have been starting Ginga with the same four images like this:
```
$ ginga image1.fits image2.fits image3.fits image4.fits
```
I notice that their ordering in `Thumbs` are not…
pllim updated
9 years ago
-
It would be more convenient if `FBrowser` plugin can read in user preference on what root path to display, instead of starting out at `HOME` every time; Something like `imdir` in IRAF's `login.cl`.
pllim updated
9 years ago
-
I noticed this when I had 20 multi-extension FITS loaded at the same time. If `Contents` attempts to perform image switching operation while table of contents is being populated, I get this:
```
Fi…
pllim updated
9 years ago
-
This is a feedback from my colleague, who does not have a GitHub account, using Ginga: He pressed the "hand" icon to do free panning, but the free-pan mode is inactive as soon as he releases the left …
pllim updated
9 years ago
-
Currently, when user attempts to open a FITS image and then press Cancel, the GUI exits ungracefully as follows:
```
$ python example2_qt.py
No handlers could be found for logger "example2"
Traceback…
pllim updated
9 years ago
-
Currently, in an exposure with `[PRIMARY, SCI, ERR, DQ]` extensions, I have to explicitly use `MultiDim` to access the primary header. A more intuitive behaviour for this format is to have `Header` of…
pllim updated
9 years ago
-
From what I understand in `io_fits`, `save_as_file()` only saves the extension being displayed, not the entire HDU list associated with the displayed image. What was the original intention of this fun…
pllim updated
9 years ago
-
I use `MultiDim` on multi-extension FITS as such
```
0 Primary Header
1 SCI
2 ERR
3 DQ
```
When I select Extension 0, I get
`Error loading FITS HDU #1: 'NoneType' object has no attribute…
pllim updated
9 years ago