tsc_Classification enum

This enum is present in every point object stored in the database, and describes the point in terms of its priority when determining the "best" point from a set of identically named points, and also to select the correct point for a particular purpose.

This list is roughly in order of priority but this should not be assumed.

enum tsc_Classification

{

    tscc_None            = -1,

    tscc_Check           = 0,    // Check shots

    tscc_BackSight       = 1,    // A point used to coordinate or orient a station.

    tscc_Stakeout        = 2,

    tscc_Construction    = 3,    // FastFix and points measured while doing cogo etc.

    tscc_Normal          = 4,    // Topo

    tscc_MTA             = 5,    // Mean turned angle

    tscc_Adjusted        = 6,

    tscc_Averaged        = 7,

    tscc_NetworkAdjusted = 8,

    tscc_Control         = 9

};