Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name: WISTAT_OFFSET.SDDL
!
! Purpose: This SDDL file defines the wistat_offset relation.
!
! Modification History:
!
! Date OPR Who Reason
! -------- ------- --- -------------------------------------------------
! 11/16/94 27329 RJS Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!
LANGUAGE FORTRAN, SQL
INCLUDE ZSPSS_USER_TYPES.SDDL
RECORD WISOFF_TYPE
!------------------------------------------------------------------------------
!
! RECORD INFORMATION
!
!------------------------------------------------------------------------------
DESCRIPTION "This relation contains data for the Reuse Target Offset
project. It maintains the status of the NSSC-1 offset
maneuver table at the end of the calendar for
each baseline containing the C&C List. Populated
by BASELINE/ADD, cleared by BASELINE/DELETE."
!------------------------------------------------------------------------------
!
! FIELD INFORMATION
!
!------------------------------------------------------------------------------
FIELD slot_num
TYPE I4
DESCRIPTION "This field specifies the NSSC-1 memory slot number.
These are numbered uniquely from 1 through 15."
END_FIELD
FIELD offset_id
TYPE C12
DESCRIPTION "This field specifies the group id for the exposures
which require the same ephemeris or target acquisition
correction offset. The format is 'ppppp:nnn:ss' where
'ppppp' is the proposal id, 'nnn' is the exposure line
number, and 'ss' is the offset sequence number (more
than one offset may be required by the exposure line)."
END_FIELD
FIELD ccl_name
TYPE CCLIST_ID_TYPE
DESCRIPTION "name of the c&c list."
END_FIELD
FIELD ccl_version
TYPE I4
DESCRIPTION "version "
UNITS
RANGE
END_FIELD
FIELD baseline_name
TYPE C8
DESCRIPTION "This field specifies the identifier assigned to the
baseline."
END_FIELD
FIELD time_cleared
TYPE C17
DESCRIPTION "This field specifies the ascii representation of
when the target offset memory slot on the NSSC-1 was
last (most recently) cleared."
END_FIELD
FIELD time_available
TYPE C17
DESCRIPTION "This field specifies the earliest time the offset
may be uplinked. For ephemeris corrections, this is
the time the slot was last cleared. For target
acquisitions, this is the end time of the target
acquisition alignment. "
END_FIELD
FIELD off_num
TYPE I4
DESCRIPTION "This field specifies the number of the last offset
maneuver activity scheduled for the offset. The offset
maneuver activities for each offset are sequentially
numbered on the calendar. "
END_FIELD
END_RECORD
!------------------------------------------------------------------------------
!
! RELATION DECLARATION
!
!------------------------------------------------------------------------------
RELATION wistat_offset
TYPE WISOFF_TYPE
DESCRIPTION "NSSC-1 Offset Slots Status Data Relation"
SUBSYSTEM_USING "SPSS"
INDEX wistat_offset_1
TYPE unique, clustered
FIELDS baseline_name, ccl_name, ccl_version, slot_num
END_INDEX
END_RELATION
!------------------------------------------------------------------------------
!
! INSTANCE DECLARATION
!
!------------------------------------------------------------------------------
INSTANCE wistat_offset
GLOBAL
TYPE WISOFF_TYPE
END_INSTANCE
Go to the top.