Broke out individual plotting commands, and updated CLI

Calling the tool with the debug flag will now automatically enter into an
interactive python console following execution. This is a handy way to try to
break into screwing around with the code if we are working with things.
This commit is contained in:
Luke 2018-07-22 17:30:31 -07:00
parent e3637a7fc6
commit 5c3f6902cc
4 changed files with 127 additions and 12 deletions

View file

@ -37,3 +37,6 @@ rcParams['axes.prop_cycle'] = (cycler('linestyle',['-','--'])*cycler(color=COLOR
for tri in COLOR_CYCLE_LIST:
color = '0x' + ''.join([ "%02x" % int(255*x) for x in tri])
figures_directory='figures'