Surface NMR processing and inversion GUI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tempPlots.py 397B

123456789101112131415161718192021222324
  1. from USGSPlots import USGSPlots
  2. import plotyaml
  3. import sys
  4. if len(sys.argv) != 4 and len(sys.argv) != 2:
  5. print('Usage:')
  6. print('whatever.py filename channel option')
  7. print('Use whatever.py -h for detailed help')
  8. sys.exit()
  9. if len(sys.argv) == 2:
  10. print('help!')
  11. sys.exit()
  12. fname = str(sys.argv[1])
  13. chan = sys.argv[2]
  14. myplot = USGSPlots()
  15. myplot.getData(fname,chan)