Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: SUIT
-
Labels:
-
Story Points:1
-
Epic Link:
-
Sprint:SUIT Sprint 2016-12, SUIT Sprint 2017-01
-
Team:Science User Interface
Description
Currently the image title in the triview has filter name, like u, g, i, ...
It would be nice to add more information about the image, say deepCoaddId or scienceCcdExposureId.
Trey added:
see LsstSdssRequestList.js
[LZ 1-4-2017]
- For DeepCoadd,
Get the baseId from the selected row:
baseId = deepCoaddId - deepCoaddId % 8
For each filter, the title is:
id = baseId + filterId ( numerical addition here)
title = id+"-"+filterName - For science CCD, its id structure is different than deepCoaddId
scienceCcdExposureId = run+filterId + field ( string concatenation)
I used the DeepCoaddID and ScienceCcdExposureID as the base and then add the filter after the base. This changes were part of the
DM-8157which was merged.Please verify to see if the information is enough.
Thanks!