| |
 |
| <%= evFileName %> |
 |
| Start time | <%= expDate %> UTC |
| Integration time | <%= expInt %> sec. |
| Filter | <%= expFilt %> |
| Center J2000 | <%= Util.Hours_HMS(expRA,":",":","",2) %> <%= Util.Degrees_DMS(expDE,"d","m","s",1) %> PA <%= Util.FormatVar(expPA, "0.0") %> |
| Airmass | <%= Util.FormatVar(expAirMass, "0.00") %> |
| Detector geom. | <%= expNPixH * expBinH %> x <%= expNPixV * expBinV%> pixels (binned <%= expBinH %>x<%= expBinV %>) |
| Plate scales | <%= Util.FormatVar(expScaleH, "0.00") %> x <%= Util.FormatVar(expScaleH, "0.00") %> arcsec/pixel |
| Field of view | <%= Util.FormatVar(expFovH, "0.00") %> x <%= Util.FormatVar(expFovV, "0.00") %> arcmin |
| |
|
<%
// Dump FITS header of the file
var lhPath = Server.MapPath("/VOevent/bin/listhead.exe");
var tname = FSO.GetSpecialFolder(2).Path + "\\" + FSO.GetTempName();
var tid = Util.ShellExec(lhPath, "\"" + evImgBasePath + "\\" + evFileName + ".fts\" " + tname, 0);
while(Util.IsTaskActive(tid))
Util.WaitForMilliseconds(200);
var tfile = FSO.OpenTextFile(tname);
Response.Write(tfile.ReadAll());
tfile.Close();
FSO.DeleteFile(tname);
%> |
|