Print
Category: Models
Hits: 1679

SParTA scores can be exported as json files. 

Format

These files contains the following information:

  1. Task description:
    • Task ID (String), date of performance (String)
    • Orientation (String), reference (float)
  2. Image information
    • image name (String)
    • image hash to validate image (String)
  3. Assessor name (String)
  4. Task results ("results")
    • Stored as individual suture / axis markings in the format of: "pointid" : [[x1, y1, x2, y2,...],["type"]
    • pointid is an integer stored as a String
    • x1,y1,x2,y2 are coordinate pairs stored as floats
    • valid types are "scale", "axis", "suture", "area"
    • Except for "area" which expects 4 coordinate pairs, the other types expect 2 coordinate pairs
  5. Task scores ("scores")
    • Total score not stored, only subscores
    • Valid subscore labels: "align", "angle", "area", "dist", "length", "missing", "reference", "version"
    • "version" refers to score format in an integer format
    • "reference": reference length as float
    • "missing": positive integer
    • "area": integer
    • "dist", "angle", "align", "length" stored as "label": [subscore_total (int), [individual_suture score(int), ...] 
  6. Time Taken (in whole minutes)
  7. Metadata: Date json exported, schema version: currently 0.1

 

See also:

  1. Sample json file: sparta_schema.json
  2. Interpreting your SParTA score