-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python | ||
""" | ||
Created on Thu Apr 23 14:42:30 2015 | ||
This script will run the unit tests for each of the classes in one script as a test to | ||
see if the module has been installed correctly. | ||
@author: John Swoboda | ||
""" | ||
import time | ||
import makeConfigFiles | ||
import IonoContainer | ||
import radarData | ||
import fitterMethodGen | ||
|
||
def main(): | ||
print('Making config files') | ||
time.sleep(3.0) | ||
makeConfigFiles.main() | ||
print('Making example input data') | ||
time.sleep(3.0) | ||
IonoContainer.main() | ||
print('Applying the radar platform to the data and creating lags') | ||
time.sleep(3.0) | ||
radarData.main() | ||
print('Now fitting data orm the lags.') | ||
time.sleep(3.0) | ||
fitterMethodGen.main() | ||
|
||
if __name__== '__main__': | ||
|
||
|
||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters