-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQSI_mode_Check.js
92 lines (69 loc) · 3.13 KB
/
QSI_mode_Check.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Java Script */
//
// Tests the QSI readout mode toggle by using the m_csExCameraMode string
//
// Ken Sturrock
// March 26, 2017
//
var preExpTime = "";
var postExpTime = "";
var readOutMode = "";
var specificCamera = "";
ccdsoftCamera.Asynchronous = false; // We are going to wait for it
ccdsoftCamera.ExposureTime = 5; // Set the exposure to five seconds
ccdsoftCamera.AutoSaveOn = true; // Keep the image
ccdsoftCamera.ImageReduction = 0; // Don't do autodark, change this if you do want some other calibration
ccdsoftCamera.Frame = 1; // It's a light frame
ccdsoftCamera.Delay = 1; // Pause one second before taking the picture
ccdsoftCamera.Subframe = false; // Not a subframe, shoot the whole frame
function doImage()
//
// Report time & mode, take an image, re-report time and info from FITS header
//
{
RunJavaScriptOutput.writeLine("------------------------------------------------------");
RunJavaScriptOutput.writeLine("Reported Readout Mode (m_csExCameraMode): " + ccdsoftCamera.PropStr("m_csExCameraMode"));
RunJavaScriptOutput.writeLine("");
RunJavaScriptOutput.writeLine("Pre-Exposure Timestamp: " + Date());
ccdsoftCamera.TakeImage();
RunJavaScriptOutput.writeLine("Post-Exposure Timestamp: " + Date());
RunJavaScriptOutput.writeLine("");
ccdsoftCameraImage.AttachToActive();
specificCamera = ccdsoftCameraImage.FITSKeyword ("INSTRUME");
if ( SelectedHardware.cameraModel == "QSI Camera " )
//
// Are we running the QSI Universal Driver? We may not have a valid READOUTM keyword if not.
// I could have read this from the INSTRUME keyword but was too lazy to parse.
//
// Yes, the ending space in "QSI " is reported by the driver and required.
//
{
readOutMode = ccdsoftCameraImage.FITSKeyword ("READOUTM");
} else {
readOutMode = "Not a QSI";
}
RunJavaScriptOutput.writeLine("Specific Camera: " + specificCamera);
RunJavaScriptOutput.writeLine("Reported Readout Mode (FITS Keyword): " + readOutMode);
RunJavaScriptOutput.writeLine("------------------------------------------------------");
RunJavaScriptOutput.writeLine("");
}
//
// Start main program
//
RunJavaScriptOutput.writeLine("QSI Readout Mode Tester");
RunJavaScriptOutput.writeLine("------------------------------------------------------");
// What system are we using?
RunJavaScriptOutput.writeLine("Operating System (1=Windows, 2=Macintosh): " + Application.operatingSystem);
RunJavaScriptOutput.writeLine("SkyX Build: " + Application.build);
RunJavaScriptOutput.writeLine("------------------------------------------------------");
RunJavaScriptOutput.writeLine("");
// Set the camera mode to fast, take the image
RunJavaScriptOutput.writeLine("Initial camera mode.");
RunJavaScriptOutput.writeLine("");
ccdsoftCamera.setPropStr("m_csExCameraMode", "Faster Image Downloads");
doImage();
// Set the camera to high quality, take the image
RunJavaScriptOutput.writeLine("Changing camera mode.");
RunJavaScriptOutput.writeLine("");
ccdsoftCamera.setPropStr("m_csExCameraMode", "Higher Image Quality");
doImage();