public override void LoadData(string path) { filename = path; table = new VoTable(path); LngColumn = table.GetRAColumn().Index; LatColumn = table.GetDecColumn().Index; }
public VoTableLayer(VoTable table) { this.table = table; filename = table.LoadFilename; LngColumn = table.GetRAColumn().Index; LatColumn = table.GetDecColumn().Index; PlotType = PlotTypes.Circle; }
public VoTableLayer(VoTable table) { this.table = table; this.filename = table.LoadFilename; LngColumn = table.GetRAColumn().Index; LatColumn = table.GetDecColumn().Index; PlotType = PlotTypes.Circle; }