Skip to content

Observation Transformation

dbenn edited this page Apr 12, 2026 · 20 revisions

Magnitude Baseline Shifter

Documentation

Description: Allows the magnitude baseline of a set of observations to be shifted up or down by a specified amount. This action can be undone and re-applied via the Edit menu.

Author: David Benn

VeLa Observation Transformer

Description: Allows the magnitude and error of a set of observations to be modified via a VeLa function with this signature: do(mag:ℝ err:ℝ):list, where the list contains the modified magnitude and error. This action can be undone and re-applied via the Edit menu. A example of a do function is (slightly contrived: multiplying the magnitude by 10):

do(mag:ℝ err:ℝ):list {
  [ mag*10 err]
}

Author: David Benn

Clone this wiki locally