IODA Bundle
ioda_data_checker.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 import os
4 import sys
5 
6 test_dir = sys.argv[1]
7 if (not os.path.isdir(test_dir)):
8  print(test_dir + " does not exist")
9  exit(1)
10 else:
11  print("test data is available")