Gents,
From the latest version of the <Animation> script - at the following point in the code (line 1110 in v2.91 from Carlos) :-
for (var c=0; c < dest.mainView.image.numberOfChannels ; c++)
{
var st = new Array();
st[0] = parent.Images[i].mainView.id;
if (dest.mainView.image.numberOfChannels==1) {st[1]=chanelName[3];Channel[3]=true;}
else {st[1]=chanelName[c]; Channel[c]=true;};
st[2] = String(parent.Images[i].exposure);
st[3] = Number(r*s[i][c].mean).toFixed(n);
st[4] = Number(r*s[i][c].median).toFixed(n);
st[5] = Number(r*s[i][c].avgDev).toFixed(n);
st[6] = Number(r*s[i][c].stdDev).toFixed(n);
st[7] = Number(r*s[i][c].minimum).toFixed(n);
st[8] = Number(r*s[i][c].maximum).toFixed(n);
j++;
stat[j]=st;
for (var k=0; k < st.length; k++)
{
if (hl[k] < String(st[k]).length) hl[k] = String(st[k]).length;
}
}
How can the script be modified to include extra information from the FITS Header?
Specifically, my new QHY10 imager provides a "Temperature" parameter, and I would like to be able to include that in the series analysis extraction.
I can see that the basic format is
st[2] = String(parent.Images[j].exposure), but (as usual) I can't find out what alternatives there are for
.exposure Any suggestions?
Nikolai, I can envisage an upgraded script that provides a further dialogue box, where all of the available FITS Header parameters are presented to the user, and a check-box option is provided to allow users to select those data elements required.
Sorry, but you know me - I am always looking for 'something more' (I still have beer available, and Jedi Cookies
)