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 magnetic flux is the weber. All units of magnetic flux 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 weber -> maxwell = 1e+9
convert(10; weber; maxwell) = 1e+9
10 weber -> statWeber = 0.0333564
convert(10; weber; statWeber) = 0.0333564
10 weber -> unitPole = 79,577,471
convert(10; weber; unitPole) = 79,577,471
10 maxwell -> weber = 0.0000001
convert(10; maxwell; weber) = 0.0000001
10 unitPole -> weber = 0.0000013
convert(10; unitPole; weber) = 0.0000013
10 statWeber -> weber = 2,997.9246
convert(10; statWeber; weber) = 2,997.9246
10 maxwell -> unitPole = 0.7957747
convert(10; maxwell; unitPole) = 0.7957747
10 unitPole -> maxwell = 125.66371
convert(10; unitPole; maxwell) = 125.66371