Conversions can be done either with the "->" conversion operator or with the equivalent "convert" function. The function has three parameters: a quantity, a unit to convert from and a unit to convert to. Likewise the conversion operator uses three values: the quantity and unit to convert from are placed on the left side of the operator while the unit to convert to goes to the right side.
The basic unit of acceleration is the "ms2" (meter / second 2). All units of acceleration are expressed in terms of this base unit and so measurements can be converted from any one of the following units to any other.
10 ms2 -> g = 1.0197162
convert(10; ms2; g) = 1.0197162
10 ms2 -> galileo = 100
convert(10; ms2; galileo) = 100
10 g -> ms2 = 98.0665
convert(10; g; ms2) = 98.0665
10 g -> galileo = 980.665
convert(10; g; galileo) = 980.665
10 galileo -> ms2 = 1
convert(10; galileo; ms2) = 1
10 galileo -> g = 0.1019716
convert(10; galileo; g) = 0.1019716