@@ -10,3 +10,13 from io import * | |||||
10 | from proc import * |
|
10 | from proc import * | |
11 | from graphics import * |
|
11 | from graphics import * | |
12 | from utils import * |
|
12 | from utils import * | |
|
13 | ||||
|
14 | global_type_string = 'string' | |||
|
15 | global_type_integer = 'int' | |||
|
16 | global_type_floatList = 'floatList' | |||
|
17 | global_type_pairsList = 'pairsList' | |||
|
18 | global_type_boolean = 'bolean' | |||
|
19 | global_type_float = 'float' | |||
|
20 | global_type_colormap = 'colormap' | |||
|
21 | global_type_list = 'list' | |||
|
22 | global_type_float = 'float' |
@@ -61,7 +61,7 class Figure(Operation): | |||||
61 | figfile = None |
|
61 | figfile = None | |
62 |
|
62 | |||
63 | created = False |
|
63 | created = False | |
64 |
|
64 | parameters = {} | ||
65 | def __init__(self, **kwargs): |
|
65 | def __init__(self, **kwargs): | |
66 |
|
66 | |||
67 | Operation.__init__(self, **kwargs) |
|
67 | Operation.__init__(self, **kwargs) |
@@ -2,10 +2,37 import os | |||||
2 | import datetime |
|
2 | import datetime | |
3 | import numpy |
|
3 | import numpy | |
4 | import copy |
|
4 | import copy | |
5 |
|
5 | from schainpy.model import * | ||
6 | from figure import Figure, isRealtime |
|
6 | from figure import Figure, isRealtime | |
7 |
|
7 | |||
8 | class CorrelationPlot(Figure): |
|
8 | class CorrelationPlot(Figure): | |
|
9 | parameters = { | |||
|
10 | 'id': global_type_string, | |||
|
11 | 'wintitle': global_type_string, | |||
|
12 | 'channelList': global_type_list, | |||
|
13 | 'showprofile': global_type_string, | |||
|
14 | 'xmin': global_type_float, | |||
|
15 | 'xmax': global_type_float, | |||
|
16 | 'ymin': global_type_float, | |||
|
17 | 'ymax': global_type_float, | |||
|
18 | 'zmin': global_type_float, | |||
|
19 | 'zmax': global_type_float, | |||
|
20 | 'save': global_type_boolean, | |||
|
21 | 'figpath': global_type_string, | |||
|
22 | 'figfile': global_type_string, | |||
|
23 | 'show': global_type_boolean, | |||
|
24 | 'ftp': global_type_boolean, | |||
|
25 | 'wr_period': global_type_integer, | |||
|
26 | 'server': global_type_string, | |||
|
27 | 'folder': global_type_string, | |||
|
28 | 'username': global_type_string, | |||
|
29 | 'password': global_type_string, | |||
|
30 | 'ftp_wei': global_type_integer, | |||
|
31 | 'exp_code': global_type_integer, | |||
|
32 | 'sub_exp_code': global_type_integer, | |||
|
33 | 'plot_pos': global_type_integer, | |||
|
34 | 'realtime': global_type_boolean, | |||
|
35 | } | |||
9 |
|
36 | |||
10 | isConfig = None |
|
37 | isConfig = None | |
11 | __nsubplots = None |
|
38 | __nsubplots = None |
@@ -15,6 +15,34 class MomentsPlot(Figure): | |||||
15 | HEIGHTPROF = None |
|
15 | HEIGHTPROF = None | |
16 | PREFIX = 'prm' |
|
16 | PREFIX = 'prm' | |
17 |
|
17 | |||
|
18 | parameters = { | |||
|
19 | 'id': global_type_string, | |||
|
20 | 'wintitle': global_type_string, | |||
|
21 | 'channelList': global_type_list, | |||
|
22 | 'showprofile': global_type_boolean, | |||
|
23 | 'xmin': global_type_float, | |||
|
24 | 'xmax': global_type_float, | |||
|
25 | 'ymin': global_type_float, | |||
|
26 | 'ymax': global_type_float, | |||
|
27 | 'zmin': global_type_float, | |||
|
28 | 'zmax': global_type_float, | |||
|
29 | 'save': global_type_boolean, | |||
|
30 | 'figpath': global_type_string, | |||
|
31 | 'figfile': global_type_string, | |||
|
32 | 'show': global_type_boolean, | |||
|
33 | 'ftp': global_type_boolean, | |||
|
34 | 'wr_period': global_type_integer, | |||
|
35 | 'server': global_type_string, | |||
|
36 | 'folder': global_type_string, | |||
|
37 | 'username': global_type_string, | |||
|
38 | 'password': global_type_string, | |||
|
39 | 'ftp_wei': global_type_string, | |||
|
40 | 'exp_code': global_type_integer, | |||
|
41 | 'sub_exp_code': global_type_integer, | |||
|
42 | 'plot_pos': global_type_integer, | |||
|
43 | 'realtime': global_type_boolean, | |||
|
44 | } | |||
|
45 | ||||
18 | def __init__(self, **kwargs): |
|
46 | def __init__(self, **kwargs): | |
19 | Figure.__init__(self, **kwargs) |
|
47 | Figure.__init__(self, **kwargs) | |
20 | self.isConfig = False |
|
48 | self.isConfig = False | |
@@ -1213,6 +1241,42 class EWDriftsPlot(Figure): | |||||
1213 | HEIGHTPROF = None |
|
1241 | HEIGHTPROF = None | |
1214 | PREFIX = 'drift' |
|
1242 | PREFIX = 'drift' | |
1215 |
|
1243 | |||
|
1244 | parameters = { | |||
|
1245 | 'id': global_type_string, | |||
|
1246 | 'wintitle': global_type_string, | |||
|
1247 | 'channelList': global_type_string, | |||
|
1248 | 'xmin': global_type_float, | |||
|
1249 | 'xmax': global_type_float, | |||
|
1250 | 'ymin': global_type_float, | |||
|
1251 | 'ymax': global_type_float, | |||
|
1252 | 'zmin': global_type_float, | |||
|
1253 | 'zmax': global_type_float, | |||
|
1254 | 'zmaxVertfloat': global_type_float, | |||
|
1255 | 'zminVertfloat': global_type_float, | |||
|
1256 | 'zmaxZonafloat': global_type_float, | |||
|
1257 | 'zminZonafloat': global_type_float, | |||
|
1258 | 'timerange': global_type_float, | |||
|
1259 | 'SNRthresh': global_type_float, | |||
|
1260 | 'SNRmin': global_type_float, | |||
|
1261 | 'SNRmax': global_type_float, | |||
|
1262 | 'SNR_1': global_type_boolean, | |||
|
1263 | 'save': global_type_boolean, | |||
|
1264 | 'figpath': global_type_string, | |||
|
1265 | 'lastone': global_type_float, | |||
|
1266 | 'figfile': global_type_string, | |||
|
1267 | 'ftp': global_type_string, | |||
|
1268 | 'wr_period': global_type_integer, | |||
|
1269 | 'show': global_type_string, | |||
|
1270 | 'server': global_type_string, | |||
|
1271 | 'folder': global_type_string, | |||
|
1272 | 'username': global_type_string, | |||
|
1273 | 'password': global_type_string, | |||
|
1274 | 'ftp_wei': global_type_integer, | |||
|
1275 | 'exp_code': global_type_integer, | |||
|
1276 | 'sub_exp_code': global_type_integer, | |||
|
1277 | 'plot_pos': global_type_integer, | |||
|
1278 | } | |||
|
1279 | ||||
1216 | def __init__(self, **kwargs): |
|
1280 | def __init__(self, **kwargs): | |
1217 | Figure.__init__(self, **kwargs) |
|
1281 | Figure.__init__(self, **kwargs) | |
1218 | self.timerange = 2*60*60 |
|
1282 | self.timerange = 2*60*60 | |
@@ -1590,6 +1654,40 class NSMeteorDetection1Plot(Figure): | |||||
1590 | nChannels = None |
|
1654 | nChannels = None | |
1591 | nParam = None |
|
1655 | nParam = None | |
1592 |
|
1656 | |||
|
1657 | parameters = { | |||
|
1658 | 'id': global_type_string, | |||
|
1659 | 'wintitle': global_type_string, | |||
|
1660 | 'channelList': global_type_list, | |||
|
1661 | 'showprofile': global_type_boolean, | |||
|
1662 | 'xmin': global_type_float, | |||
|
1663 | 'xmax': global_type_float, | |||
|
1664 | 'ymin': global_type_float, | |||
|
1665 | 'ymax': global_type_float, | |||
|
1666 | 'SNRmin': global_type_float, | |||
|
1667 | 'SNRmax': global_type_float, | |||
|
1668 | 'vmin': global_type_float, | |||
|
1669 | 'vmax': global_type_float, | |||
|
1670 | 'wmin': global_type_float, | |||
|
1671 | 'wmax': global_type_float, | |||
|
1672 | 'mode': global_type_string, | |||
|
1673 | 'save': global_type_boolean, | |||
|
1674 | 'figpath': global_type_string, | |||
|
1675 | 'figfile': global_type_string, | |||
|
1676 | 'show': global_type_boolean, | |||
|
1677 | 'ftp': global_type_string, | |||
|
1678 | 'wr_period': global_type_integer, | |||
|
1679 | 'server': global_type_string, | |||
|
1680 | 'folder': global_type_string, | |||
|
1681 | 'username': global_type_string, | |||
|
1682 | 'password': global_type_string, | |||
|
1683 | 'ftp_wei': global_type_integer, | |||
|
1684 | 'exp_code': global_type_integer, | |||
|
1685 | 'sub_exp_code': global_type_integer, | |||
|
1686 | 'plot_pos': global_type_integer, | |||
|
1687 | 'realtime': global_type_boolean, | |||
|
1688 | 'xaxis': global_type_string, | |||
|
1689 | } | |||
|
1690 | ||||
1593 | def __init__(self, **kwargs): |
|
1691 | def __init__(self, **kwargs): | |
1594 | Figure.__init__(self, **kwargs) |
|
1692 | Figure.__init__(self, **kwargs) | |
1595 | self.isConfig = False |
|
1693 | self.isConfig = False | |
@@ -1774,6 +1872,40 class NSMeteorDetection2Plot(Figure): | |||||
1774 | nChannels = None |
|
1872 | nChannels = None | |
1775 | nParam = None |
|
1873 | nParam = None | |
1776 |
|
1874 | |||
|
1875 | parameters = { | |||
|
1876 | 'id': global_type_string, | |||
|
1877 | 'wintitle': global_type_string, | |||
|
1878 | 'channelList': global_type_list, | |||
|
1879 | 'showprofile': global_type_boolean, | |||
|
1880 | 'xmin': global_type_float, | |||
|
1881 | 'xmax': global_type_float, | |||
|
1882 | 'ymin': global_type_float, | |||
|
1883 | 'ymax': global_type_float, | |||
|
1884 | 'SNRmin': global_type_float, | |||
|
1885 | 'SNRmax': global_type_float, | |||
|
1886 | 'vmin': global_type_float, | |||
|
1887 | 'vmax': global_type_float, | |||
|
1888 | 'wmin': global_type_float, | |||
|
1889 | 'wmax': global_type_float, | |||
|
1890 | 'mode': global_type_string, | |||
|
1891 | 'save': global_type_boolean, | |||
|
1892 | 'figpath': global_type_string, | |||
|
1893 | 'figfile': global_type_string, | |||
|
1894 | 'show': global_type_string, | |||
|
1895 | 'ftp': global_type_boolean, | |||
|
1896 | 'wr_period': global_type_integer, | |||
|
1897 | 'server': global_type_string, | |||
|
1898 | 'folder': global_type_string, | |||
|
1899 | 'username': global_type_string, | |||
|
1900 | 'password': global_type_string, | |||
|
1901 | 'ftp_wei': global_type_integer, | |||
|
1902 | 'exp_code': global_type_integer, | |||
|
1903 | 'sub_exp_code': global_type_integer, | |||
|
1904 | 'plot_pos': global_type_integer, | |||
|
1905 | 'realtime': global_type_boolean, | |||
|
1906 | 'xaxis': global_type_string, | |||
|
1907 | } | |||
|
1908 | ||||
1777 | def __init__(self, **kwargs): |
|
1909 | def __init__(self, **kwargs): | |
1778 | Figure.__init__(self, **kwargs) |
|
1910 | Figure.__init__(self, **kwargs) | |
1779 | self.isConfig = False |
|
1911 | self.isConfig = False |
@@ -231,6 +231,40 class CrossSpectraPlot(Figure): | |||||
231 | HEIGHTPROF = None |
|
231 | HEIGHTPROF = None | |
232 | PREFIX = 'cspc' |
|
232 | PREFIX = 'cspc' | |
233 |
|
233 | |||
|
234 | parameters = { | |||
|
235 | 'id': global_type_string, | |||
|
236 | 'wintitle': global_type_string, | |||
|
237 | 'pairsList': global_type_pairsList, | |||
|
238 | 'xmin': global_type_float, | |||
|
239 | 'xmax': global_type_float, | |||
|
240 | 'ymin': global_type_float, | |||
|
241 | 'ymax': global_type_float, | |||
|
242 | 'zmin': global_type_float, | |||
|
243 | 'zmax': global_type_float, | |||
|
244 | 'coh_min': global_type_float, | |||
|
245 | 'coh_max': global_type_float, | |||
|
246 | 'phase_min': global_type_float, | |||
|
247 | 'phase_max': global_type_float, | |||
|
248 | 'save': global_type_boolean, | |||
|
249 | 'figpath': global_type_string, | |||
|
250 | 'figfile': global_type_string, | |||
|
251 | 'ftp': global_type_boolean, | |||
|
252 | 'wr_period': global_type_integer, | |||
|
253 | 'power_cmap': global_type_colormap, | |||
|
254 | 'coherence_cmap': global_type_colormap, | |||
|
255 | 'phase_cmap': global_type_colormap, | |||
|
256 | 'show': global_type_boolean, | |||
|
257 | 'server': global_type_string, | |||
|
258 | 'folder': global_type_string, | |||
|
259 | 'username': global_type_string, | |||
|
260 | 'password': global_type_string, | |||
|
261 | 'ftp_wei': global_type_integer, | |||
|
262 | 'exp_code': global_type_integer, | |||
|
263 | 'sub_exp_code': global_type_integer, | |||
|
264 | 'plot_pos': global_type_integer, | |||
|
265 | 'xaxis': global_type_string, | |||
|
266 | } | |||
|
267 | ||||
234 | def __init__(self, **kwargs): |
|
268 | def __init__(self, **kwargs): | |
235 | Figure.__init__(self, **kwargs) |
|
269 | Figure.__init__(self, **kwargs) | |
236 | self.isConfig = False |
|
270 | self.isConfig = False | |
@@ -1143,6 +1177,32 class Noise(Figure): | |||||
1143 | __nsubplots = None |
|
1177 | __nsubplots = None | |
1144 |
|
1178 | |||
1145 | PREFIX = 'noise' |
|
1179 | PREFIX = 'noise' | |
|
1180 | ||||
|
1181 | parameters = { | |||
|
1182 | 'id': global_type_string, | |||
|
1183 | 'wintitle': global_type_string, | |||
|
1184 | 'channelList': global_type_list, | |||
|
1185 | 'showprofile': global_type_boolean, | |||
|
1186 | 'xmin': global_type_float, | |||
|
1187 | 'xmax': global_type_float, | |||
|
1188 | 'ymin': global_type_float, | |||
|
1189 | 'ymax': global_type_float, | |||
|
1190 | 'timerange': global_type_float, | |||
|
1191 | 'save': global_type_boolean, | |||
|
1192 | 'figpath': global_type_string, | |||
|
1193 | 'figfile': global_type_string, | |||
|
1194 | 'show': global_type_boolean, | |||
|
1195 | 'ftp': global_type_boolean, | |||
|
1196 | 'wr_period': global_type_integer, | |||
|
1197 | 'server': global_type_string, | |||
|
1198 | 'folder': global_type_string, | |||
|
1199 | 'username': global_type_string, | |||
|
1200 | 'password': global_type_string, | |||
|
1201 | 'ftp_wei': global_type_integer, | |||
|
1202 | 'exp_code': global_type_integer, | |||
|
1203 | 'sub_exp_code': global_type_integer, | |||
|
1204 | 'plot_pos': global_type_integer, | |||
|
1205 | } | |||
1146 |
|
1206 | |||
1147 | def __init__(self, **kwargs): |
|
1207 | def __init__(self, **kwargs): | |
1148 | Figure.__init__(self, **kwargs) |
|
1208 | Figure.__init__(self, **kwargs) | |
@@ -1345,31 +1405,31 class BeaconPhase(Figure): | |||||
1345 | PREFIX = 'beacon_phase' |
|
1405 | PREFIX = 'beacon_phase' | |
1346 |
|
1406 | |||
1347 | parameters = { |
|
1407 | parameters = { | |
1348 |
'id': |
|
1408 | 'id': global_type_string, | |
1349 |
'wintitle': |
|
1409 | 'wintitle': global_type_string, | |
1350 |
'pairsList': |
|
1410 | 'pairsList': global_type_pairsList, | |
1351 |
'showprofile': |
|
1411 | 'showprofile': global_type_boolean, | |
1352 |
'xmin': |
|
1412 | 'xmin': global_type_float, | |
1353 |
'xmax': |
|
1413 | 'xmax': global_type_float, | |
1354 |
'ymin': |
|
1414 | 'ymin': global_type_float, | |
1355 |
'ymax': |
|
1415 | 'ymax': global_type_float, | |
1356 |
'hmin': |
|
1416 | 'hmin': global_type_float, | |
1357 |
'hmax': |
|
1417 | 'hmax': global_type_float, | |
1358 |
'timerange': |
|
1418 | 'timerange': global_type_float, | |
1359 |
'save': |
|
1419 | 'save': global_type_boolean, | |
1360 |
'figpath': |
|
1420 | 'figpath': global_type_string, | |
1361 |
'figfile': |
|
1421 | 'figfile': global_type_string, | |
1362 |
'show': |
|
1422 | 'show': global_type_boolean, | |
1363 |
'ftp': |
|
1423 | 'ftp': global_type_boolean, | |
1364 |
'wr_period': |
|
1424 | 'wr_period': global_type_integer, | |
1365 |
'server': |
|
1425 | 'server': global_type_string, | |
1366 |
'folder': |
|
1426 | 'folder': global_type_string, | |
1367 |
'username': |
|
1427 | 'username': global_type_string, | |
1368 |
'password': |
|
1428 | 'password': global_type_string, | |
1369 |
'ftp_wei': |
|
1429 | 'ftp_wei': global_type_integer, | |
1370 |
'exp_code': |
|
1430 | 'exp_code': global_type_integer, | |
1371 |
'sub_exp_code': |
|
1431 | 'sub_exp_code': global_type_integer, | |
1372 |
'plot_pos': |
|
1432 | 'plot_pos': global_type_integer, | |
1373 | } |
|
1433 | } | |
1374 |
|
1434 | |||
1375 | def __init__(self, **kwargs): |
|
1435 | def __init__(self, **kwargs): |
@@ -119,7 +119,11 class Metadata(object): | |||||
119 | self.parmConfObjList.append(parmConfObj) |
|
119 | self.parmConfObjList.append(parmConfObj) | |
120 |
|
120 | |||
121 | class FitsWriter(Operation): |
|
121 | class FitsWriter(Operation): | |
122 |
|
122 | parameters = { | ||
|
123 | 'path': global_type_string, | |||
|
124 | 'dataBlocksPerFile': global_type_integer, | |||
|
125 | 'metadatafile': global_type_string, | |||
|
126 | } | |||
123 | def __init__(self, **kwargs): |
|
127 | def __init__(self, **kwargs): | |
124 | Operation.__init__(self, **kwargs) |
|
128 | Operation.__init__(self, **kwargs) | |
125 | self.isConfig = False |
|
129 | self.isConfig = False | |
@@ -276,9 +280,9 class FitsWriter(Operation): | |||||
276 | self.setNextFile() |
|
280 | self.setNextFile() | |
277 | self.writeNextBlock() |
|
281 | self.writeNextBlock() | |
278 |
|
282 | |||
279 | def run(self, dataOut, **kwargs): |
|
283 | def run(self, dataOut, path, dataBlocksPerFile=100, metadatafile=None, **kwargs): | |
280 | if not(self.isConfig): |
|
284 | if not(self.isConfig): | |
281 | self.setup(dataOut, **kwargs) |
|
285 | self.setup(dataOut, path, dataBlocksPerFile=dataBlocksPerFile, metadatafile=metadatafile, **kwargs) | |
282 | self.isConfig = True |
|
286 | self.isConfig = True | |
283 | self.putData() |
|
287 | self.putData() | |
284 |
|
288 |
@@ -42,7 +42,7 class BeamSelector(Operation): | |||||
42 | profileIndex = None |
|
42 | profileIndex = None | |
43 | nProfiles = None |
|
43 | nProfiles = None | |
44 | parameters = { |
|
44 | parameters = { | |
45 |
|
|
45 | 'beam': global_type_string, | |
46 | } |
|
46 | } | |
47 |
|
47 | |||
48 | def __init__(self): |
|
48 | def __init__(self): |
@@ -162,6 +162,11 class IncohInt4SpectraHeis(Operation): | |||||
162 | __dataReady = False |
|
162 | __dataReady = False | |
163 |
|
163 | |||
164 | n = None |
|
164 | n = None | |
|
165 | parameters = { | |||
|
166 | 'n': global_type_float, | |||
|
167 | 'timeInterval': global_type_integer, | |||
|
168 | 'overlapping': global_type_boolean, | |||
|
169 | } | |||
165 |
|
170 | |||
166 |
|
171 | |||
167 | def __init__(self, **kwargs): |
|
172 | def __init__(self, **kwargs): | |
@@ -324,10 +329,10 class IncohInt4SpectraHeis(Operation): | |||||
324 |
|
329 | |||
325 | return avgdata, avgdatatime |
|
330 | return avgdata, avgdatatime | |
326 |
|
331 | |||
327 | def run(self, dataOut, **kwargs): |
|
332 | def run(self, dataOut, n=None, timeInterval=None, overlapping=False, **kwargs): | |
328 |
|
333 | |||
329 | if not self.isConfig: |
|
334 | if not self.isConfig: | |
330 | self.setup(**kwargs) |
|
335 | self.setup(n=n, timeInterval=timeInterval, overlapping=overlapping) | |
331 | self.isConfig = True |
|
336 | self.isConfig = True | |
332 |
|
337 | |||
333 | avgdata, avgdatatime = self.integrate(dataOut.data_spc, dataOut.utctime) |
|
338 | avgdata, avgdatatime = self.integrate(dataOut.data_spc, dataOut.utctime) |
@@ -1277,6 +1277,14 class EWDriftsEstimation(Operation): | |||||
1277 |
|
1277 | |||
1278 | class NonSpecularMeteorDetection(Operation): |
|
1278 | class NonSpecularMeteorDetection(Operation): | |
1279 |
|
1279 | |||
|
1280 | parameters = { | |||
|
1281 | 'mode': global_type_string, | |||
|
1282 | 'SNRthresh': global_type_float, | |||
|
1283 | 'phaseDerThresh': global_type_float, | |||
|
1284 | 'cohThresh': global_type_float, | |||
|
1285 | 'allData': global_type_boolean, | |||
|
1286 | } | |||
|
1287 | ||||
1280 | def run(self, mode, SNRthresh=8, phaseDerThresh=0.5, cohThresh=0.8, allData = False): |
|
1288 | def run(self, mode, SNRthresh=8, phaseDerThresh=0.5, cohThresh=0.8, allData = False): | |
1281 | data_acf = self.dataOut.data_pre[0] |
|
1289 | data_acf = self.dataOut.data_pre[0] | |
1282 | data_ccf = self.dataOut.data_pre[1] |
|
1290 | data_ccf = self.dataOut.data_pre[1] | |
@@ -2190,6 +2198,13 class SMDetection(Operation): | |||||
2190 | return arrayParameters |
|
2198 | return arrayParameters | |
2191 |
|
2199 | |||
2192 | class CorrectSMPhases(Operation): |
|
2200 | class CorrectSMPhases(Operation): | |
|
2201 | parameters = { | |||
|
2202 | 'phaseOffsets': global_type_pairsList, | |||
|
2203 | 'hmin': global_type_float, | |||
|
2204 | 'hmax': global_type_float, | |||
|
2205 | 'azimuth': global_type_float, | |||
|
2206 | 'channelPositions': global_type_pairsList, | |||
|
2207 | } | |||
2193 |
|
2208 | |||
2194 | def run(self, dataOut, phaseOffsets, hmin = 50, hmax = 150, azimuth = 45, channelPositions = None): |
|
2209 | def run(self, dataOut, phaseOffsets, hmin = 50, hmax = 150, azimuth = 45, channelPositions = None): | |
2195 |
|
2210 |
@@ -742,6 +742,12 class IncohInt(Operation): | |||||
742 |
|
742 | |||
743 | __timeInterval = None |
|
743 | __timeInterval = None | |
744 |
|
744 | |||
|
745 | parameters = { | |||
|
746 | 'n': global_type_float, | |||
|
747 | 'timeInterval': global_type_integer, | |||
|
748 | 'overlapping': global_type_boolean, | |||
|
749 | } | |||
|
750 | ||||
745 | n = None |
|
751 | n = None | |
746 |
|
752 | |||
747 |
|
753 |
@@ -333,10 +333,35 class CohInt(Operation): | |||||
333 | n = None |
|
333 | n = None | |
334 |
|
334 | |||
335 | parameters = { |
|
335 | parameters = { | |
336 | 'n': 'int', |
|
336 | 'id': global_type_string, | |
337 | 'timeInterval':'float', |
|
337 | 'wintitle': global_type_string, | |
338 | 'overlapping': 'boolean', |
|
338 | 'pairsList': global_type_pairsList, | |
339 | 'byblock': 'boolean' |
|
339 | 'showprofile': global_type_boolean, | |
|
340 | 'xmin': global_type_float, | |||
|
341 | 'xmax': global_type_float, | |||
|
342 | 'ymin': global_type_float, | |||
|
343 | 'ymax': global_type_float, | |||
|
344 | 'zmin': global_type_float, | |||
|
345 | 'zmax': global_type_float, | |||
|
346 | 'timerange': global_type_float, | |||
|
347 | 'phase_min': global_type_float, | |||
|
348 | 'phase_max': global_type_float, | |||
|
349 | 'save': global_type_boolean, | |||
|
350 | 'figpath': global_type_string, | |||
|
351 | 'figfile': global_type_string, | |||
|
352 | 'ftp': global_type_boolean, | |||
|
353 | 'wr_period': global_type_integer, | |||
|
354 | 'coherence_cmap': global_type_colormap, | |||
|
355 | 'phase_cmap': global_type_colormap, | |||
|
356 | 'show': global_type_boolean, | |||
|
357 | 'server': global_type_string, | |||
|
358 | 'folder': global_type_string, | |||
|
359 | 'username': global_type_string, | |||
|
360 | 'password': global_type_string, | |||
|
361 | 'ftp_wei': global_type_integer, | |||
|
362 | 'exp_code': global_type_integer, | |||
|
363 | 'sub_exp_code': global_type_integer, | |||
|
364 | 'plot_pos': global_type_integer, | |||
340 | } |
|
365 | } | |
341 |
|
366 | |||
342 | def __init__(self, **kwargs): |
|
367 | def __init__(self, **kwargs): | |
@@ -552,7 +577,14 class Decoder(Operation): | |||||
552 |
|
577 | |||
553 | nCode = None |
|
578 | nCode = None | |
554 | nBaud = None |
|
579 | nBaud = None | |
555 |
|
580 | |||
|
581 | parameters = { | |||
|
582 | 'code': global_type_list, | |||
|
583 | 'nCode': global_type_integer, | |||
|
584 | 'nBaud': global_type_integer, | |||
|
585 | 'mode': global_type_integer, | |||
|
586 | 'osamp': global_type_float, | |||
|
587 | } | |||
556 |
|
588 | |||
557 | def __init__(self, **kwargs): |
|
589 | def __init__(self, **kwargs): | |
558 |
|
590 | |||
@@ -1091,7 +1123,7 class SplitProfiles(Operation): | |||||
1091 |
|
1123 | |||
1092 | class CombineProfiles(Operation): |
|
1124 | class CombineProfiles(Operation): | |
1093 | parameters = { |
|
1125 | parameters = { | |
1094 |
'n': |
|
1126 | 'n': global_type_integer, | |
1095 | } |
|
1127 | } | |
1096 | def __init__(self, **kwargs): |
|
1128 | def __init__(self, **kwargs): | |
1097 |
|
1129 |
@@ -11,20 +11,20 def fiber(cursor, skip, q, dt): | |||||
11 | controllerObj.setup(id='191', name='test01', description=desc) |
|
11 | controllerObj.setup(id='191', name='test01', description=desc) | |
12 |
|
12 | |||
13 | readUnitConfObj = controllerObj.addReadUnit(datatype='SpectraReader', |
|
13 | readUnitConfObj = controllerObj.addReadUnit(datatype='SpectraReader', | |
14 |
|
|
14 | path='/home/nanosat/data/julia', | |
15 |
|
|
15 | startDate=dt, | |
16 |
|
|
16 | endDate=dt, | |
17 |
|
|
17 | startTime="00:00:00", | |
18 |
|
|
18 | endTime="23:59:59", | |
19 |
|
|
19 | online=0, | |
20 |
|
|
20 | #set=1426485881, | |
21 |
|
|
21 | delay=10, | |
22 |
|
|
22 | walk=1, | |
23 |
|
|
23 | queue=q, | |
24 |
|
|
24 | cursor=cursor, | |
25 |
|
|
25 | skip=skip, | |
26 |
|
|
26 | #timezone=-5*3600 | |
27 |
|
|
27 | ) | |
28 |
|
28 | |||
29 | # #opObj11 = readUnitConfObj.addOperation(name='printNumberOfBlock') |
|
29 | # #opObj11 = readUnitConfObj.addOperation(name='printNumberOfBlock') | |
30 | # |
|
30 | # |
This diff has been collapsed as it changes many lines, (1668 lines changed) Show them Hide them | |||||
@@ -1,1160 +1,1172 | |||||
1 | You should install "digital_rf_hdf5" module if you want to read USRP data |
|
1 | ||
2 | BeaconPhase |
|
2 | global_type_string = 'string' | |
3 | parameters = { |
|
3 | global_type_integer = 'int' | |
4 | 'id': 'string', |
|
4 | global_type_floatList = 'floatList' | |
5 | 'wintitle': 'string', |
|
5 | global_type_pairsList = 'pairsList' | |
6 | 'pairsList': 'pairsList', |
|
6 | global_type_boolean = 'bolean' | |
7 | 'showprofile': 'boolean', |
|
7 | global_type_float = 'float' | |
8 | 'xmin': 'float', |
|
8 | global_type_colormap = 'colormap' | |
9 | 'xmax': 'float', |
|
9 | global_type_list = 'list' | |
10 | 'ymin': 'float', |
|
10 | ||
11 | 'ymax': 'float', |
|
11 | #BeaconPhase | |
12 | 'hmin': 'float', |
|
12 | parameters = { | |
13 | 'hmax': 'float', |
|
13 | 'id': global_type_string, | |
14 | 'timerange': 'float', |
|
14 | 'wintitle': global_type_string, | |
15 | 'save': 'boolean', |
|
15 | 'pairsList': global_type_pairsList, | |
16 | 'figpath': 'string', |
|
16 | 'showprofile': global_type_boolean, | |
17 | 'figfile': 'string', |
|
17 | 'xmin': global_type_float, | |
18 | 'show': 'boolean', |
|
18 | 'xmax': global_type_float, | |
19 | 'ftp': 'boolean', |
|
19 | 'ymin': global_type_float, | |
20 | 'wr_period': 'int', |
|
20 | 'ymax': global_type_float, | |
21 | 'server': 'string', |
|
21 | 'hmin': global_type_float, | |
22 | 'folder': 'string', |
|
22 | 'hmax': global_type_float, | |
23 | 'username': 'string', |
|
23 | 'timerange': global_type_float, | |
24 | 'password': 'string', |
|
24 | 'save': global_type_boolean, | |
25 | 'ftp_wei': 'int', |
|
25 | 'figpath': global_type_string, | |
26 | 'exp_code': 'int', |
|
26 | 'figfile': global_type_string, | |
27 | 'sub_exp_code': 'int', |
|
27 | 'show': global_type_boolean, | |
28 | 'plot_pos': 'int', |
|
28 | 'ftp': global_type_boolean, | |
29 | } |
|
29 | 'wr_period': global_type_integer, | |
30 |
|
30 | 'server': global_type_string, | ||
31 |
|
31 | 'folder': global_type_string, | ||
32 | BeamSelector |
|
32 | 'username': global_type_string, | |
33 | parameters = { |
|
33 | 'password': global_type_string, | |
34 | 'beam': 'string', |
|
34 | 'ftp_wei': global_type_integer, | |
35 | } |
|
35 | 'exp_code': global_type_integer, | |
36 |
|
36 | 'sub_exp_code': global_type_integer, | ||
37 |
|
37 | 'plot_pos': global_type_integer, | ||
38 | CohInt |
|
38 | } | |
39 | parameters = { |
|
39 | ||
40 | 'n': 'int', |
|
40 | ||
41 | 'timeInterval': 'float', |
|
41 | #BeamSelector | |
42 | 'overlapping': 'boolean', |
|
42 | parameters = { | |
43 | 'byblock': 'boolean' |
|
43 | 'beam': global_type_string, | |
|
44 | } | |||
|
45 | ||||
|
46 | ||||
|
47 | #CohInt | |||
|
48 | parameters = { | |||
|
49 | 'n': global_type_integer, | |||
|
50 | 'timeInterval': global_type_float, | |||
|
51 | 'overlapping': global_type_boolean, | |||
|
52 | 'byblock': global_type_boolean | |||
|
53 | } | |||
|
54 | ||||
|
55 | ||||
|
56 | #CoherenceMap | |||
|
57 | parameters = { | |||
|
58 | 'id': global_type_string, | |||
|
59 | 'wintitle': global_type_string, | |||
|
60 | 'pairsList': global_type_pairsList, | |||
|
61 | 'showprofile': global_type_boolean, | |||
|
62 | 'xmin': global_type_float, | |||
|
63 | 'xmax': global_type_float, | |||
|
64 | 'ymin': global_type_float, | |||
|
65 | 'ymax': global_type_float, | |||
|
66 | 'zmin': global_type_float, | |||
|
67 | 'zmax': global_type_float, | |||
|
68 | 'timerange': global_type_float, | |||
|
69 | 'phase_min': global_type_float, | |||
|
70 | 'phase_max': global_type_float, | |||
|
71 | 'save': global_type_boolean, | |||
|
72 | 'figpath': global_type_string, | |||
|
73 | 'figfile': global_type_string, | |||
|
74 | 'ftp': global_type_boolean, | |||
|
75 | 'wr_period': global_type_integer, | |||
|
76 | 'coherence_cmap': global_type_colormap, | |||
|
77 | 'phase_cmap': global_type_colormap, | |||
|
78 | 'show': global_type_boolean, | |||
|
79 | 'server': global_type_string, | |||
|
80 | 'folder': global_type_string, | |||
|
81 | 'username': global_type_string, | |||
|
82 | 'password': global_type_string, | |||
|
83 | 'ftp_wei': global_type_integer, | |||
|
84 | 'exp_code': global_type_integer, | |||
|
85 | 'sub_exp_code': global_type_integer, | |||
|
86 | 'plot_pos': global_type_integer, | |||
|
87 | } | |||
|
88 | ||||
|
89 | ||||
|
90 | #CombineProfiles | |||
|
91 | parameters = { | |||
|
92 | 'n': global_type_integer, | |||
44 | } |
|
93 | } | |
45 |
|
94 | |||
46 |
|
95 | |||
47 | CoherenceMap |
|
96 | #CorrectSMPhases | |
48 | parameters = { |
|
97 | parameters = { | |
49 | 'id': 'string', |
|
98 | 'phaseOffsets': global_type_pairsList, | |
50 | 'wintitle': 'string', |
|
99 | 'hmin': global_type_float, | |
51 | 'pairsList': 'pairsLists', |
|
100 | 'hmax': global_type_float, | |
52 | 'showprofile': 'boolean', |
|
101 | 'azimuth': global_type_float, | |
53 | 'xmin': 'float', |
|
102 | 'channelPositions': global_type_pairsList, | |
54 | 'xmax': 'float', |
|
103 | } | |
55 | 'ymin': 'float', |
|
104 | ||
56 | 'ymax': 'float', |
|
105 | ||
57 | 'zmin': 'float', |
|
106 | #CorrelationPlot | |
58 | 'zmax': 'float', |
|
107 | parameters = { | |
59 | 'timerange': 'float', |
|
108 | 'id': global_type_string, | |
60 | 'phase_min': 'float', |
|
109 | 'wintitle': global_type_string, | |
61 | 'phase_max': 'float', |
|
110 | 'channelList': global_type_list, | |
62 | 'save': 'boolean', |
|
111 | 'showprofile': global_type_boolean, | |
63 | 'figpath': 'string', |
|
112 | 'xmin': global_type_float, | |
64 | 'figfile': 'string', |
|
113 | 'xmax': global_type_float, | |
65 | 'ftp': 'boolean', |
|
114 | 'ymin': global_type_float, | |
66 | 'wr_period': 'int', |
|
115 | 'ymax': global_type_float, | |
67 | 'coherence_cmap': 'colormap', |
|
116 | 'zmin': global_type_float, | |
68 | 'phase_cmap': 'colormap', |
|
117 | 'zmax': global_type_float, | |
69 | 'show': 'boolean', |
|
118 | 'save': global_type_boolean, | |
70 | 'server': 'string', |
|
119 | 'figpath': global_type_string, | |
71 | 'folder': 'string', |
|
120 | 'figfile': global_type_string, | |
72 | 'username': 'string', |
|
121 | 'show': global_type_boolean, | |
73 | 'password': 'string', |
|
122 | 'ftp': global_type_boolean, | |
74 | 'ftp_wei': 'int', |
|
123 | 'wr_period': global_type_integer, | |
75 | 'exp_code': 'int', |
|
124 | 'server': global_type_string, | |
76 | 'sub_exp_code': 'int', |
|
125 | 'folder': global_type_string, | |
77 | 'plot_pos': 'int', |
|
126 | 'username': global_type_string, | |
78 | } |
|
127 | 'password': global_type_string, | |
79 |
|
128 | 'ftp_wei': global_type_integer, | ||
80 |
|
129 | 'exp_code': global_type_integer, | ||
81 | CombineProfiles |
|
130 | 'sub_exp_code': global_type_integer, | |
82 | parameters = { |
|
131 | 'plot_pos': global_type_integer, | |
83 | 'n': 'int', |
|
132 | 'realtime': global_type_boolean, | |
84 | } |
|
133 | } | |
85 |
|
134 | |||
86 |
|
135 | |||
87 | CorrectSMPhases |
|
136 | #CrossSpectraPlot | |
88 | parameters = { |
|
137 | parameters = { | |
89 | 'phaseOffsets': 'pairsLists', |
|
138 | 'id': global_type_string, | |
90 | 'hmin': 'float', |
|
139 | 'wintitle': global_type_string, | |
91 | 'hmax': 'float', |
|
140 | 'pairsList': global_type_pairsList, | |
92 | 'azimuth': 'string', |
|
141 | 'xmin': global_type_float, | |
93 | 'channelPositions': 'string', |
|
142 | 'xmax': global_type_float, | |
94 | } |
|
143 | 'ymin': global_type_float, | |
95 |
|
144 | 'ymax': global_type_float, | ||
96 |
|
145 | 'zmin': global_type_float, | ||
97 | CorrelationPlot |
|
146 | 'zmax': global_type_float, | |
98 | parameters = { |
|
147 | 'coh_min': global_type_float, | |
99 | 'id': 'string', |
|
148 | 'coh_max': global_type_float, | |
100 | 'wintitle': 'string', |
|
149 | 'phase_min': global_type_float, | |
101 | 'channelList': 'string', |
|
150 | 'phase_max': global_type_float, | |
102 | 'showprofile': 'string', |
|
151 | 'save': global_type_boolean, | |
103 | 'xmin': 'float', |
|
152 | 'figpath': global_type_string, | |
104 | 'xmax': 'float', |
|
153 | 'figfile': global_type_string, | |
105 | 'ymin': 'float', |
|
154 | 'ftp': global_type_boolean, | |
106 | 'ymax': 'float', |
|
155 | 'wr_period': global_type_integer, | |
107 | 'zmin': 'float', |
|
156 | 'power_cmap': global_type_colormap, | |
108 | 'zmax': 'float', |
|
157 | 'coherence_cmap': global_type_colormap, | |
109 | 'save': 'boolean', |
|
158 | 'phase_cmap': global_type_colormap, | |
110 | 'figpath': 'string', |
|
159 | 'show': global_type_boolean, | |
111 | 'figfile': 'string', |
|
160 | 'server': global_type_string, | |
112 | 'show': 'boolean', |
|
161 | 'folder': global_type_string, | |
113 | 'ftp': 'boolean', |
|
162 | 'username': global_type_string, | |
114 | 'wr_period': 'int', |
|
163 | 'password': global_type_string, | |
115 | 'server': 'string', |
|
164 | 'ftp_wei': global_type_integer, | |
116 | 'folder': 'string', |
|
165 | 'exp_code': global_type_integer, | |
117 | 'username': 'string', |
|
166 | 'sub_exp_code': global_type_integer, | |
118 | 'password': 'string', |
|
167 | 'plot_pos': global_type_integer, | |
119 | 'ftp_wei': 'string', |
|
168 | 'xaxis': global_type_string, | |
120 | 'exp_code': 'int', |
|
169 | } | |
121 | 'sub_exp_code': 'int', |
|
170 | ||
122 | 'plot_pos': 'int', |
|
171 | ||
123 | 'realtime': 'string', |
|
172 | #Decoder | |
124 | } |
|
173 | parameters = { | |
125 |
|
174 | 'code': global_type_list, | ||
126 |
|
175 | 'nCode': global_type_integer, | ||
127 | CrossSpectraPlot |
|
176 | 'nBaud': global_type_integer, | |
128 | parameters = { |
|
177 | 'mode': global_type_integer, | |
129 | 'id': 'string', |
|
178 | 'osamp': global_type_float, | |
130 | 'wintitle': 'string', |
|
179 | } | |
131 | 'pairsList': 'pairsLists', |
|
180 | ||
132 | 'xmin': 'float', |
|
181 | ||
133 | 'xmax': 'float', |
|
182 | #EWDriftsEstimation | |
134 | 'ymin': 'float', |
|
183 | parameters = { | |
135 | 'ymax': 'float', |
|
184 | 'zenith': global_type_list, | |
136 | 'zmin': 'float', |
|
185 | 'zenithCorrection': global_type_float, | |
137 | 'zmax': 'float', |
|
186 | } | |
138 | 'coh_min': 'string', |
|
187 | ||
139 | 'coh_max': 'string', |
|
188 | ||
140 | 'phase_min': 'string', |
|
189 | #EWDriftsPlot | |
141 | 'phase_max': 'string', |
|
190 | parameters = { | |
142 | 'save': 'boolean', |
|
191 | 'id': global_type_string, | |
143 | 'figpath': 'string', |
|
192 | 'wintitle': global_type_string, | |
144 | 'figfile': 'string', |
|
193 | 'channelList': global_type_list, | |
145 | 'ftp': 'boolean', |
|
194 | 'xmin': global_type_float, | |
146 | 'wr_period': 'int', |
|
195 | 'xmax': global_type_float, | |
147 | 'power_cmap': 'string', |
|
196 | 'ymin': global_type_float, | |
148 | 'coherence_cmap': 'string', |
|
197 | 'ymax': global_type_float, | |
149 | 'phase_cmap': 'string', |
|
198 | 'zmin': global_type_float, | |
150 | 'show': 'string', |
|
199 | 'zmax': global_type_float, | |
151 | 'server': 'string', |
|
200 | 'zmaxVertfloat': global_type_float, | |
152 | 'folder': 'string', |
|
201 | 'zminVertfloat': global_type_float, | |
153 | 'username': 'string', |
|
202 | 'zmaxZonafloat': global_type_float, | |
154 | 'password': 'string', |
|
203 | 'zminZonafloat': global_type_float, | |
155 | 'ftp_wei': 'string', |
|
204 | 'timerange': global_type_float, | |
156 | 'exp_code': 'int', |
|
205 | 'SNRthresh': global_type_float, | |
157 | 'sub_exp_code': 'int', |
|
206 | 'SNRmin': global_type_float, | |
158 | 'plot_pos': 'int', |
|
207 | 'SNRmax': global_type_float, | |
159 | 'xaxis': 'string', |
|
208 | 'SNR_1': global_type_boolean, | |
160 | } |
|
209 | 'save': global_type_boolean, | |
161 |
|
210 | 'figpath': global_type_string, | ||
162 |
|
211 | 'lastone': global_type_float, | ||
163 | Decoder |
|
212 | 'figfile': global_type_string, | |
164 | parameters = { |
|
213 | 'ftp': global_type_string, | |
165 | 'code': 'string', |
|
214 | 'wr_period': global_type_integer, | |
166 | 'nCode': 'string', |
|
215 | 'show': global_type_string, | |
167 | 'nBaud': 'string', |
|
216 | 'server': global_type_string, | |
168 |
' |
|
217 | 'folder': global_type_string, | |
169 | 'osamp': 'string', |
|
218 | 'username': global_type_string, | |
170 | 'times': 'string', |
|
219 | 'password': global_type_string, | |
171 | } |
|
220 | 'ftp_wei': global_type_integer, | |
172 |
|
221 | 'exp_code': global_type_integer, | ||
173 |
|
222 | 'sub_exp_code': global_type_integer, | ||
174 | EWDriftsEstimation |
|
223 | 'plot_pos': global_type_integer, | |
175 | parameters = { |
|
|||
176 | 'zenith': 'string', |
|
|||
177 | 'zenithCorrection': 'string', |
|
|||
178 | } |
|
|||
179 |
|
||||
180 |
|
||||
181 | EWDriftsPlot |
|
|||
182 | parameters = { |
|
|||
183 | 'id': 'string', |
|
|||
184 | 'wintitle': 'string', |
|
|||
185 | 'channelList': 'string', |
|
|||
186 | 'xmin': 'float', |
|
|||
187 | 'xmax': 'float', |
|
|||
188 | 'ymin': 'float', |
|
|||
189 | 'ymax': 'float', |
|
|||
190 | 'zmin': 'float', |
|
|||
191 | 'zmax': 'float', |
|
|||
192 | 'zmaxVertfloat 'string', |
|
|||
193 | 'zminVertfloat 'string', |
|
|||
194 | 'zmaxZonafloattring', |
|
|||
195 | 'zminZonafloattring', |
|
|||
196 | 'timerange': 'string', |
|
|||
197 | 'SNRthresh': 'string', |
|
|||
198 | 'SNRmin': 'string', |
|
|||
199 | 'SNRmax': 'string', |
|
|||
200 | 'SNR_1': 'string', |
|
|||
201 | 'save': 'boolean', |
|
|||
202 | 'figpath': 'string', |
|
|||
203 | 'lastone': 'string', |
|
|||
204 | 'figfile': 'string', |
|
|||
205 | 'ftp': 'string', |
|
|||
206 | 'wr_period': 'int', |
|
|||
207 | 'show': 'string', |
|
|||
208 | 'server': 'string', |
|
|||
209 | 'folder': 'string', |
|
|||
210 | 'username': 'string', |
|
|||
211 | 'password': 'string', |
|
|||
212 | 'ftp_wei': 'string', |
|
|||
213 | 'exp_code': 'int', |
|
|||
214 | 'sub_exp_code': 'int', |
|
|||
215 | 'plot_pos': 'int', |
|
|||
216 | } |
|
224 | } | |
217 |
|
225 | |||
218 |
|
226 | |||
219 | Figure |
|
227 | Figure | |
|
228 | # parameters = { | |||
|
229 | # : global_type_string, | |||
|
230 | # } | |||
|
231 | ||||
|
232 | ||||
|
233 | #FitsWriter | |||
220 | parameters = { |
|
234 | parameters = { | |
221 | : 'string', |
|
235 | 'path': global_type_string, | |
222 | } |
|
236 | 'dataBlocksPerFile': global_type_integer, | |
223 |
|
237 | 'metadatafile': global_type_string, | ||
224 |
|
238 | } | ||
225 | FitsWriter |
|
239 | ||
226 | parameters = { |
|
240 | ||
227 | : 'string', |
|
241 | #IncohInt | |
228 | } |
|
242 | parameters = { | |
229 |
|
243 | 'n': global_type_float, | ||
230 |
|
244 | 'timeInterval': global_type_integer, | ||
231 | IncohInt |
|
245 | 'overlapping': global_type_boolean, | |
232 | parameters = { |
|
246 | } | |
233 | 'n': 'string', |
|
247 | ||
234 | 'timeInterval': 'string', |
|
248 | ||
235 | 'overlapping': 'string', |
|
249 | #IncohInt4SpectraHeis | |
236 | } |
|
250 | parameters = { | |
237 |
|
251 | 'n': global_type_float, | ||
238 |
|
252 | 'timeInterval': global_type_integer, | ||
239 | IncohInt4SpectraHeis |
|
253 | 'overlapping': global_type_boolean, | |
240 | parameters = { |
|
254 | } | |
241 | : 'string', |
|
255 | ||
242 | } |
|
256 | ||
243 |
|
257 | #MomentsPlot | ||
244 |
|
258 | parameters = { | ||
245 | MomentsPlot |
|
259 | 'id': global_type_string, | |
246 | parameters = { |
|
260 | 'wintitle': global_type_string, | |
247 | 'id': 'string', |
|
261 | 'channelList': global_type_list, | |
248 | 'wintitle': 'string', |
|
262 | 'showprofile': global_type_boolean, | |
249 | 'channelList': 'string', |
|
263 | 'xmin': global_type_float, | |
250 | 'showprofile': 'string', |
|
264 | 'xmax': global_type_float, | |
251 |
' |
|
265 | 'ymin': global_type_float, | |
252 |
' |
|
266 | 'ymax': global_type_float, | |
253 |
' |
|
267 | 'zmin': global_type_float, | |
254 |
' |
|
268 | 'zmax': global_type_float, | |
255 | 'zmin': 'float', |
|
269 | 'save': global_type_boolean, | |
256 | 'zmax': 'float', |
|
270 | 'figpath': global_type_string, | |
257 | 'save': 'boolean', |
|
271 | 'figfile': global_type_string, | |
258 | 'figpath': 'string', |
|
272 | 'show': global_type_boolean, | |
259 | 'figfile': 'string', |
|
273 | 'ftp': global_type_boolean, | |
260 | 'show': 'string', |
|
274 | 'wr_period': global_type_integer, | |
261 | 'ftp': 'string', |
|
275 | 'server': global_type_string, | |
262 | 'wr_period': 'int', |
|
276 | 'folder': global_type_string, | |
263 |
' |
|
277 | 'username': global_type_string, | |
264 | 'folder': 'string', |
|
278 | 'password': global_type_string, | |
265 | 'username': 'string', |
|
279 | 'ftp_wei': global_type_string, | |
266 | 'password': 'string', |
|
280 | 'exp_code': global_type_integer, | |
267 | 'ftp_wei': 'string', |
|
281 | 'sub_exp_code': global_type_integer, | |
268 | 'exp_code': 'int', |
|
282 | 'plot_pos': global_type_integer, | |
269 | 'sub_exp_code': 'int', |
|
283 | 'realtime': global_type_boolean, | |
270 | 'plot_pos': 'int', |
|
284 | } | |
271 | 'realtime': 'string', |
|
285 | ||
272 | } |
|
286 | ||
273 |
|
287 | #NSMeteorDetection1Plot | ||
274 |
|
288 | parameters = { | ||
275 | NSMeteorDetection1Plot |
|
289 | 'id': global_type_string, | |
276 | parameters = { |
|
290 | 'wintitle': global_type_string, | |
277 | 'id': 'string', |
|
291 | 'channelList': global_type_list, | |
278 | 'wintitle': 'string', |
|
292 | 'showprofile': global_type_boolean, | |
279 | 'channelList': 'string', |
|
293 | 'xmin': global_type_float, | |
280 | 'showprofile': 'string', |
|
294 | 'xmax': global_type_float, | |
281 |
' |
|
295 | 'ymin': global_type_float, | |
282 |
' |
|
296 | 'ymax': global_type_float, | |
283 |
' |
|
297 | 'SNRmin': global_type_float, | |
284 |
' |
|
298 | 'SNRmax': global_type_float, | |
285 | 'SNRmin': 'string', |
|
299 | 'vmin': global_type_float, | |
286 | 'SNRmax': 'string', |
|
300 | 'vmax': global_type_float, | |
287 | 'vmin': 'string', |
|
301 | 'wmin': global_type_float, | |
288 | 'vmax': 'string', |
|
302 | 'wmax': global_type_float, | |
289 | 'wmin': 'string', |
|
303 | 'mode': global_type_string, | |
290 | 'wmax': 'string', |
|
304 | 'save': global_type_boolean, | |
291 | 'mode': 'string', |
|
305 | 'figpath': global_type_string, | |
292 | 'save': 'boolean', |
|
306 | 'figfile': global_type_string, | |
293 | 'figpath': 'string', |
|
307 | 'show': global_type_boolean, | |
294 | 'figfile': 'string', |
|
308 | 'ftp': global_type_string, | |
295 | 'show': 'string', |
|
309 | 'wr_period': global_type_integer, | |
296 | 'ftp': 'string', |
|
310 | 'server': global_type_string, | |
297 | 'wr_period': 'int', |
|
311 | 'folder': global_type_string, | |
298 |
' |
|
312 | 'username': global_type_string, | |
299 | 'folder': 'string', |
|
313 | 'password': global_type_string, | |
300 | 'username': 'string', |
|
314 | 'ftp_wei': global_type_integer, | |
301 | 'password': 'string', |
|
315 | 'exp_code': global_type_integer, | |
302 | 'ftp_wei': 'string', |
|
316 | 'sub_exp_code': global_type_integer, | |
303 | 'exp_code': 'int', |
|
317 | 'plot_pos': global_type_integer, | |
304 | 'sub_exp_code': 'int', |
|
318 | 'realtime': global_type_boolean, | |
305 | 'plot_pos': 'int', |
|
319 | 'xaxis': global_type_string, | |
306 | 'realtime': 'string', |
|
320 | } | |
307 | 'xaxis': 'string', |
|
321 | ||
308 | } |
|
322 | ||
309 |
|
323 | #NSMeteorDetection2Plot | ||
310 |
|
324 | parameters = { | ||
311 | NSMeteorDetection2Plot |
|
325 | 'id': global_type_string, | |
312 | parameters = { |
|
326 | 'wintitle': global_type_string, | |
313 | 'id': 'string', |
|
327 | 'channelList': global_type_list, | |
314 | 'wintitle': 'string', |
|
328 | 'showprofile': global_type_boolean, | |
315 | 'channelList': 'string', |
|
329 | 'xmin': global_type_float, | |
316 | 'showprofile': 'string', |
|
330 | 'xmax': global_type_float, | |
317 |
' |
|
331 | 'ymin': global_type_float, | |
318 |
' |
|
332 | 'ymax': global_type_float, | |
319 |
' |
|
333 | 'SNRmin': global_type_float, | |
320 |
' |
|
334 | 'SNRmax': global_type_float, | |
321 | 'SNRmin': 'string', |
|
335 | 'vmin': global_type_float, | |
322 | 'SNRmax': 'string', |
|
336 | 'vmax': global_type_float, | |
323 | 'vmin': 'string', |
|
337 | 'wmin': global_type_float, | |
324 | 'vmax': 'string', |
|
338 | 'wmax': global_type_float, | |
325 | 'wmin': 'string', |
|
339 | 'mode': global_type_string, | |
326 | 'wmax': 'string', |
|
340 | 'save': global_type_boolean, | |
327 | 'mode': 'string', |
|
341 | 'figpath': global_type_string, | |
328 | 'save': 'boolean', |
|
342 | 'figfile': global_type_string, | |
329 | 'figpath': 'string', |
|
343 | 'show': global_type_string, | |
330 | 'figfile': 'string', |
|
344 | 'ftp': global_type_boolean, | |
331 | 'show': 'string', |
|
345 | 'wr_period': global_type_integer, | |
332 | 'ftp': 'string', |
|
346 | 'server': global_type_string, | |
333 | 'wr_period': 'int', |
|
347 | 'folder': global_type_string, | |
334 |
' |
|
348 | 'username': global_type_string, | |
335 | 'folder': 'string', |
|
349 | 'password': global_type_string, | |
336 | 'username': 'string', |
|
350 | 'ftp_wei': global_type_integer, | |
337 | 'password': 'string', |
|
351 | 'exp_code': global_type_integer, | |
338 | 'ftp_wei': 'string', |
|
352 | 'sub_exp_code': global_type_integer, | |
339 | 'exp_code': 'int', |
|
353 | 'plot_pos': global_type_integer, | |
340 | 'sub_exp_code': 'int', |
|
354 | 'realtime': global_type_boolean, | |
341 | 'plot_pos': 'int', |
|
355 | 'xaxis': global_type_string, | |
342 | 'realtime': 'string', |
|
356 | } | |
343 | 'xaxis': 'string', |
|
357 | ||
344 | } |
|
358 | ||
345 |
|
359 | #Noise | ||
346 |
|
360 | parameters = { | ||
347 | Noise |
|
361 | 'id': global_type_string, | |
348 | parameters = { |
|
362 | 'wintitle': global_type_string, | |
349 | 'id': 'string', |
|
363 | 'channelList': global_type_list, | |
350 | 'wintitle': 'string', |
|
364 | 'showprofile': global_type_boolean, | |
351 | 'channelList': 'string', |
|
365 | 'xmin': global_type_float, | |
352 | 'showprofile': 'string', |
|
366 | 'xmax': global_type_float, | |
353 |
' |
|
367 | 'ymin': global_type_float, | |
354 |
' |
|
368 | 'ymax': global_type_float, | |
355 | 'ymin': 'float', |
|
369 | 'timerange': global_type_float, | |
356 | 'ymax': 'float', |
|
370 | 'save': global_type_boolean, | |
357 | 'timerange': 'string', |
|
371 | 'figpath': global_type_string, | |
358 | 'save': 'boolean', |
|
372 | 'figfile': global_type_string, | |
359 | 'figpath': 'string', |
|
373 | 'show': global_type_boolean, | |
360 | 'figfile': 'string', |
|
374 | 'ftp': global_type_boolean, | |
361 | 'show': 'string', |
|
375 | 'wr_period': global_type_integer, | |
362 | 'ftp': 'string', |
|
376 | 'server': global_type_string, | |
363 | 'wr_period': 'int', |
|
377 | 'folder': global_type_string, | |
364 |
' |
|
378 | 'username': global_type_string, | |
365 | 'folder': 'string', |
|
379 | 'password': global_type_string, | |
366 | 'username': 'string', |
|
380 | 'ftp_wei': global_type_integer, | |
367 | 'password': 'string', |
|
381 | 'exp_code': global_type_integer, | |
368 | 'ftp_wei': 'string', |
|
382 | 'sub_exp_code': global_type_integer, | |
369 | 'exp_code': 'int', |
|
383 | 'plot_pos': global_type_integer, | |
370 | 'sub_exp_code': 'int', |
|
384 | } | |
371 | 'plot_pos': 'int', |
|
385 | ||
372 | } |
|
386 | ||
373 |
|
387 | #NonSpecularMeteorDetection | ||
374 |
|
388 | parameters = { | ||
375 | NonSpecularMeteorDetection |
|
389 | 'mode': global_type_string, | |
376 | parameters = { |
|
390 | 'SNRthresh': global_type_float, | |
377 | 'mode': 'string', |
|
391 | 'phaseDerThresh': global_type_float, | |
378 | 'SNRthresh': 'string', |
|
392 | 'cohThresh': global_type_float, | |
379 | 'phaseDerThresh': 'string', |
|
393 | 'allData': global_type_boolean, | |
380 | 'cohThresh': 'string', |
|
|||
381 | 'allData': 'string', |
|
|||
382 | } |
|
394 | } | |
383 |
|
395 | |||
384 |
|
396 | |||
385 | Operation |
|
397 | Operation | |
386 | parameters = { |
|
398 | parameters = { | |
387 |
'dataIn': |
|
399 | 'dataIn': global_type_string, | |
388 | } |
|
400 | } | |
389 |
|
401 | |||
390 |
|
402 | |||
391 | ParamWriter |
|
403 | ParamWriter | |
392 | parameters = { |
|
404 | parameters = { | |
393 | : 'string', |
|
405 | : global_type_string, | |
394 | } |
|
406 | } | |
395 |
|
407 | |||
396 |
|
408 | |||
397 | Parameters1Plot |
|
409 | Parameters1Plot | |
398 | parameters = { |
|
410 | parameters = { | |
399 |
'id': |
|
411 | 'id': global_type_string, | |
400 |
'wintitle': |
|
412 | 'wintitle': global_type_string, | |
401 |
'channelList': |
|
413 | 'channelList': global_type_list, | |
402 |
'showprofile': |
|
414 | 'showprofile': global_type_boolean, | |
403 |
'xmin': |
|
415 | 'xmin': global_type_float, | |
404 |
'xmax': |
|
416 | 'xmax': global_type_float, | |
405 |
'ymin': |
|
417 | 'ymin': global_type_float, | |
406 |
'ymax': |
|
418 | 'ymax': global_type_float, | |
407 |
'zmin': |
|
419 | 'zmin': global_type_float, | |
408 |
'zmax': |
|
420 | 'zmax': global_type_float, | |
409 | 'timerange': 'string', |
|
421 | 'timerange': global_type_float, | |
410 |
'parameterIndex': |
|
422 | 'parameterIndex': global_type_string, | |
411 |
'onlyPositive': |
|
423 | 'onlyPositive': global_type_string, | |
412 |
'SNRthresh': |
|
424 | 'SNRthresh': global_type_string, | |
413 |
'SNR': |
|
425 | 'SNR': global_type_string, | |
414 | 'SNRmin': 'string', |
|
426 | 'SNRmin': global_type_float, | |
415 | 'SNRmax': 'string', |
|
427 | 'SNRmax': global_type_float, | |
416 |
'onlySNR': |
|
428 | 'onlySNR': global_type_string, | |
417 |
'DOP': |
|
429 | 'DOP': global_type_string, | |
418 |
'zlabel': |
|
430 | 'zlabel': global_type_string, | |
419 |
'parameterName': |
|
431 | 'parameterName': global_type_string, | |
420 |
'parameterObject': |
|
432 | 'parameterObject': global_type_string, | |
421 |
'save': |
|
433 | 'save': global_type_boolean, | |
422 |
'figpath': |
|
434 | 'figpath': global_type_string, | |
423 |
'lastone': |
|
435 | 'lastone': global_type_string, | |
424 |
'figfile': |
|
436 | 'figfile': global_type_string, | |
425 |
'ftp': |
|
437 | 'ftp': global_type_string, | |
426 |
'wr_period': |
|
438 | 'wr_period': global_type_integer, | |
427 |
'show': |
|
439 | 'show': global_type_string, | |
428 |
'server': |
|
440 | 'server': global_type_string, | |
429 |
'folder': |
|
441 | 'folder': global_type_string, | |
430 |
'username': |
|
442 | 'username': global_type_string, | |
431 |
'password': |
|
443 | 'password': global_type_string, | |
432 |
'ftp_wei': |
|
444 | 'ftp_wei': global_type_integer, | |
433 |
'exp_code': |
|
445 | 'exp_code': global_type_integer, | |
434 |
'sub_exp_code': |
|
446 | 'sub_exp_code': global_type_integer, | |
435 |
'plot_pos': |
|
447 | 'plot_pos': global_type_integer, | |
436 | } |
|
448 | } | |
437 |
|
449 | |||
438 |
|
450 | |||
439 | ParametersPlot |
|
451 | ParametersPlot | |
440 | parameters = { |
|
452 | parameters = { | |
441 |
'id': |
|
453 | 'id': global_type_string, | |
442 |
'wintitle': |
|
454 | 'wintitle': global_type_string, | |
443 |
'channelList': |
|
455 | 'channelList': global_type_list, | |
444 |
'paramIndex': |
|
456 | 'paramIndex': global_type_string, | |
445 |
'colormap': |
|
457 | 'colormap': global_type_string, | |
446 |
'xmin': |
|
458 | 'xmin': global_type_float, | |
447 |
'xmax': |
|
459 | 'xmax': global_type_float, | |
448 |
'ymin': |
|
460 | 'ymin': global_type_float, | |
449 |
'ymax': |
|
461 | 'ymax': global_type_float, | |
450 |
'zmin': |
|
462 | 'zmin': global_type_float, | |
451 |
'zmax': |
|
463 | 'zmax': global_type_float, | |
452 | 'timerange': 'string', |
|
464 | 'timerange': global_type_float, | |
453 |
'showSNR': |
|
465 | 'showSNR': global_type_string, | |
454 |
'SNRthresh': |
|
466 | 'SNRthresh': global_type_string, | |
455 | 'SNRmin': 'string', |
|
467 | 'SNRmin': global_type_float, | |
456 | 'SNRmax': 'string', |
|
468 | 'SNRmax': global_type_float, | |
457 |
'save': |
|
469 | 'save': global_type_boolean, | |
458 |
'figpath': |
|
470 | 'figpath': global_type_string, | |
459 |
'lastone': |
|
471 | 'lastone': global_type_string, | |
460 |
'figfile': |
|
472 | 'figfile': global_type_string, | |
461 |
'ftp': |
|
473 | 'ftp': global_type_string, | |
462 |
'wr_period': |
|
474 | 'wr_period': global_type_integer, | |
463 |
'show': |
|
475 | 'show': global_type_string, | |
464 |
'server': |
|
476 | 'server': global_type_string, | |
465 |
'folder': |
|
477 | 'folder': global_type_string, | |
466 |
'username': |
|
478 | 'username': global_type_string, | |
467 |
'password': |
|
479 | 'password': global_type_string, | |
468 |
'ftp_wei': |
|
480 | 'ftp_wei': global_type_integer, | |
469 |
'exp_code': |
|
481 | 'exp_code': global_type_integer, | |
470 |
'sub_exp_code': |
|
482 | 'sub_exp_code': global_type_integer, | |
471 |
'plot_pos': |
|
483 | 'plot_pos': global_type_integer, | |
472 | } |
|
484 | } | |
473 |
|
485 | |||
474 |
|
486 | |||
475 | PhasePlot |
|
487 | PhasePlot | |
476 | parameters = { |
|
488 | parameters = { | |
477 |
'id': |
|
489 | 'id': global_type_string, | |
478 |
'wintitle': |
|
490 | 'wintitle': global_type_string, | |
479 | 'pairsList': 'pairsLists', |
|
491 | 'pairsList': 'pairsLists', | |
480 |
'showprofile': |
|
492 | 'showprofile': global_type_boolean, | |
481 |
'xmin': |
|
493 | 'xmin': global_type_float, | |
482 |
'xmax': |
|
494 | 'xmax': global_type_float, | |
483 |
'ymin': |
|
495 | 'ymin': global_type_float, | |
484 |
'ymax': |
|
496 | 'ymax': global_type_float, | |
485 | 'timerange': 'string', |
|
497 | 'timerange': global_type_float, | |
486 |
'save': |
|
498 | 'save': global_type_boolean, | |
487 |
'figpath': |
|
499 | 'figpath': global_type_string, | |
488 |
'figfile': |
|
500 | 'figfile': global_type_string, | |
489 |
'show': |
|
501 | 'show': global_type_string, | |
490 |
'ftp': |
|
502 | 'ftp': global_type_string, | |
491 |
'wr_period': |
|
503 | 'wr_period': global_type_integer, | |
492 |
'server': |
|
504 | 'server': global_type_string, | |
493 |
'folder': |
|
505 | 'folder': global_type_string, | |
494 |
'username': |
|
506 | 'username': global_type_string, | |
495 |
'password': |
|
507 | 'password': global_type_string, | |
496 |
'ftp_wei': |
|
508 | 'ftp_wei': global_type_integer, | |
497 |
'exp_code': |
|
509 | 'exp_code': global_type_integer, | |
498 |
'sub_exp_code': |
|
510 | 'sub_exp_code': global_type_integer, | |
499 |
'plot_pos': |
|
511 | 'plot_pos': global_type_integer, | |
500 | } |
|
512 | } | |
501 |
|
513 | |||
502 |
|
514 | |||
503 | PlotCOHData |
|
515 | PlotCOHData | |
504 | parameters = { |
|
516 | parameters = { | |
505 | : 'string', |
|
517 | : global_type_string, | |
506 | } |
|
518 | } | |
507 |
|
519 | |||
508 |
|
520 | |||
509 | PlotCrossSpectraData |
|
521 | PlotCrossSpectraData | |
510 | parameters = { |
|
522 | parameters = { | |
511 | : 'string', |
|
523 | : global_type_string, | |
512 | } |
|
524 | } | |
513 |
|
525 | |||
514 |
|
526 | |||
515 | PlotDOPData |
|
527 | PlotDOPData | |
516 | parameters = { |
|
528 | parameters = { | |
517 | : 'string', |
|
529 | : global_type_string, | |
518 | } |
|
530 | } | |
519 |
|
531 | |||
520 |
|
532 | |||
521 | PlotData |
|
533 | PlotData | |
522 | parameters = { |
|
534 | parameters = { | |
523 | : 'string', |
|
535 | : global_type_string, | |
524 | } |
|
536 | } | |
525 |
|
537 | |||
526 |
|
538 | |||
527 | PlotNoiseData |
|
539 | PlotNoiseData | |
528 | parameters = { |
|
540 | parameters = { | |
529 | : 'string', |
|
541 | : global_type_string, | |
530 | } |
|
542 | } | |
531 |
|
543 | |||
532 |
|
544 | |||
533 | PlotPHASEData |
|
545 | PlotPHASEData | |
534 | parameters = { |
|
546 | parameters = { | |
535 | : 'string', |
|
547 | : global_type_string, | |
536 | } |
|
548 | } | |
537 |
|
549 | |||
538 |
|
550 | |||
539 | PlotRTIData |
|
551 | PlotRTIData | |
540 | parameters = { |
|
552 | parameters = { | |
541 | : 'string', |
|
553 | : global_type_string, | |
542 | } |
|
554 | } | |
543 |
|
555 | |||
544 |
|
556 | |||
545 | PlotSNRData |
|
557 | PlotSNRData | |
546 | parameters = { |
|
558 | parameters = { | |
547 | : 'string', |
|
559 | : global_type_string, | |
548 | } |
|
560 | } | |
549 |
|
561 | |||
550 |
|
562 | |||
551 | PlotSpectraData |
|
563 | PlotSpectraData | |
552 | parameters = { |
|
564 | parameters = { | |
553 | : 'string', |
|
565 | : global_type_string, | |
554 | } |
|
566 | } | |
555 |
|
567 | |||
556 |
|
568 | |||
557 | PlotSpectraMeanData |
|
569 | PlotSpectraMeanData | |
558 | parameters = { |
|
570 | parameters = { | |
559 | : 'string', |
|
571 | : global_type_string, | |
560 | } |
|
572 | } | |
561 |
|
573 | |||
562 |
|
574 | |||
563 | PlotWindProfilerData |
|
575 | PlotWindProfilerData | |
564 | parameters = { |
|
576 | parameters = { | |
565 | : 'string', |
|
577 | : global_type_string, | |
566 | } |
|
578 | } | |
567 |
|
579 | |||
568 |
|
580 | |||
569 | PowerProfilePlot |
|
581 | PowerProfilePlot | |
570 | parameters = { |
|
582 | parameters = { | |
571 |
'id': |
|
583 | 'id': global_type_string, | |
572 |
'wintitle': |
|
584 | 'wintitle': global_type_string, | |
573 |
'channelList': |
|
585 | 'channelList': global_type_list, | |
574 |
'xmin': |
|
586 | 'xmin': global_type_float, | |
575 |
'xmax': |
|
587 | 'xmax': global_type_float, | |
576 |
'ymin': |
|
588 | 'ymin': global_type_float, | |
577 |
'ymax': |
|
589 | 'ymax': global_type_float, | |
578 |
'save': |
|
590 | 'save': global_type_boolean, | |
579 |
'figpath': |
|
591 | 'figpath': global_type_string, | |
580 |
'figfile': |
|
592 | 'figfile': global_type_string, | |
581 |
'show': |
|
593 | 'show': global_type_string, | |
582 |
'ftp': |
|
594 | 'ftp': global_type_string, | |
583 |
'wr_period': |
|
595 | 'wr_period': global_type_integer, | |
584 |
'server': |
|
596 | 'server': global_type_string, | |
585 |
'folder': |
|
597 | 'folder': global_type_string, | |
586 |
'username': |
|
598 | 'username': global_type_string, | |
587 |
'password': |
|
599 | 'password': global_type_string, | |
588 | } |
|
600 | } | |
589 |
|
601 | |||
590 |
|
602 | |||
591 | PrintInfo |
|
603 | PrintInfo | |
592 | parameters = { |
|
604 | parameters = { | |
593 | : 'string', |
|
605 | : global_type_string, | |
594 | } |
|
606 | } | |
595 |
|
607 | |||
596 |
|
608 | |||
597 | ProfileConcat |
|
609 | ProfileConcat | |
598 | parameters = { |
|
610 | parameters = { | |
599 |
'm': |
|
611 | 'm': global_type_string, | |
600 | } |
|
612 | } | |
601 |
|
613 | |||
602 |
|
614 | |||
603 | ProfileSelector |
|
615 | ProfileSelector | |
604 | parameters = { |
|
616 | parameters = { | |
605 |
'profileList': |
|
617 | 'profileList': global_type_string, | |
606 |
'profileRangeList': |
|
618 | 'profileRangeList': global_type_string, | |
607 |
'beam': |
|
619 | 'beam': global_type_string, | |
608 |
'byblock': |
|
620 | 'byblock': global_type_string, | |
609 |
'rangeList': |
|
621 | 'rangeList': global_type_string, | |
610 |
'nProfiles': |
|
622 | 'nProfiles': global_type_string, | |
611 | } |
|
623 | } | |
612 |
|
624 | |||
613 |
|
625 | |||
614 | ProfileToChannels |
|
626 | ProfileToChannels | |
615 | parameters = { |
|
627 | parameters = { | |
616 | : 'string', |
|
628 | : global_type_string, | |
617 | } |
|
629 | } | |
618 |
|
630 | |||
619 |
|
631 | |||
620 | PublishData |
|
632 | PublishData | |
621 | parameters = { |
|
633 | parameters = { | |
622 | : 'string', |
|
634 | : global_type_string, | |
623 | } |
|
635 | } | |
624 |
|
636 | |||
625 |
|
637 | |||
626 | RTIPlot |
|
638 | RTIPlot | |
627 | parameters = { |
|
639 | parameters = { | |
628 |
'id': |
|
640 | 'id': global_type_string, | |
629 |
'wintitle': |
|
641 | 'wintitle': global_type_string, | |
630 |
'channelList': |
|
642 | 'channelList': global_type_list, | |
631 |
'showprofile': |
|
643 | 'showprofile': global_type_boolean, | |
632 |
'xmin': |
|
644 | 'xmin': global_type_float, | |
633 |
'xmax': |
|
645 | 'xmax': global_type_float, | |
634 |
'ymin': |
|
646 | 'ymin': global_type_float, | |
635 |
'ymax': |
|
647 | 'ymax': global_type_float, | |
636 |
'zmin': |
|
648 | 'zmin': global_type_float, | |
637 |
'zmax': |
|
649 | 'zmax': global_type_float, | |
638 | 'timerange': 'string', |
|
650 | 'timerange': global_type_float, | |
639 |
'save': |
|
651 | 'save': global_type_boolean, | |
640 |
'figpath': |
|
652 | 'figpath': global_type_string, | |
641 |
'lastone': |
|
653 | 'lastone': global_type_string, | |
642 |
'figfile': |
|
654 | 'figfile': global_type_string, | |
643 |
'ftp': |
|
655 | 'ftp': global_type_string, | |
644 |
'wr_period': |
|
656 | 'wr_period': global_type_integer, | |
645 |
'show': |
|
657 | 'show': global_type_string, | |
646 |
'server': |
|
658 | 'server': global_type_string, | |
647 |
'folder': |
|
659 | 'folder': global_type_string, | |
648 |
'username': |
|
660 | 'username': global_type_string, | |
649 |
'password': |
|
661 | 'password': global_type_string, | |
650 |
'ftp_wei': |
|
662 | 'ftp_wei': global_type_integer, | |
651 |
'exp_code': |
|
663 | 'exp_code': global_type_integer, | |
652 |
'sub_exp_code': |
|
664 | 'sub_exp_code': global_type_integer, | |
653 |
'plot_pos': |
|
665 | 'plot_pos': global_type_integer, | |
654 | } |
|
666 | } | |
655 |
|
667 | |||
656 |
|
668 | |||
657 | RTIfromSpectraHeis |
|
669 | RTIfromSpectraHeis | |
658 | parameters = { |
|
670 | parameters = { | |
659 |
'id': |
|
671 | 'id': global_type_string, | |
660 |
'wintitle': |
|
672 | 'wintitle': global_type_string, | |
661 |
'channelList': |
|
673 | 'channelList': global_type_list, | |
662 |
'showprofile': |
|
674 | 'showprofile': global_type_boolean, | |
663 |
'xmin': |
|
675 | 'xmin': global_type_float, | |
664 |
'xmax': |
|
676 | 'xmax': global_type_float, | |
665 |
'ymin': |
|
677 | 'ymin': global_type_float, | |
666 |
'ymax': |
|
678 | 'ymax': global_type_float, | |
667 | 'timerange': 'string', |
|
679 | 'timerange': global_type_float, | |
668 |
'save': |
|
680 | 'save': global_type_boolean, | |
669 |
'figpath': |
|
681 | 'figpath': global_type_string, | |
670 |
'figfile': |
|
682 | 'figfile': global_type_string, | |
671 |
'ftp': |
|
683 | 'ftp': global_type_string, | |
672 |
'wr_period': |
|
684 | 'wr_period': global_type_integer, | |
673 |
'show': |
|
685 | 'show': global_type_string, | |
674 |
'server': |
|
686 | 'server': global_type_string, | |
675 |
'folder': |
|
687 | 'folder': global_type_string, | |
676 |
'username': |
|
688 | 'username': global_type_string, | |
677 |
'password': |
|
689 | 'password': global_type_string, | |
678 |
'ftp_wei': |
|
690 | 'ftp_wei': global_type_integer, | |
679 |
'exp_code': |
|
691 | 'exp_code': global_type_integer, | |
680 |
'sub_exp_code': |
|
692 | 'sub_exp_code': global_type_integer, | |
681 |
'plot_pos': |
|
693 | 'plot_pos': global_type_integer, | |
682 | } |
|
694 | } | |
683 |
|
695 | |||
684 |
|
696 | |||
685 | Reshaper |
|
697 | Reshaper | |
686 | parameters = { |
|
698 | parameters = { | |
687 |
'shape': |
|
699 | 'shape': global_type_string, | |
688 |
'nTxs': |
|
700 | 'nTxs': global_type_string, | |
689 | } |
|
701 | } | |
690 |
|
702 | |||
691 |
|
703 | |||
692 | SALags |
|
704 | SALags | |
693 | parameters = { |
|
705 | parameters = { | |
694 | : 'string', |
|
706 | : global_type_string, | |
695 | } |
|
707 | } | |
696 |
|
708 | |||
697 |
|
709 | |||
698 | SMDetection |
|
710 | SMDetection | |
699 | parameters = { |
|
711 | parameters = { | |
700 |
'hei_ref': |
|
712 | 'hei_ref': global_type_string, | |
701 |
'tauindex': |
|
713 | 'tauindex': global_type_string, | |
702 |
'phaseOffsets': |
|
714 | 'phaseOffsets': global_type_string, | |
703 |
'cohDetection': |
|
715 | 'cohDetection': global_type_string, | |
704 |
'cohDet_timeStep': |
|
716 | 'cohDet_timeStep': global_type_string, | |
705 |
'cohDet_thresh': |
|
717 | 'cohDet_thresh': global_type_string, | |
706 |
'noise_timeStep': |
|
718 | 'noise_timeStep': global_type_string, | |
707 |
'noise_multiple': |
|
719 | 'noise_multiple': global_type_string, | |
708 |
'multDet_timeLimit': |
|
720 | 'multDet_timeLimit': global_type_string, | |
709 |
'multDet_rangeLimit': |
|
721 | 'multDet_rangeLimit': global_type_string, | |
710 |
'phaseThresh': |
|
722 | 'phaseThresh': global_type_string, | |
711 |
'SNRThresh': |
|
723 | 'SNRThresh': global_type_string, | |
712 |
'hmin': |
|
724 | 'hmin': global_type_string, | |
713 |
'hmax': |
|
725 | 'hmax': global_type_string, | |
714 |
'azimuth': |
|
726 | 'azimuth': global_type_string, | |
715 |
'channelPositions': |
|
727 | 'channelPositions': global_type_string, | |
716 | } |
|
728 | } | |
717 |
|
729 | |||
718 |
|
730 | |||
719 | SMPhaseCalibration |
|
731 | SMPhaseCalibration | |
720 | parameters = { |
|
732 | parameters = { | |
721 |
'hmin': |
|
733 | 'hmin': global_type_string, | |
722 |
'hmax': |
|
734 | 'hmax': global_type_string, | |
723 |
'channelPositions': |
|
735 | 'channelPositions': global_type_string, | |
724 |
'nHours': |
|
736 | 'nHours': global_type_string, | |
725 | } |
|
737 | } | |
726 |
|
738 | |||
727 |
|
739 | |||
728 | Scope |
|
740 | Scope | |
729 | parameters = { |
|
741 | parameters = { | |
730 |
'id': |
|
742 | 'id': global_type_string, | |
731 |
'wintitle': |
|
743 | 'wintitle': global_type_string, | |
732 |
'channelList': |
|
744 | 'channelList': global_type_list, | |
733 |
'xmin': |
|
745 | 'xmin': global_type_float, | |
734 |
'xmax': |
|
746 | 'xmax': global_type_float, | |
735 |
'ymin': |
|
747 | 'ymin': global_type_float, | |
736 |
'ymax': |
|
748 | 'ymax': global_type_float, | |
737 |
'save': |
|
749 | 'save': global_type_boolean, | |
738 |
'figpath': |
|
750 | 'figpath': global_type_string, | |
739 |
'figfile': |
|
751 | 'figfile': global_type_string, | |
740 |
'show': |
|
752 | 'show': global_type_string, | |
741 |
'wr_period': |
|
753 | 'wr_period': global_type_integer, | |
742 |
'ftp': |
|
754 | 'ftp': global_type_string, | |
743 |
'server': |
|
755 | 'server': global_type_string, | |
744 |
'folder': |
|
756 | 'folder': global_type_string, | |
745 |
'username': |
|
757 | 'username': global_type_string, | |
746 |
'password': |
|
758 | 'password': global_type_string, | |
747 |
'type': |
|
759 | 'type': global_type_string, | |
748 | } |
|
760 | } | |
749 |
|
761 | |||
750 |
|
762 | |||
751 | SendByFTP |
|
763 | SendByFTP | |
752 | parameters = { |
|
764 | parameters = { | |
753 |
'ext': |
|
765 | 'ext': global_type_string, | |
754 |
'localfolder': |
|
766 | 'localfolder': global_type_string, | |
755 |
'remotefolder': |
|
767 | 'remotefolder': global_type_string, | |
756 |
'server': |
|
768 | 'server': global_type_string, | |
757 |
'username': |
|
769 | 'username': global_type_string, | |
758 |
'password': |
|
770 | 'password': global_type_string, | |
759 |
'period': |
|
771 | 'period': global_type_string, | |
760 | } |
|
772 | } | |
761 |
|
773 | |||
762 |
|
774 | |||
763 | SkyMapPlot |
|
775 | SkyMapPlot | |
764 | parameters = { |
|
776 | parameters = { | |
765 |
'id': |
|
777 | 'id': global_type_string, | |
766 |
'wintitle': |
|
778 | 'wintitle': global_type_string, | |
767 |
'channelList': |
|
779 | 'channelList': global_type_list, | |
768 |
'showprofile': |
|
780 | 'showprofile': global_type_boolean, | |
769 |
'tmin': |
|
781 | 'tmin': global_type_string, | |
770 |
'tmax': |
|
782 | 'tmax': global_type_string, | |
771 | 'timerange': 'string', |
|
783 | 'timerange': global_type_float, | |
772 |
'save': |
|
784 | 'save': global_type_boolean, | |
773 |
'figpath': |
|
785 | 'figpath': global_type_string, | |
774 |
'figfile': |
|
786 | 'figfile': global_type_string, | |
775 |
'show': |
|
787 | 'show': global_type_string, | |
776 |
'ftp': |
|
788 | 'ftp': global_type_string, | |
777 |
'wr_period': |
|
789 | 'wr_period': global_type_integer, | |
778 |
'server': |
|
790 | 'server': global_type_string, | |
779 |
'folder': |
|
791 | 'folder': global_type_string, | |
780 |
'username': |
|
792 | 'username': global_type_string, | |
781 |
'password': |
|
793 | 'password': global_type_string, | |
782 |
'ftp_wei': |
|
794 | 'ftp_wei': global_type_integer, | |
783 |
'exp_code': |
|
795 | 'exp_code': global_type_integer, | |
784 |
'sub_exp_code': |
|
796 | 'sub_exp_code': global_type_integer, | |
785 |
'plot_pos': |
|
797 | 'plot_pos': global_type_integer, | |
786 | 'realtime': 'string', |
|
798 | 'realtime': global_type_boolean, | |
787 | } |
|
799 | } | |
788 |
|
800 | |||
789 |
|
801 | |||
790 | SpectraCutPlot |
|
802 | SpectraCutPlot | |
791 | parameters = { |
|
803 | parameters = { | |
792 |
'id': |
|
804 | 'id': global_type_string, | |
793 |
'wintitle': |
|
805 | 'wintitle': global_type_string, | |
794 |
'channelList': |
|
806 | 'channelList': global_type_list, | |
795 |
'xmin': |
|
807 | 'xmin': global_type_float, | |
796 |
'xmax': |
|
808 | 'xmax': global_type_float, | |
797 |
'ymin': |
|
809 | 'ymin': global_type_float, | |
798 |
'ymax': |
|
810 | 'ymax': global_type_float, | |
799 |
'save': |
|
811 | 'save': global_type_boolean, | |
800 |
'figpath': |
|
812 | 'figpath': global_type_string, | |
801 |
'figfile': |
|
813 | 'figfile': global_type_string, | |
802 |
'show': |
|
814 | 'show': global_type_string, | |
803 |
'ftp': |
|
815 | 'ftp': global_type_string, | |
804 |
'wr_period': |
|
816 | 'wr_period': global_type_integer, | |
805 |
'server': |
|
817 | 'server': global_type_string, | |
806 |
'folder': |
|
818 | 'folder': global_type_string, | |
807 |
'username': |
|
819 | 'username': global_type_string, | |
808 |
'password': |
|
820 | 'password': global_type_string, | |
809 |
'xaxis': |
|
821 | 'xaxis': global_type_string, | |
810 | } |
|
822 | } | |
811 |
|
823 | |||
812 |
|
824 | |||
813 | SpectraHeisScope |
|
825 | SpectraHeisScope | |
814 | parameters = { |
|
826 | parameters = { | |
815 |
'id': |
|
827 | 'id': global_type_string, | |
816 |
'wintitle': |
|
828 | 'wintitle': global_type_string, | |
817 |
'channelList': |
|
829 | 'channelList': global_type_list, | |
818 |
'xmin': |
|
830 | 'xmin': global_type_float, | |
819 |
'xmax': |
|
831 | 'xmax': global_type_float, | |
820 |
'ymin': |
|
832 | 'ymin': global_type_float, | |
821 |
'ymax': |
|
833 | 'ymax': global_type_float, | |
822 |
'save': |
|
834 | 'save': global_type_boolean, | |
823 |
'figpath': |
|
835 | 'figpath': global_type_string, | |
824 |
'figfile': |
|
836 | 'figfile': global_type_string, | |
825 |
'ftp': |
|
837 | 'ftp': global_type_string, | |
826 |
'wr_period': |
|
838 | 'wr_period': global_type_integer, | |
827 |
'show': |
|
839 | 'show': global_type_string, | |
828 |
'server': |
|
840 | 'server': global_type_string, | |
829 |
'folder': |
|
841 | 'folder': global_type_string, | |
830 |
'username': |
|
842 | 'username': global_type_string, | |
831 |
'password': |
|
843 | 'password': global_type_string, | |
832 |
'ftp_wei': |
|
844 | 'ftp_wei': global_type_integer, | |
833 |
'exp_code': |
|
845 | 'exp_code': global_type_integer, | |
834 |
'sub_exp_code': |
|
846 | 'sub_exp_code': global_type_integer, | |
835 |
'plot_pos': |
|
847 | 'plot_pos': global_type_integer, | |
836 | } |
|
848 | } | |
837 |
|
849 | |||
838 |
|
850 | |||
839 | SpectraHeisWriter |
|
851 | SpectraHeisWriter | |
840 | parameters = { |
|
852 | parameters = { | |
841 | : 'string', |
|
853 | : global_type_string, | |
842 | } |
|
854 | } | |
843 |
|
855 | |||
844 |
|
856 | |||
845 | SpectraPlot |
|
857 | SpectraPlot | |
846 | parameters = { |
|
858 | parameters = { | |
847 |
'id': |
|
859 | 'id': global_type_string, | |
848 |
'wintitle': |
|
860 | 'wintitle': global_type_string, | |
849 |
'channelList': |
|
861 | 'channelList': global_type_list, | |
850 |
'showprofile': |
|
862 | 'showprofile': global_type_boolean, | |
851 |
'xmin': |
|
863 | 'xmin': global_type_float, | |
852 |
'xmax': |
|
864 | 'xmax': global_type_float, | |
853 |
'ymin': |
|
865 | 'ymin': global_type_float, | |
854 |
'ymax': |
|
866 | 'ymax': global_type_float, | |
855 |
'zmin': |
|
867 | 'zmin': global_type_float, | |
856 |
'zmax': |
|
868 | 'zmax': global_type_float, | |
857 |
'save': |
|
869 | 'save': global_type_boolean, | |
858 |
'figpath': |
|
870 | 'figpath': global_type_string, | |
859 |
'figfile': |
|
871 | 'figfile': global_type_string, | |
860 |
'show': |
|
872 | 'show': global_type_string, | |
861 |
'ftp': |
|
873 | 'ftp': global_type_string, | |
862 |
'wr_period': |
|
874 | 'wr_period': global_type_integer, | |
863 |
'server': |
|
875 | 'server': global_type_string, | |
864 |
'folder': |
|
876 | 'folder': global_type_string, | |
865 |
'username': |
|
877 | 'username': global_type_string, | |
866 |
'password': |
|
878 | 'password': global_type_string, | |
867 |
'ftp_wei': |
|
879 | 'ftp_wei': global_type_integer, | |
868 |
'exp_code': |
|
880 | 'exp_code': global_type_integer, | |
869 |
'sub_exp_code': |
|
881 | 'sub_exp_code': global_type_integer, | |
870 |
'plot_pos': |
|
882 | 'plot_pos': global_type_integer, | |
871 | 'realtime': 'string', |
|
883 | 'realtime': global_type_boolean, | |
872 |
'xaxis': |
|
884 | 'xaxis': global_type_string, | |
873 | } |
|
885 | } | |
874 |
|
886 | |||
875 |
|
887 | |||
876 | SpectraWriter |
|
888 | SpectraWriter | |
877 | parameters = { |
|
889 | parameters = { | |
878 |
'path': |
|
890 | 'path': global_type_string, | |
879 |
'blocksPerFile': |
|
891 | 'blocksPerFile': global_type_string, | |
880 |
'profilesPerBlock': |
|
892 | 'profilesPerBlock': global_type_string, | |
881 |
'set': |
|
893 | 'set': global_type_string, | |
882 |
'ext': |
|
894 | 'ext': global_type_string, | |
883 |
'datatype': |
|
895 | 'datatype': global_type_string, | |
884 | } |
|
896 | } | |
885 |
|
897 | |||
886 |
|
898 | |||
887 | SpectralFitting |
|
899 | SpectralFitting | |
888 | parameters = { |
|
900 | parameters = { | |
889 |
'getSNR': |
|
901 | 'getSNR': global_type_string, | |
890 |
'path': |
|
902 | 'path': global_type_string, | |
891 |
'file': |
|
903 | 'file': global_type_string, | |
892 |
'groupList': |
|
904 | 'groupList': global_type_string, | |
893 | } |
|
905 | } | |
894 |
|
906 | |||
895 |
|
907 | |||
896 | SpectralFittingPlot |
|
908 | SpectralFittingPlot | |
897 | parameters = { |
|
909 | parameters = { | |
898 |
'id': |
|
910 | 'id': global_type_string, | |
899 |
'cutHeight': |
|
911 | 'cutHeight': global_type_string, | |
900 |
'fit': |
|
912 | 'fit': global_type_string, | |
901 |
'wintitle': |
|
913 | 'wintitle': global_type_string, | |
902 |
'channelList': |
|
914 | 'channelList': global_type_list, | |
903 |
'showprofile': |
|
915 | 'showprofile': global_type_boolean, | |
904 |
'xmin': |
|
916 | 'xmin': global_type_float, | |
905 |
'xmax': |
|
917 | 'xmax': global_type_float, | |
906 |
'ymin': |
|
918 | 'ymin': global_type_float, | |
907 |
'ymax': |
|
919 | 'ymax': global_type_float, | |
908 |
'save': |
|
920 | 'save': global_type_boolean, | |
909 |
'figpath': |
|
921 | 'figpath': global_type_string, | |
910 |
'figfile': |
|
922 | 'figfile': global_type_string, | |
911 |
'show': |
|
923 | 'show': global_type_string, | |
912 | } |
|
924 | } | |
913 |
|
925 | |||
914 |
|
926 | |||
915 | SpectralMoments |
|
927 | SpectralMoments | |
916 | parameters = { |
|
928 | parameters = { | |
917 | : 'string', |
|
929 | : global_type_string, | |
918 | } |
|
930 | } | |
919 |
|
931 | |||
920 |
|
932 | |||
921 | SplitProfiles |
|
933 | SplitProfiles | |
922 | parameters = { |
|
934 | parameters = { | |
923 |
'n': |
|
935 | 'n': global_type_string, | |
924 | } |
|
936 | } | |
925 |
|
937 | |||
926 |
|
938 | |||
927 | USRPWriter |
|
939 | USRPWriter | |
928 | parameters = { |
|
940 | parameters = { | |
929 |
'dataIn': |
|
941 | 'dataIn': global_type_string, | |
930 | } |
|
942 | } | |
931 |
|
943 | |||
932 |
|
944 | |||
933 | VoltageWriter |
|
945 | VoltageWriter | |
934 | parameters = { |
|
946 | parameters = { | |
935 |
'path': |
|
947 | 'path': global_type_string, | |
936 |
'blocksPerFile': |
|
948 | 'blocksPerFile': global_type_string, | |
937 |
'profilesPerBlock': |
|
949 | 'profilesPerBlock': global_type_string, | |
938 |
'set': |
|
950 | 'set': global_type_string, | |
939 |
'ext': |
|
951 | 'ext': global_type_string, | |
940 |
'datatype': |
|
952 | 'datatype': global_type_string, | |
941 | } |
|
953 | } | |
942 |
|
954 | |||
943 |
|
955 | |||
944 | WindProfiler |
|
956 | WindProfiler | |
945 | parameters = { |
|
957 | parameters = { | |
946 |
'technique': |
|
958 | 'technique': global_type_string, | |
947 | } |
|
959 | } | |
948 |
|
960 | |||
949 |
|
961 | |||
950 | WindProfilerPlot |
|
962 | WindProfilerPlot | |
951 | parameters = { |
|
963 | parameters = { | |
952 |
'id': |
|
964 | 'id': global_type_string, | |
953 |
'wintitle': |
|
965 | 'wintitle': global_type_string, | |
954 |
'channelList': |
|
966 | 'channelList': global_type_list, | |
955 |
'showprofile': |
|
967 | 'showprofile': global_type_boolean, | |
956 |
'xmin': |
|
968 | 'xmin': global_type_float, | |
957 |
'xmax': |
|
969 | 'xmax': global_type_float, | |
958 |
'ymin': |
|
970 | 'ymin': global_type_float, | |
959 |
'ymax': |
|
971 | 'ymax': global_type_float, | |
960 |
'zmin': |
|
972 | 'zmin': global_type_float, | |
961 |
'zmax': |
|
973 | 'zmax': global_type_float, | |
962 |
'zmax_ver': |
|
974 | 'zmax_ver': global_type_string, | |
963 |
'zmin_ver': |
|
975 | 'zmin_ver': global_type_string, | |
964 | 'SNRmin': 'string', |
|
976 | 'SNRmin': global_type_float, | |
965 | 'SNRmax': 'string', |
|
977 | 'SNRmax': global_type_float, | |
966 | 'timerange': 'string', |
|
978 | 'timerange': global_type_float, | |
967 |
'SNRthresh': |
|
979 | 'SNRthresh': global_type_string, | |
968 |
'save': |
|
980 | 'save': global_type_boolean, | |
969 |
'figpath': |
|
981 | 'figpath': global_type_string, | |
970 |
'lastone': |
|
982 | 'lastone': global_type_string, | |
971 |
'figfile': |
|
983 | 'figfile': global_type_string, | |
972 |
'ftp': |
|
984 | 'ftp': global_type_string, | |
973 |
'wr_period': |
|
985 | 'wr_period': global_type_integer, | |
974 |
'show': |
|
986 | 'show': global_type_string, | |
975 |
'server': |
|
987 | 'server': global_type_string, | |
976 |
'folder': |
|
988 | 'folder': global_type_string, | |
977 |
'username': |
|
989 | 'username': global_type_string, | |
978 |
'password': |
|
990 | 'password': global_type_string, | |
979 |
'ftp_wei': |
|
991 | 'ftp_wei': global_type_integer, | |
980 |
'exp_code': |
|
992 | 'exp_code': global_type_integer, | |
981 |
'sub_exp_code': |
|
993 | 'sub_exp_code': global_type_integer, | |
982 |
'plot_pos': |
|
994 | 'plot_pos': global_type_integer, | |
983 | } |
|
995 | } | |
984 |
|
996 | |||
985 |
|
997 | |||
986 | Writer |
|
998 | Writer | |
987 | parameters = { |
|
999 | parameters = { | |
988 |
'dataIn': |
|
1000 | 'dataIn': global_type_string, | |
989 | } |
|
1001 | } | |
990 |
|
1002 | |||
991 |
|
1003 | |||
992 | AMISRProc |
|
1004 | AMISRProc | |
993 | parameters = { |
|
1005 | parameters = { | |
994 | : 'string', |
|
1006 | : global_type_string, | |
995 | } |
|
1007 | } | |
996 |
|
1008 | |||
997 |
|
1009 | |||
998 | AMISRReader |
|
1010 | AMISRReader | |
999 | parameters = { |
|
1011 | parameters = { | |
1000 | : 'string', |
|
1012 | : global_type_string, | |
1001 | } |
|
1013 | } | |
1002 |
|
1014 | |||
1003 |
|
1015 | |||
1004 | CorrelationProc |
|
1016 | CorrelationProc | |
1005 | parameters = { |
|
1017 | parameters = { | |
1006 |
'lags': |
|
1018 | 'lags': global_type_string, | |
1007 |
'mode': |
|
1019 | 'mode': global_type_string, | |
1008 | 'pairsList': 'pairsLists', |
|
1020 | 'pairsList': 'pairsLists', | |
1009 |
'fullBuffer': |
|
1021 | 'fullBuffer': global_type_string, | |
1010 |
'nAvg': |
|
1022 | 'nAvg': global_type_string, | |
1011 |
'removeDC': |
|
1023 | 'removeDC': global_type_string, | |
1012 |
'splitCF': |
|
1024 | 'splitCF': global_type_string, | |
1013 | } |
|
1025 | } | |
1014 |
|
1026 | |||
1015 |
|
1027 | |||
1016 | FitsReader |
|
1028 | FitsReader | |
1017 | parameters = { |
|
1029 | parameters = { | |
1018 | : 'string', |
|
1030 | : global_type_string, | |
1019 | } |
|
1031 | } | |
1020 |
|
1032 | |||
1021 |
|
1033 | |||
1022 | HFReader |
|
1034 | HFReader | |
1023 | parameters = { |
|
1035 | parameters = { | |
1024 | : 'string', |
|
1036 | : global_type_string, | |
1025 | } |
|
1037 | } | |
1026 |
|
1038 | |||
1027 |
|
1039 | |||
1028 | ParamReader |
|
1040 | ParamReader | |
1029 | parameters = { |
|
1041 | parameters = { | |
1030 | : 'string', |
|
1042 | : global_type_string, | |
1031 | } |
|
1043 | } | |
1032 |
|
1044 | |||
1033 |
|
1045 | |||
1034 | ParametersProc |
|
1046 | ParametersProc | |
1035 | parameters = { |
|
1047 | parameters = { | |
1036 | : 'string', |
|
1048 | : global_type_string, | |
1037 | } |
|
1049 | } | |
1038 |
|
1050 | |||
1039 |
|
1051 | |||
1040 | ProcessingUnit |
|
1052 | ProcessingUnit | |
1041 | parameters = { |
|
1053 | parameters = { | |
1042 | : 'string', |
|
1054 | : global_type_string, | |
1043 | } |
|
1055 | } | |
1044 |
|
1056 | |||
1045 |
|
1057 | |||
1046 | ReceiverData |
|
1058 | ReceiverData | |
1047 | parameters = { |
|
1059 | parameters = { | |
1048 | : 'string', |
|
1060 | : global_type_string, | |
1049 | } |
|
1061 | } | |
1050 |
|
1062 | |||
1051 |
|
1063 | |||
1052 | SendToServer |
|
1064 | SendToServer | |
1053 | parameters = { |
|
1065 | parameters = { | |
1054 | : 'string', |
|
1066 | : global_type_string, | |
1055 | } |
|
1067 | } | |
1056 |
|
1068 | |||
1057 |
|
1069 | |||
1058 | SpectraAFCProc |
|
1070 | SpectraAFCProc | |
1059 | parameters = { |
|
1071 | parameters = { | |
1060 |
'nProfiles': |
|
1072 | 'nProfiles': global_type_string, | |
1061 |
'nFFTPoints': |
|
1073 | 'nFFTPoints': global_type_string, | |
1062 | 'pairsList': 'pairsLists', |
|
1074 | 'pairsList': 'pairsLists', | |
1063 |
'code': |
|
1075 | 'code': global_type_string, | |
1064 |
'nCode': |
|
1076 | 'nCode': global_type_string, | |
1065 |
'nBaud': |
|
1077 | 'nBaud': global_type_string, | |
1066 | } |
|
1078 | } | |
1067 |
|
1079 | |||
1068 |
|
1080 | |||
1069 | SpectraHeisProc |
|
1081 | SpectraHeisProc | |
1070 | parameters = { |
|
1082 | parameters = { | |
1071 | : 'string', |
|
1083 | : global_type_string, | |
1072 | } |
|
1084 | } | |
1073 |
|
1085 | |||
1074 |
|
1086 | |||
1075 | SpectraLagsProc |
|
1087 | SpectraLagsProc | |
1076 | parameters = { |
|
1088 | parameters = { | |
1077 |
'nProfiles': |
|
1089 | 'nProfiles': global_type_string, | |
1078 |
'nFFTPoints': |
|
1090 | 'nFFTPoints': global_type_string, | |
1079 | 'pairsList': 'pairsLists', |
|
1091 | 'pairsList': 'pairsLists', | |
1080 |
'code': |
|
1092 | 'code': global_type_string, | |
1081 |
'nCode': |
|
1093 | 'nCode': global_type_string, | |
1082 |
'nBaud': |
|
1094 | 'nBaud': global_type_string, | |
1083 |
'codeFromHeader': |
|
1095 | 'codeFromHeader': global_type_string, | |
1084 |
'pulseIndex': |
|
1096 | 'pulseIndex': global_type_string, | |
1085 | } |
|
1097 | } | |
1086 |
|
1098 | |||
1087 |
|
1099 | |||
1088 | SpectraProc |
|
1100 | SpectraProc | |
1089 | parameters = { |
|
1101 | parameters = { | |
1090 |
'nProfiles': |
|
1102 | 'nProfiles': global_type_string, | |
1091 |
'nFFTPoints': |
|
1103 | 'nFFTPoints': global_type_string, | |
1092 | 'pairsList': 'pairsLists', |
|
1104 | 'pairsList': 'pairsLists', | |
1093 |
'ippFactor': |
|
1105 | 'ippFactor': global_type_string, | |
1094 | } |
|
1106 | } | |
1095 |
|
1107 | |||
1096 |
|
1108 | |||
1097 | SpectraReader |
|
1109 | SpectraReader | |
1098 | parameters = { |
|
1110 | parameters = { | |
1099 |
'path': |
|
1111 | 'path': global_type_string, | |
1100 |
'startDate': |
|
1112 | 'startDate': global_type_string, | |
1101 |
'endDate': |
|
1113 | 'endDate': global_type_string, | |
1102 |
'startTime': |
|
1114 | 'startTime': global_type_string, | |
1103 |
'endTime': |
|
1115 | 'endTime': global_type_string, | |
1104 |
'set': |
|
1116 | 'set': global_type_string, | |
1105 |
'expLabel': |
|
1117 | 'expLabel': global_type_string, | |
1106 |
'ext': |
|
1118 | 'ext': global_type_string, | |
1107 |
'online': |
|
1119 | 'online': global_type_string, | |
1108 |
'delay': |
|
1120 | 'delay': global_type_string, | |
1109 |
'walk': |
|
1121 | 'walk': global_type_string, | |
1110 |
'getblock': |
|
1122 | 'getblock': global_type_string, | |
1111 |
'nTxs': |
|
1123 | 'nTxs': global_type_string, | |
1112 | 'realtime': 'string', |
|
1124 | 'realtime': global_type_boolean, | |
1113 |
'blocksize': |
|
1125 | 'blocksize': global_type_string, | |
1114 |
'blocktime': |
|
1126 | 'blocktime': global_type_string, | |
1115 |
'queue': |
|
1127 | 'queue': global_type_string, | |
1116 |
'skip': |
|
1128 | 'skip': global_type_string, | |
1117 |
'cursor': |
|
1129 | 'cursor': global_type_string, | |
1118 |
'warnings': |
|
1130 | 'warnings': global_type_string, | |
1119 |
'verbose': |
|
1131 | 'verbose': global_type_string, | |
1120 | } |
|
1132 | } | |
1121 |
|
1133 | |||
1122 |
|
1134 | |||
1123 | USRPReader |
|
1135 | USRPReader | |
1124 | parameters = { |
|
1136 | parameters = { | |
1125 | : 'string', |
|
1137 | : global_type_string, | |
1126 | } |
|
1138 | } | |
1127 |
|
1139 | |||
1128 |
|
1140 | |||
1129 | VoltageProc |
|
1141 | VoltageProc | |
1130 | parameters = { |
|
1142 | parameters = { | |
1131 | : 'string', |
|
1143 | : global_type_string, | |
1132 | } |
|
1144 | } | |
1133 |
|
1145 | |||
1134 |
|
1146 | |||
1135 | VoltageReader |
|
1147 | VoltageReader | |
1136 | parameters = { |
|
1148 | parameters = { | |
1137 |
'path': |
|
1149 | 'path': global_type_string, | |
1138 |
'startDate': |
|
1150 | 'startDate': global_type_string, | |
1139 |
'endDate': |
|
1151 | 'endDate': global_type_string, | |
1140 |
'startTime': |
|
1152 | 'startTime': global_type_string, | |
1141 |
'endTime': |
|
1153 | 'endTime': global_type_string, | |
1142 |
'set': |
|
1154 | 'set': global_type_string, | |
1143 |
'expLabel': |
|
1155 | 'expLabel': global_type_string, | |
1144 |
'ext': |
|
1156 | 'ext': global_type_string, | |
1145 |
'online': |
|
1157 | 'online': global_type_string, | |
1146 |
'delay': |
|
1158 | 'delay': global_type_string, | |
1147 |
'walk': |
|
1159 | 'walk': global_type_string, | |
1148 |
'getblock': |
|
1160 | 'getblock': global_type_string, | |
1149 |
'nTxs': |
|
1161 | 'nTxs': global_type_string, | |
1150 | 'realtime': 'string', |
|
1162 | 'realtime': global_type_boolean, | |
1151 |
'blocksize': |
|
1163 | 'blocksize': global_type_string, | |
1152 |
'blocktime': |
|
1164 | 'blocktime': global_type_string, | |
1153 |
'queue': |
|
1165 | 'queue': global_type_string, | |
1154 |
'skip': |
|
1166 | 'skip': global_type_string, | |
1155 |
'cursor': |
|
1167 | 'cursor': global_type_string, | |
1156 |
'warnings': |
|
1168 | 'warnings': global_type_string, | |
1157 |
'verbose': |
|
1169 | 'verbose': global_type_string, | |
1158 | } |
|
1170 | } | |
1159 |
|
1171 | |||
1160 |
|
1172 |
General Comments 0
You need to be logged in to leave comments.
Login now