Tdi (Time Delay Integration) Panorama - Roper Photometric Owner's Manual

Advanced camera operation
Table of Contents

Advertisement

TDI (Time Delay Integration) Panorama

This script is written for use with a Kodak 1400 CCD (serial size 1317,parallel size 1035). The camera is
attached to a telescope pointing straight up. The camera's external trigger port is connected to a synchronized
time source that provides a pulse every few seconds. The pulse timing is closely coordinated with the image
size, so the rotation of the earth moves the image on the CCD by exactly one parallel row width (6.8 microns)
for each pulse. Therefore, for every pulse, one row is readout, and the other rows are shifted over, following
the moving image. This script uses the setup to collect a single panoramic image 10,000 rows wide (reading 1
row at a time, 8965 times, and finishing with a final clean up readout of 1035 rows).
The CCD reaches a steady state exposure duration during the middle of the panorama, but the beginning and
ending few lines are exposed for less time. (Exposure time is progressively less for the first and last 1035 rows
of the panorama.) The result is that the front and back ends of the panorama gradually ramp up and down in
brightness.
script_begin();
shift_mode_is();
shutter_open();
clear_parallel(5);
clear_until_trig();
loop_begin(8965);
expose_until_trig();
pixel_readout(0,1317,1,1,1);
loop_end();
pixel_readout(0,1317,1,1035,1);/*clean up: read the entire CCD
pixel_display(1317,10000);
shutter_close();
script_end(0);
14 Advanced Camera Operation Manual
/* redundant, since script_begin sets this anyway*/
/* light is now falling on the CCD
/* make sure this CCD is cleared out
/* clear until acquire regular pulses
/* 10,000 (full panorama) - 1035 (clean-up size)
/* readout each time trigger pulse received
/* read exactly 1 row, shift the rest over
/* display this as one huge panoramic image
*/
*/
*/
*/
*/
*/
*/
*/

Advertisement

Table of Contents
loading

Table of Contents