New temperature data for individual image frames

The Clementine PDS header and index tables only contain a small number of all the temperature values that were received from the spacecraft during the mission. The following file contains all of the available temperature values received and interpolated for each Clementine image delivered to NASA/PDS (at this time a total of 1523313 images [this will be updated soon])

newtemps.zip [49,242K]

ATTENTION: After unzipping, you will have a BINARY file (newtemps.dat [113,059K]). Read the following instructions to use the data or download Text instructions

Given an orbit number and a frame number the file included here allows location of the record with the updated temperatures.

There are 19 floating point numbers (4 bytes) in each records. Record length = 19 * 4 bytes = 76 bytes

The following table describes the format of newtemps.dat
Field Number Mnemonic Description
1 FRAMEN FRAME NUMBER
2 REVN ORBIT NUMBER
3 STRACTMP STAR TRACKER A CCD TEMP(C)
4 STRALTMP STAR TRACKER A LENS TEMP(C)
5 STRBCTMP STAR TRACKER B CCD TEMP(C)
6 STRBLTMP STAR TRACKER B LENS TEMP(C)
7 SENBTMP1 SENSOR BENCH TEMP 1(C)
8 SENBTMP2 SENSOR BENCH TEMP 2(C)
9 UVISCTMP UVVIS CCD TEMP(C)
10 UVISLTMP UVVIS LENS TEMP(C)
11 HIRCCTMP HIRES CCD TEMP(C)
12 RW3TMP REACTION WHEEL 3 PANEL TEMP(C)
13 LIDLDTMP LIDAR LASER DIODE TEMP(C)
14 NIRFTEMP NIR FPA TEMP(K)
15 NIRLTMP NIR LENS TEMP(C)
16 NIRETMP NIR ELEC TEMP(C)
17 LWIRFTMP LWIR FPA TEMP(K)
18 LWIRLTMP LWIR LENS TEMP(C)
19 LWIRETMP LWIR ELEC TEMP(C)

The following C structure describes a record:

struct temperatures {
	float REVN;
	float FRAMEN;
	float STRACTMP;
	float STRALTMP;
	float STRBCTMP;
	float STRBLTMP;
	float SENBTMP1;
	float SENBTMP2;
	float UVISCTMP;
	float UVISLTMP;
	float HIRCCTMP;
	float RW3TMP;
	float LIDLDTMP;
	float NIRFTEMP;
	float NIRLTMP;
	float NIRETMP;
	float LWIRFTMP;
	float LWIRLTMP;
	float LWIRETMP;
}

[Home] [Clementine]