Closed zoghbi-a closed 1 year ago
RE: jdaviz_demo notebook:
Excellent! This is really very cool! I'm adding my comments here:
Are there better links for interacting with the viewer itself? For example, viewing the image in log scale, and some of the other points above are ones that I have based on my use, but thinking those with other ds9 preferences will have different questions so possibly best to refer to some link, if such is available? I couldn't find exactly what I wanted from the imviz link above nor jdaviz links in the notebook.
Comments RE: data_find_download notebook
Now I am wondering if organizing these cookbooks a bit more makes sense... some are generic to heasarc (data_find_download, data_access, jdaviz, ...) and others are mission-specific (rxte, ixpe, etc.). As we add more it seems that some org or structure would help people find relevant ones. Are there better ways to tag so users can find the "tools" within the notebooks since these are largely serving as examples to use when building their own use cases so wonder if the mission specific ones are really specific or show-casing some tool that might be useful in other cases also? Something we might want to think about and discuss?
My only objection to the download notebook is that to me it doesn't belong in the sciserver set. Part of the point is that the data are already available locally. Maybe change that part to say something like, "Here's how to find them on sciserver. Alternatively, if you are not on SciServer, here's how you can download them."
My only objection to the download notebook is that to me it doesn't belong in the sciserver set. Part of the point is that the data are already available locally.
This is a good point. When I didn't originally, it was not meant for sciserver, but we don't have another place to put it (NAVO notebooks?).
Maybe change that part to say something like, "Here's how to find them on sciserver. Alternatively, if you are not on SciServer, here's how you can download them."
I think there is a need to for something like this even in sciserver where the location of observational data is not always trivial (e.g. It is not always {mission}/{obsid}). I like the suggestion of including both options.
Ah... I see. Yes, I agree that it is slightly strange to download in sciserver but also really agree that finding within the HEASARC volume is difficult and not always obvious. Does this notebook belong outside sciserver and then might have the data_access notebook point to this link? Then I think the data_access notebook should have some "how to access within HEASARC volume"... hmmm. Tess' suggestion may be best for short term but I think brings up the good point that access from within sciserver to files in the HEASARC data volume should be easier!
(e.g. It is not always {mission}/{obsid})
But if you have a URL, then you can say the user can remove everything in front of the "/FTP" and it should work.
(e.g. It is not always {mission}/{obsid})
But if you have a URL, then you can say the user can remove everything in front of the "/FTP" and it should work.
yes. I will make changes that reflect that.
RE: jdaviz_demo notebook:
Excellent! This is really very cool! I'm adding my comments here:
- (minor)... at imviz.show() step might add a note that this take several seconds to load... I was getting worried and wasn't sure if I need to do anything and started clicking around on the window!
I suggest more instructions for the selecting regions step. Creating subset 1 was easy enough but it wasn't obvious how to create a new region subset2 -- I kept overwriting subset1 somehow!
- e.g. before the "We now proceed..." markdown add something like "In the imviz window above, select regions by clicking first for the source region and resizing (this will be designated Subset1) ... To create a new region for the background ... " and possibly add a screengrab (or mark in screengrab above, which is missing this part:) that includes the bar above with "Import data" etc to show that the red dot allows changing, deleting, adding subsets, etc.
- some suggestions for extensions: how can one display the previous region files on this viewer (i.e. next time load the viewer with the regions already marked? Can we use other region shapes e.g. annular/rectangular regions? If these suggestions are too specific, maybe provide links to the imviz page: https://jdaviz.readthedocs.io/en/latest/imviz/index.html. Can we save the region files in WCS coords? (I can see wanting to overlay the saved regions on other datasets and would want to know that this could be saved/converted reliably to WCS, etc.)
Thanks @abasuzych, I replace the static image with a GIF to show the steps, and added some text to explain how to select the background region.
My knowledge of jdaviz is limited, but I can see that it can do regions with different shapes. For WCS, I think it uses the region
pakcage, so one has to use that and/or astropy to save the regions in WCS. We may do that separately. saving a region file in image coordinate should be enough for most of X-ray pipeline needs.
jdaviz_demo notebook comments:
• it seems to me that it might be good to make this more "heasarc-specific" by showing how to extract a spectrum from the nustar data using the defined regions using nuproducts (for example).
• The viewer object is defined but not used. Might be good to show how viewer options can be set by including a cell like:
viewer = imviz.default_viewer
viewer.zoom(1) viewer.zoom(2) viewer.set_colormap('Hot') viewer.stretch = 'sqrt' viewer.cuts = [.5, 30]
which displays the image using a "blackbody" colormap with a square root stretch with 0.5 < pixel val< 30
• it would also be good to show how we coulld find the chandra image of the field (assuming it exists) using pyvo and display it using imviz side by side with the nustar image - see https://www.youtube.com/watch?v=vZHiuDuKheQ
• I like displaying the viewer in a sidecar: imviz.show(loc='sidecar')
ª the output ds9 region file is written in pixel coordinates, which means the image binning is important when running nuproducts. I'm not sure if imviz supports writing regions in RA, Dec, radius.
• nuproducts allows the user to specify circular source and background regions as parameter inputs to nuproducts, so it's a bit redundant (& overkill?) to define these circular regions using imviz
Thanks @mfacorcoran, I added the viewer customization examples and a link to the NuSTAR analysis notebook to address the first point.
It was not immediately obvious to me how to save the regions in WCS. If anyone knows how to do it, please let me know.
I’m not sure saving in WCS is possible yet in imviz… at least I couldn’t find out how to do it…
I think I found a few options for WCS but haven't had time to test. I am putting ideas here in case anyone else wants to beat me to this. I will look into these more tmrw:
Ok - this is a little brute force-y, but I think it works:
from astropy.wcs import WCS from astropy.coordinates import SkyCoord from regions import PixCoord
wcs = WCS('nu_image.fits') regions['Subset 1'].to_sky(wcs=wcs).write('source_wcs.reg', format='ds9', overwrite=True)
!cat source_wcs.reg
imviz.load_data('nu_image.fits')
imviz.load_regions_from_file("source_wcs.reg")
imviz.show()
Thanks @abasuzych for figuring it out. That's great. f09a423 now includes that information.
This ready to be merged. If there are other comments, please let me know.
This PR has a few updates:
nicerl3-spect
andnicerl3-lc
).jdaviz
for image visualization and region files in a notebook along with heasoftpy.pyvo
to find data and then download it.