/// <summary> /// /// </summary> public void InitialiseCoverProfile() { CoverProfile = new ProfileData(new List <string> (new string[] { "Green Cover", "Residue Cover", "Root Depth" })); foreach (Data d in CropFactorMatrix) { CoverProfile.AddDate((int)d.X); CoverProfile.AddValue("Green Cover", d.Y); CoverProfile.AddValue("Residue Cover", d.Z); CoverProfile.AddValue("Root Depth", d.A); } }