/// <summary> /// Initializes the transform using the parameters from the specified coordinate system information /// </summary> /// <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> protected override void OnInit(ProjectionInfo projInfo) { _moll = new Mollweide(); _moll.Init(projInfo); _sinu = new Sinusoidal(); _sinu.Init(projInfo); }