Name: spDuplicates-xxxxx.par, where xxxxx is the database to load. This file lives in /data/dp3.b/data/spectro/duplicates.
Produced by: spDuplicates script in DP product
Used by: sx loading
Size: Small (estimated to be approximately 1 MB by end of survey)
Archived? Yes
typedef struct {
    int    plate;         # plate id         | id and mjd are the 
    int    mjd;           # plate mjd        | only important entries;
    double ra;            # plate RA  [deg]  | ra, dec, and SN_gri
    double dec;           # plate DEC [deg]  | are only along for
    float  SN_gri;        # plate SN in gri  | the ride.
} PLATERADEC;
typedef struct {
    int    plate1;        # plate id of object 1 in duplicate pair
    int    mjd1;          # plate mjd of object 1 
    int    fiber1;        # fiber id of object 1
    char   objType1[20];  # object type of object 1
    int    plate2;        # plate id of object 2 in duplicate pair
    int    mjd2;          # plate mjd of object 2
    int    fiber2;        # fiber id of object 2
    char   objType2[20];  # object type of object 2
} DUPLIST;
Note:  it is possible for there to be multiple entries for object 1
in the DUPLIST structure -- each with a different object 2 -- if
this object was observed more than twice.