Commits
71 71 | self.jdtimerange = 'JD2460189.33333~2460189.88542' |
72 72 | self.mjdtimerange = 'MJD60188.83333~60189.38542' |
73 73 | self.reftable = datapath+'titan_jplhorizons_eph_ref.tab' |
74 74 | #tmppath = '/Users/ttsutsum/SWDevel/casa/imaging/ephemimaging/getephemtable-test/' |
75 75 | self.inALMAtextfile =datapath+'titan_jplhorizons_eph_alma.txt' |
76 76 | self.inVLAtextfile = datapath+'titan_jplhorizons_eph_vla.txt' |
77 77 | self.inGBTtextfile = datapath+'titan_jplhorizons_eph_gbt.txt' |
78 78 | self.otheroutputs = ['saved_rawqueryresult.txt', |
79 79 | 'titan_eph_from_ALMAtextdata.tab', |
80 80 | 'titan_eph_from_VLAtextdata.tab', |
81 - | 'titan_eph_from_GBTtextdata.tab'] |
81 + | 'titan_eph_from_GBTtextdata.tab', |
82 + | 'titan_eph_from_textdata.tab'] |
82 83 | def tearDown(self): |
83 84 | if os.path.exists(self.outfile): |
84 85 | shutil.rmtree(self.outfile) |
85 86 | for output in self.otheroutputs: |
86 87 | if os.path.exists(output): |
87 88 | if os.path.isfile(output): |
88 89 | os.remove(output) |
89 90 | else: |
90 91 | shutil.rmtree(output) |
91 92 | |