@@ -56,16 +56,16 @@ if __name__ == "__main__":
56
56
help = 'the working directory' )
57
57
parser .add_argument ('--auto' , '-a' , dest = 'auto' ,
58
58
help = 'download new sat data automatically (not implemented yet!)' )
59
- parser .add_argument ('--payload ' , '-p' , dest = 'download_payload ' , default = False , action = "store_true" ,
60
- help = 'download payload data' )
59
+ parser .add_argument ('--archive ' , '-p' , dest = 'download_archive ' , default = False , action = "store_true" ,
60
+ help = 'download archive data' )
61
61
parser .add_argument ('--waterfall' , '-f' , dest = 'download_waterfall' , default = False , action = "store_true" ,
62
62
help = 'download waterfall data' )
63
63
parser .add_argument ('--demoddata' , '-d' , dest = 'download_demoddata' , default = False , action = "store_true" ,
64
64
help = 'download demod data' )
65
65
parser .add_argument ('--demod-module' , dest = 'demoddata_modules' , default = None ,
66
66
help = 'list of the modules to use while downloading demoddata(s) separated by a ,' )
67
- parser .add_argument ('--payload -module' , dest = 'payload_modules ' , default = None ,
68
- help = 'list of the modules to use while downloading payload (s) separated by a ,' )
67
+ parser .add_argument ('--archive -module' , dest = 'archive_modules ' , default = None ,
68
+ help = 'list of the modules to use while downloading archive (s) separated by a ,' )
69
69
parser .add_argument ('--waterfall-module' , dest = 'waterfall_modules' , default = None ,
70
70
help = 'list of the modules to use while downloading waterfall(s) separated by a ,' )
71
71
parser .add_argument ('--last' , dest = 'last' , action = 'store_true' ,
@@ -97,12 +97,12 @@ if __name__ == "__main__":
97
97
end_date = datetime .strptime (
98
98
args .end_date , '%Y-%m-%dT%H:%M:%S' )
99
99
100
- payload_modules = None
100
+ archive_modules = None
101
101
demoddata_modules = None
102
102
waterfall_modules = None
103
103
frame_modules = None
104
- if args .payload_modules is not None :
105
- payload_modules = args .payload_modules .split (',' )
104
+ if args .archive_modules is not None :
105
+ archive_modules = args .archive_modules .split (',' )
106
106
if args .demoddata_modules is not None :
107
107
demoddata_modules = args .demoddata_modules .split (',' )
108
108
if args .waterfall_modules is not None :
@@ -115,10 +115,10 @@ if __name__ == "__main__":
115
115
end_date ,
116
116
args .status ,
117
117
args .working_dir ,
118
- args .download_payload ,
118
+ args .download_archive ,
119
119
args .download_waterfall ,
120
120
args .download_demoddata ,
121
- payload_modules ,
121
+ archive_modules ,
122
122
demoddata_modules ,
123
123
waterfall_modules ,
124
124
args .user_id ,
0 commit comments