Updated info on plotting choices.

这个提交包含在:
Craig Warren
2016-04-28 14:08:30 +01:00
父节点 c380582986
当前提交 159507bdbf
共有 2 个文件被更改,包括 8 次插入8 次删除

查看文件

@@ -80,7 +80,7 @@ if __name__ == "__main__":
# Parse command line arguments
parser = argparse.ArgumentParser(description='Plots a B-scan image.', usage='cd gprMax; python -m tools.plot_Bscan outputfile output')
parser.add_argument('outputfile', help='name of output file including path')
parser.add_argument('output', help='name of output component to be plotted', choices='Ex, Ey, Ez, Hx, Hy, Hz, Ix, Iy or Iz')
parser.add_argument('output', help='name of output component to be plotted', choices=['Ex', 'Ey', 'Ez', 'Hx', 'Hy', 'Hz', 'Ix', 'Iy', 'Iz'])
args = parser.parse_args()
make_plot(args.outputfile, args.output)