/* $Id: ccr.h,v 1.2 1997/11/26 19:25:36 steves Exp $ */ #include "hdfi.h" /* The values here are used to convert the S/C values into seconds since */ /* the S/C EPOCH which will be a short time after launch */ /* S/C_EPOCH_TIME = SC_clock * SLOPE + OFFSET */ struct ccr_entry { uint32 start; /* Start of range in S/C clock ticks */ uint32 end; /* End of range in S/C clock ticks */ float64 slope; /* slope for linear fit */ float64 offset; /* offset for linear fit */ uint8 cdh; /* =1: C&DH A, =2: C&DH B, error otherwise */ uint16 year; /* 4 digit year for product */ uint16 doy; /* Day of Year for product */ };