|
|
|
@ -409,12 +409,13 @@ class AWRAMS(object): |
|
|
|
|
Lw_fpath.write_text( header ) |
|
|
|
|
if not Rs_fpath.exists(): |
|
|
|
|
Rs_fpath.write_text( header ) |
|
|
|
|
|
|
|
|
|
Lsky = NEWLINE + self.list2str( list(self.Lsky) ) |
|
|
|
|
Esky = NEWLINE + self.list2str( list(self.Esky) ) |
|
|
|
|
Lwater = NEWLINE + self.list2str( list(self.Lwater) ) |
|
|
|
|
Lw = NEWLINE + self.list2str( list(self.Lw) ) |
|
|
|
|
Rs = NEWLINE + self.list2str( list(self.Rs) ) |
|
|
|
|
|
|
|
|
|
# 添加时间 |
|
|
|
|
Lsky = NEWLINE + self.data.info_frame.time_str+ TOKEN + self.list2str( list(self.Lsky) ) |
|
|
|
|
Esky = NEWLINE + self.data.info_frame.time_str+ TOKEN + self.list2str( list(self.Esky) ) |
|
|
|
|
Lwater = NEWLINE + self.data.info_frame.time_str+ TOKEN + self.list2str( list(self.Lwater) ) |
|
|
|
|
Lw = NEWLINE + self.data.info_frame.time_str+ TOKEN + self.list2str( list(self.Lw) ) |
|
|
|
|
Rs = NEWLINE + self.data.info_frame.time_str+ TOKEN + self.list2str( list(self.Rs) ) |
|
|
|
|
|
|
|
|
|
# 追加写入 |
|
|
|
|
with open(Lsky_fpath, 'a') as f: |
|
|
|
|