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