Skip to content

IofControl

Types

controlType

The role a control plays on a course.

rescript
type controlType = Start | Finish | Control | CrossingPoint

Constructors:

  • Start
  • Finish
  • Control
  • CrossingPoint

t

A physical control on the terrain, identified by its control code.

See: Control in the IOF XML 3.0 XSD

rescript
type t = {id: string, controlType: controlType}

Fields:

  • id: string — The control code, e.g. "32".
  • controlType: controlType — The role this control plays (Start, Finish, Control, or CrossingPoint).