@almaobservatory/model 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/fesm2022/almaobservatory-model.mjs +2128 -0
- package/fesm2022/almaobservatory-model.mjs.map +1 -0
- package/index.d.ts +1777 -0
- package/package.json +26 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,1777 @@
|
|
|
1
|
+
import * as rxjs_dist_types from 'rxjs/dist/types';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { RxStomp } from '@stomp/rx-stomp';
|
|
5
|
+
|
|
6
|
+
interface EntityRef {
|
|
7
|
+
entityId: string;
|
|
8
|
+
partId: string;
|
|
9
|
+
entityTypeName: string;
|
|
10
|
+
documentVersion: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
type SchedBlockRef = EntityRef;
|
|
14
|
+
|
|
15
|
+
interface AbstractBaseBandConfig {
|
|
16
|
+
baseBandSpecificationRef: SchedBlockRef;
|
|
17
|
+
dataProducts: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
interface DoubleWithUnit {
|
|
21
|
+
value?: number;
|
|
22
|
+
unit?: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
type Time = DoubleWithUnit;
|
|
26
|
+
|
|
27
|
+
interface AbstractCorrelatorConfiguration {
|
|
28
|
+
integrationDuration: Time;
|
|
29
|
+
channelAverageDuration: Time;
|
|
30
|
+
enable180DegreeWalshFunction: boolean;
|
|
31
|
+
enable90DegreeWalshFunction: boolean;
|
|
32
|
+
cam: string;
|
|
33
|
+
apcdataSets: string;
|
|
34
|
+
looffsettingMode: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface AbstractInstrumentSpec {
|
|
38
|
+
name: string;
|
|
39
|
+
entityPartId: string;
|
|
40
|
+
almatype: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
type ObsProjectRef = EntityRef;
|
|
44
|
+
|
|
45
|
+
interface AbstractScienceGoal {
|
|
46
|
+
name?: string;
|
|
47
|
+
note?: string;
|
|
48
|
+
obsUnitSetRef?: ObsProjectRef;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
type Frequency = DoubleWithUnit;
|
|
52
|
+
|
|
53
|
+
interface AbstractSpectralLine {
|
|
54
|
+
restFrequency: Frequency;
|
|
55
|
+
transition: string;
|
|
56
|
+
spatalogId: string;
|
|
57
|
+
description: string;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
type ExpectedSpectralLine = AbstractSpectralLine;
|
|
61
|
+
|
|
62
|
+
interface BaseBandSpecification {
|
|
63
|
+
centerFrequency: Frequency;
|
|
64
|
+
frequencySwitching: boolean;
|
|
65
|
+
lo2Frequency: Frequency;
|
|
66
|
+
weighting: number;
|
|
67
|
+
useUSB: boolean;
|
|
68
|
+
use12GHzFilter: boolean;
|
|
69
|
+
imageCenterFrequency: Frequency;
|
|
70
|
+
imageWeighting: number;
|
|
71
|
+
entityPartId: string;
|
|
72
|
+
almatype: string;
|
|
73
|
+
baseBandName: string;
|
|
74
|
+
sideBandPreference: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
interface FrequencySetup {
|
|
78
|
+
restFrequency: Frequency;
|
|
79
|
+
transitionName: string;
|
|
80
|
+
lo1Frequency: Frequency;
|
|
81
|
+
isUserSpecifiedLO1: boolean;
|
|
82
|
+
hasHardwareSetup: boolean;
|
|
83
|
+
floog: Frequency;
|
|
84
|
+
tuneHigh: boolean;
|
|
85
|
+
baseBandSpecifications: BaseBandSpecification[];
|
|
86
|
+
receiverBand: string;
|
|
87
|
+
dopplerReference: string;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
interface AdvancedWindowSetup {
|
|
91
|
+
addedSensitivity?: boolean;
|
|
92
|
+
displayImage?: boolean;
|
|
93
|
+
imageCentreFrequency?: FrequencySetup;
|
|
94
|
+
oversampling?: boolean;
|
|
95
|
+
smoothingFactor?: number;
|
|
96
|
+
smoothingFunction?: string;
|
|
97
|
+
useImage?: boolean;
|
|
98
|
+
useThis?: boolean;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
interface AbstractScienceSpectralWindow {
|
|
102
|
+
'@type'?: string;
|
|
103
|
+
index?: number;
|
|
104
|
+
advancedWindowSetup?: AdvancedWindowSetup;
|
|
105
|
+
expectedSpectralLines?: ExpectedSpectralLine[];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
interface SpectralLine {
|
|
109
|
+
restFrequency: Frequency;
|
|
110
|
+
transition: string;
|
|
111
|
+
spatalogId: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
interface AbstractSpectralWindow {
|
|
115
|
+
centerFrequency: Frequency;
|
|
116
|
+
spectralAveragingFactor: number;
|
|
117
|
+
name: string;
|
|
118
|
+
effectiveBandwidth: Frequency;
|
|
119
|
+
effectiveNumberOfChannels: number;
|
|
120
|
+
associatedSpectralWindowNumberInPair: number;
|
|
121
|
+
useThisSpectralWindow: boolean;
|
|
122
|
+
desiredCenterFrequency: Frequency;
|
|
123
|
+
representativeWindow: boolean;
|
|
124
|
+
spectralLines: SpectralLine[];
|
|
125
|
+
sideBand: string;
|
|
126
|
+
windowFunction: string;
|
|
127
|
+
polnProducts: string;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
interface AbstractSwitchingCycle {
|
|
131
|
+
numberOfPositions: number;
|
|
132
|
+
dwellTime: Time;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
interface AbstractSwitchingState {
|
|
136
|
+
dwellTime: Time;
|
|
137
|
+
bin: number;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
type Longitude = DoubleWithUnit;
|
|
141
|
+
|
|
142
|
+
type Latitude = DoubleWithUnit;
|
|
143
|
+
|
|
144
|
+
interface SkyCoordinates {
|
|
145
|
+
longitude?: Longitude;
|
|
146
|
+
latitude?: Latitude;
|
|
147
|
+
fieldName?: string;
|
|
148
|
+
system?: string;
|
|
149
|
+
type?: string;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
type AngularVelocity = DoubleWithUnit;
|
|
153
|
+
|
|
154
|
+
type Angle = DoubleWithUnit;
|
|
155
|
+
|
|
156
|
+
type Speed = DoubleWithUnit;
|
|
157
|
+
|
|
158
|
+
interface Velocity {
|
|
159
|
+
centerVelocity?: Speed;
|
|
160
|
+
referenceSystem?: string;
|
|
161
|
+
dopplerCalcType?: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
type ObsAttachmentRef = EntityRef;
|
|
165
|
+
|
|
166
|
+
type Flux = DoubleWithUnit;
|
|
167
|
+
|
|
168
|
+
interface UserFrequency extends Frequency {
|
|
169
|
+
userUnit: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
interface ExpectedProperties {
|
|
173
|
+
expectedPeakFluxDensity?: Flux;
|
|
174
|
+
desiredPolarizationPercentage?: number;
|
|
175
|
+
expectedLineWidth?: UserFrequency;
|
|
176
|
+
referenceFrequency?: Frequency;
|
|
177
|
+
expectedPeakLineFluxDensity?: Flux;
|
|
178
|
+
expectedSpectralDynamicRange?: number;
|
|
179
|
+
expectedImageDynamicRange?: number;
|
|
180
|
+
desiredLinePolarizationPercentage?: number;
|
|
181
|
+
desiredLineCircularPolarizationPercentage?: number;
|
|
182
|
+
desiredCircularPolarizationPercentage?: number;
|
|
183
|
+
isPassivePhasing?: boolean;
|
|
184
|
+
solarActivityLevel?: string;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface AbstractTargetParameters {
|
|
188
|
+
sourceName?: string;
|
|
189
|
+
sourceCoordinates?: SkyCoordinates;
|
|
190
|
+
pmRA?: AngularVelocity;
|
|
191
|
+
pmDec?: AngularVelocity;
|
|
192
|
+
parallax?: Angle;
|
|
193
|
+
nonSiderealMotion?: boolean;
|
|
194
|
+
sourceEphemeris?: string;
|
|
195
|
+
sourceVelocity?: Velocity;
|
|
196
|
+
ephemerisFileName?: string;
|
|
197
|
+
index?: number;
|
|
198
|
+
sdReferencePositions?: SkyCoordinates[];
|
|
199
|
+
solarMappingDiameter?: Angle;
|
|
200
|
+
expectedProperties?: ExpectedProperties;
|
|
201
|
+
imageRef?: ObsAttachmentRef;
|
|
202
|
+
solarSystemObject?: string;
|
|
203
|
+
solarMapping?: string;
|
|
204
|
+
solarMappingPattern?: string;
|
|
205
|
+
'@type'?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
interface AbstractTimingConstraints {
|
|
209
|
+
startTime: string;
|
|
210
|
+
endTime: string;
|
|
211
|
+
allowedMargin: Time;
|
|
212
|
+
repeats: number;
|
|
213
|
+
note: string;
|
|
214
|
+
isAvoidConstraint: boolean;
|
|
215
|
+
priority: number;
|
|
216
|
+
isFixedStart: boolean;
|
|
217
|
+
lstmin: string;
|
|
218
|
+
lstmax: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
interface ChannelAverageRegion {
|
|
222
|
+
startChannel: number;
|
|
223
|
+
numberChannels: number;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
interface ACASpectralWindow extends AbstractSpectralWindow {
|
|
227
|
+
frqChProfReproduction: boolean;
|
|
228
|
+
channelAverageRegions: ChannelAverageRegion[];
|
|
229
|
+
synthProf: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface AcaBaseBandConfig extends AbstractBaseBandConfig {
|
|
233
|
+
centerFreqOfResidualDelay: Frequency;
|
|
234
|
+
acaspectralWindows: ACASpectralWindow[];
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
interface AcaPhaseSwitchingConfiguration {
|
|
238
|
+
doD180Modulation: boolean;
|
|
239
|
+
doD180Demodulation: boolean;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
interface AcaCorrelatorConfiguration extends AbstractCorrelatorConfiguration {
|
|
243
|
+
acabaseBandConfigs: AcaBaseBandConfig[];
|
|
244
|
+
acaphaseSwitchingConfiguration: AcaPhaseSwitchingConfiguration;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
interface AcaSpectrometerCorrelatorConfiguration extends AbstractCorrelatorConfiguration {
|
|
248
|
+
acabaseBandConfigs: AcaBaseBandConfig[];
|
|
249
|
+
acaphaseSwitchingConfiguration: AcaPhaseSwitchingConfiguration;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
interface AdvancedSpectralSetup {
|
|
253
|
+
sideBandSeparation?: boolean;
|
|
254
|
+
fastMode?: boolean;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
type DataRate = DoubleWithUnit;
|
|
258
|
+
|
|
259
|
+
type StorageVolume = DoubleWithUnit;
|
|
260
|
+
|
|
261
|
+
interface ArrayDataRates {
|
|
262
|
+
estimatedAverageDataRate: DataRate;
|
|
263
|
+
estimatedMaximumDataRate: DataRate;
|
|
264
|
+
estimatedDataVolume: StorageVolume;
|
|
265
|
+
arrayName: string;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
interface ArrayTime {
|
|
269
|
+
estimatedTime: Time;
|
|
270
|
+
arrayName: string;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
interface ArrayTimeBreakdown {
|
|
274
|
+
arrayTimes: ArrayTime[];
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
interface BeamSwitchingState extends AbstractSwitchingState {
|
|
278
|
+
position: Angle;
|
|
279
|
+
transition: Time;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
interface BeamSwitchingCycle extends AbstractSwitchingCycle {
|
|
283
|
+
beamSwitchingStates: BeamSwitchingState[];
|
|
284
|
+
mode: string;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface BlSpectralWindow extends AbstractSpectralWindow {
|
|
288
|
+
correlationNyquistOversampling: boolean;
|
|
289
|
+
quantizationCorrection: boolean;
|
|
290
|
+
channelAverageRegions: ChannelAverageRegion[];
|
|
291
|
+
correlationBits: string;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
interface BlBaseBandConfig extends AbstractBaseBandConfig {
|
|
295
|
+
blspectralWindows: BlSpectralWindow[];
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
interface BlCorrelatorConfiguration extends AbstractCorrelatorConfiguration {
|
|
299
|
+
dumpDuration: Time;
|
|
300
|
+
blbaseBandConfigs: BlBaseBandConfig[];
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
interface CalibrationRequirements {
|
|
304
|
+
pointingAccuracy: Angle;
|
|
305
|
+
bandpassAccuracy?: number;
|
|
306
|
+
polarizationAccuracy?: number;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
interface CalibrationTargetProperties {
|
|
310
|
+
frequency: Frequency;
|
|
311
|
+
flux: Flux;
|
|
312
|
+
dateOfMeasurement: string;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
interface CalibrationTargetParameters {
|
|
316
|
+
sourceName: string;
|
|
317
|
+
sourceCoordinates: SkyCoordinates;
|
|
318
|
+
sourceVelocity: Velocity;
|
|
319
|
+
index: number;
|
|
320
|
+
nonSiderealMotion: boolean;
|
|
321
|
+
calibrationTargetProperties: CalibrationTargetProperties[];
|
|
322
|
+
intendedUse: string;
|
|
323
|
+
solarSystemObject: string;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
interface QuerySource {
|
|
327
|
+
queryCenter: SkyCoordinates;
|
|
328
|
+
searchRadius: Angle;
|
|
329
|
+
minFrequency: Frequency;
|
|
330
|
+
maxFrequency: Frequency;
|
|
331
|
+
minFlux: Flux;
|
|
332
|
+
maxFlux: Flux;
|
|
333
|
+
minTimeSinceObserved: Time;
|
|
334
|
+
maxTimeSinceObserved: Time;
|
|
335
|
+
use: string;
|
|
336
|
+
maxSources: number;
|
|
337
|
+
index: number;
|
|
338
|
+
intendedUse: string;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
interface CalibrationSetupParameters {
|
|
342
|
+
isDGCOverride?: boolean;
|
|
343
|
+
calibrationTargetParameters?: CalibrationTargetParameters[];
|
|
344
|
+
querySources?: QuerySource[];
|
|
345
|
+
selection?: string;
|
|
346
|
+
positionalAccuracy?: string;
|
|
347
|
+
forcedDGCStrategy?: string;
|
|
348
|
+
}
|
|
349
|
+
declare const buildCalibrationTargetParameter: (intendedUse: any, longitude: any, latitude: any, system?: string) => {
|
|
350
|
+
sourceName: string;
|
|
351
|
+
sourceCoordinates: {
|
|
352
|
+
longitude: {
|
|
353
|
+
value: any;
|
|
354
|
+
unit: string;
|
|
355
|
+
};
|
|
356
|
+
latitude: {
|
|
357
|
+
value: any;
|
|
358
|
+
unit: string;
|
|
359
|
+
};
|
|
360
|
+
fieldName: string;
|
|
361
|
+
system: string;
|
|
362
|
+
type: string;
|
|
363
|
+
};
|
|
364
|
+
sourceVelocity: {
|
|
365
|
+
centerVelocity: {
|
|
366
|
+
value: number;
|
|
367
|
+
unit: string;
|
|
368
|
+
};
|
|
369
|
+
referenceSystem: string;
|
|
370
|
+
dopplerCalcType: string;
|
|
371
|
+
};
|
|
372
|
+
index: number;
|
|
373
|
+
nonSiderealMotion: boolean;
|
|
374
|
+
calibrationTargetProperties: any[];
|
|
375
|
+
intendedUse: any;
|
|
376
|
+
solarSystemObject: string;
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
interface KeywordValue {
|
|
380
|
+
keyword: string;
|
|
381
|
+
value: string;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
interface ObservingParameters {
|
|
385
|
+
name: string;
|
|
386
|
+
expertParameters: KeywordValue[];
|
|
387
|
+
entityPartId: string;
|
|
388
|
+
almatype: string;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
interface CalibratorParameters extends ObservingParameters {
|
|
392
|
+
cycleTime: Time;
|
|
393
|
+
defaultIntegrationTime: Time;
|
|
394
|
+
subScanDuration: Time;
|
|
395
|
+
forceAtmCal: boolean;
|
|
396
|
+
forceExecution: boolean;
|
|
397
|
+
dataOrigin: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
interface UserAngle extends Angle {
|
|
401
|
+
userUnit: string;
|
|
402
|
+
userValue?: number;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
interface Field {
|
|
406
|
+
name?: string;
|
|
407
|
+
centre?: SkyCoordinates;
|
|
408
|
+
'@type'?: string;
|
|
409
|
+
}
|
|
410
|
+
declare const buildField: (system?: string) => Field;
|
|
411
|
+
|
|
412
|
+
interface Circle extends Field {
|
|
413
|
+
radius: Angle;
|
|
414
|
+
spacing: UserAngle;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
interface Cloneable {
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
interface ControlBlock {
|
|
421
|
+
maximumTime: Time;
|
|
422
|
+
userPriority: number;
|
|
423
|
+
estimatedExecutionTime: Time;
|
|
424
|
+
tacPriority: number;
|
|
425
|
+
aggregatedExecutionCount: number;
|
|
426
|
+
arrayRequested: string;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
interface FieldPattern {
|
|
430
|
+
type: string;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
interface CrossPattern extends FieldPattern {
|
|
434
|
+
patternCenterCoordinates: SkyCoordinates;
|
|
435
|
+
longitudeLength: Angle;
|
|
436
|
+
latitudeLength: Angle;
|
|
437
|
+
scanVelocity: AngularVelocity;
|
|
438
|
+
orientation: Angle;
|
|
439
|
+
initialScanDirection: string;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
type Sensitivity = DoubleWithUnit;
|
|
443
|
+
|
|
444
|
+
type Temperature = DoubleWithUnit;
|
|
445
|
+
|
|
446
|
+
interface DataProcessingParameters {
|
|
447
|
+
angularResolution: Angle;
|
|
448
|
+
velocityResolution: Velocity;
|
|
449
|
+
projectType: string;
|
|
450
|
+
tbsensitivityGoal: Temperature;
|
|
451
|
+
rmsgoal: Sensitivity;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
interface DataRateBreakdown {
|
|
455
|
+
arrayDataRates: ArrayDataRates[];
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface DocumentLink {
|
|
459
|
+
fileName: string;
|
|
460
|
+
href: string;
|
|
461
|
+
fileSize: StorageVolume;
|
|
462
|
+
fileType: string;
|
|
463
|
+
documentClass: string;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
interface Ellipse extends Field {
|
|
467
|
+
semiMajor: Angle;
|
|
468
|
+
semiMinor: Angle;
|
|
469
|
+
spacing: UserAngle;
|
|
470
|
+
pamajor: Angle;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
interface Entity {
|
|
474
|
+
entityId: string;
|
|
475
|
+
entityIdEncrypted: string;
|
|
476
|
+
entityTypeName: string;
|
|
477
|
+
schemaVersion: string;
|
|
478
|
+
documentVersion: string;
|
|
479
|
+
timestamp?: string;
|
|
480
|
+
datamodelVersion: string;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
interface ExecBlockRef {
|
|
484
|
+
execBlockId: string;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
interface ExecutiveFraction {
|
|
488
|
+
timeFraction: number;
|
|
489
|
+
name: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
interface ExtendedScienceSpectralWindow extends AbstractScienceSpectralWindow {
|
|
493
|
+
'@type': 'ExtendedScienceSpectralWindowT';
|
|
494
|
+
windowDescription: string;
|
|
495
|
+
transitionName: string;
|
|
496
|
+
centerFrequency: Frequency;
|
|
497
|
+
bandWidth: UserFrequency;
|
|
498
|
+
spectralResolution: UserFrequency;
|
|
499
|
+
groupIndex: number;
|
|
500
|
+
isSkyFrequency: boolean;
|
|
501
|
+
splatalogId: number;
|
|
502
|
+
representativeWindow: boolean;
|
|
503
|
+
groupResourceUse: string;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
interface RectanglePattern extends FieldPattern {
|
|
507
|
+
patternCenterCoordinates: SkyCoordinates;
|
|
508
|
+
longitudeLength: Angle;
|
|
509
|
+
latitudeLength: Angle;
|
|
510
|
+
orthogonalStep: Angle;
|
|
511
|
+
orientation: Angle;
|
|
512
|
+
uniDirectionalScan: boolean;
|
|
513
|
+
scanDirection: string;
|
|
514
|
+
scanningCoordinateSystem: string;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
interface PointingPattern extends FieldPattern {
|
|
518
|
+
phaseCenterCoordinates: SkyCoordinates[];
|
|
519
|
+
isMosaic: boolean;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
interface FillPattern extends FieldPattern {
|
|
523
|
+
patternCenterCoordinates: SkyCoordinates;
|
|
524
|
+
longitudeLength: Angle;
|
|
525
|
+
latitudeLength: Angle;
|
|
526
|
+
samplingLength: Angle;
|
|
527
|
+
orientation: Angle;
|
|
528
|
+
patternType: string;
|
|
529
|
+
patternSubtype: string;
|
|
530
|
+
scanningCoordinateSystem: string;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
interface Magnitude {
|
|
534
|
+
value: number;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
interface SourceProperty {
|
|
538
|
+
sourceFrequency: Frequency;
|
|
539
|
+
sourceFluxI: Flux;
|
|
540
|
+
sourceDiameter: Angle;
|
|
541
|
+
sourceFluxQ: Flux;
|
|
542
|
+
sourceFluxU: Flux;
|
|
543
|
+
sourceFluxV: Flux;
|
|
544
|
+
visibleMagnitude: Magnitude;
|
|
545
|
+
dateOfMeasurement: string;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
interface Reference {
|
|
549
|
+
referenceCoordinates: SkyCoordinates;
|
|
550
|
+
integrationTime: Time;
|
|
551
|
+
cycleTime: Time;
|
|
552
|
+
subScanDuration: Time;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
interface FieldSource {
|
|
556
|
+
sourceCoordinates: SkyCoordinates;
|
|
557
|
+
sourceName: string;
|
|
558
|
+
sourceVelocity: Velocity;
|
|
559
|
+
sourceEphemeris: string;
|
|
560
|
+
pmra: AngularVelocity;
|
|
561
|
+
nonSiderealMotion: boolean;
|
|
562
|
+
parallax: Angle;
|
|
563
|
+
name: string;
|
|
564
|
+
isQuery: boolean;
|
|
565
|
+
ephemerisFileName: string;
|
|
566
|
+
rectanglePattern: RectanglePattern;
|
|
567
|
+
pointingPattern: PointingPattern;
|
|
568
|
+
fillPattern: FillPattern;
|
|
569
|
+
crossPattern: CrossPattern;
|
|
570
|
+
querySource: QuerySource;
|
|
571
|
+
references: Reference[];
|
|
572
|
+
sourceProperties: SourceProperty[];
|
|
573
|
+
imageRef: ObsAttachmentRef;
|
|
574
|
+
entityPartId: string;
|
|
575
|
+
almatype: string;
|
|
576
|
+
solarSystemObject: string;
|
|
577
|
+
pmdec: AngularVelocity;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
interface FlowControl {
|
|
581
|
+
controlScript: string;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
interface FrequencySwitchingState extends AbstractSwitchingState {
|
|
585
|
+
offset: Frequency;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
interface FrequencySwitchingCycle extends AbstractSwitchingCycle {
|
|
589
|
+
frequencySwitchingStates: FrequencySwitchingState[];
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface HolographyParameters extends ObservingParameters {
|
|
593
|
+
frequency: Frequency;
|
|
594
|
+
startFraction: number;
|
|
595
|
+
speed: AngularVelocity;
|
|
596
|
+
rowsCal: number;
|
|
597
|
+
calTime: Time;
|
|
598
|
+
rowSize: Angle;
|
|
599
|
+
uniDirectionalScan: boolean;
|
|
600
|
+
towerName: string;
|
|
601
|
+
scanDirection: string;
|
|
602
|
+
calMode: string;
|
|
603
|
+
nrows: number;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
type IntTimeReference = DoubleWithUnit;
|
|
607
|
+
|
|
608
|
+
type IntTimeSource = DoubleWithUnit;
|
|
609
|
+
|
|
610
|
+
interface Investigator {
|
|
611
|
+
fullName: string;
|
|
612
|
+
organisation: string;
|
|
613
|
+
verfiedUser: boolean;
|
|
614
|
+
userId: string;
|
|
615
|
+
telephone: string;
|
|
616
|
+
mobile: string;
|
|
617
|
+
index: number;
|
|
618
|
+
organisationId: string;
|
|
619
|
+
firstName: string;
|
|
620
|
+
surName: string;
|
|
621
|
+
hasPhD: boolean;
|
|
622
|
+
allowedExec: string;
|
|
623
|
+
associatedExec: string;
|
|
624
|
+
email: string;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
type Length = DoubleWithUnit;
|
|
628
|
+
|
|
629
|
+
interface MonitoringConstraint extends AbstractTimingConstraints {
|
|
630
|
+
monitoringLength: Time;
|
|
631
|
+
cycleTime: Time;
|
|
632
|
+
requiredDelay: Time;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
type ObsAttachmentEntity = Entity;
|
|
636
|
+
|
|
637
|
+
interface ObsAttachment {
|
|
638
|
+
obsAttachmentEntity: ObsAttachmentEntity;
|
|
639
|
+
associatedBulkStoreUid: string;
|
|
640
|
+
documentLinks: DocumentLink[];
|
|
641
|
+
schemaVersion: string;
|
|
642
|
+
revision: string;
|
|
643
|
+
almatype: string;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
interface OrderedTarget {
|
|
647
|
+
index: number;
|
|
648
|
+
targetRef: SchedBlockRef;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
interface ObservingGroup {
|
|
652
|
+
index: number;
|
|
653
|
+
name: string;
|
|
654
|
+
orderedTargets: OrderedTarget[];
|
|
655
|
+
mainTargetRef: SchedBlockRef;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
interface ObsUnitControl extends ControlBlock {
|
|
659
|
+
calibrationRequirements: CalibrationRequirements;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
interface UnitDependencies {
|
|
663
|
+
executionCount: number;
|
|
664
|
+
delay: Time;
|
|
665
|
+
expression: string;
|
|
666
|
+
dependencyLists: string[];
|
|
667
|
+
margin: Time;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
interface ObsUnit {
|
|
671
|
+
name: string;
|
|
672
|
+
note: string;
|
|
673
|
+
obsUnitControl: ObsUnitControl;
|
|
674
|
+
unitDependencies: UnitDependencies;
|
|
675
|
+
obsProjectRef?: ObsProjectRef;
|
|
676
|
+
status: string;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
type OusStatusRef = EntityRef;
|
|
680
|
+
|
|
681
|
+
interface ObsUnitSet extends ObsUnit {
|
|
682
|
+
scienceProcessingScript: string;
|
|
683
|
+
runSciencePipeline: boolean;
|
|
684
|
+
dataProcessingParameters: DataProcessingParameters;
|
|
685
|
+
flowControl: FlowControl;
|
|
686
|
+
schedBlockReves: SchedBlockRef[];
|
|
687
|
+
obsUnitSets: ObsUnitSet[];
|
|
688
|
+
entityPartId: string;
|
|
689
|
+
almatype: string;
|
|
690
|
+
ousstatusRef?: OusStatusRef;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
interface UserSensitivity extends Sensitivity {
|
|
694
|
+
userUnit: string;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
interface VisitConstraint extends AbstractTimingConstraints {
|
|
698
|
+
visitId: number;
|
|
699
|
+
previousVisitId: number;
|
|
700
|
+
requiredDelay: Time;
|
|
701
|
+
}
|
|
702
|
+
declare const buildVisitConstraint: (visitId: number) => {
|
|
703
|
+
allowedMargin: {
|
|
704
|
+
value: number;
|
|
705
|
+
unit: string;
|
|
706
|
+
};
|
|
707
|
+
isAvoidConstraint: boolean;
|
|
708
|
+
priority: number;
|
|
709
|
+
isFixedStart: boolean;
|
|
710
|
+
visitId: number;
|
|
711
|
+
previousVisitId: number;
|
|
712
|
+
requiredDelay: {
|
|
713
|
+
value: number;
|
|
714
|
+
unit: string;
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
|
|
718
|
+
type TemporalParameters = AbstractTimingConstraints;
|
|
719
|
+
declare const buildTemporalParameters: () => TemporalParameters;
|
|
720
|
+
|
|
721
|
+
interface PerformanceParameters {
|
|
722
|
+
desiredAngularResolution?: UserAngle;
|
|
723
|
+
desiredLargestScale?: Angle;
|
|
724
|
+
desiredSensitivity?: UserSensitivity;
|
|
725
|
+
desiredDynamicRange?: number;
|
|
726
|
+
representativeFrequency?: Frequency;
|
|
727
|
+
useACA?: boolean;
|
|
728
|
+
isTimeConstrained?: boolean;
|
|
729
|
+
useTP?: boolean;
|
|
730
|
+
desiredSDSensitivity?: UserSensitivity;
|
|
731
|
+
isPointSource?: boolean;
|
|
732
|
+
desiredSensitivityReferenceFrequencyWidth?: UserFrequency;
|
|
733
|
+
needsMoreTime?: boolean;
|
|
734
|
+
desiredACASensitivity?: UserSensitivity;
|
|
735
|
+
desiredTPSensitivity?: UserSensitivity;
|
|
736
|
+
isScheduleConstrained?: boolean;
|
|
737
|
+
desiredTime?: Time;
|
|
738
|
+
acceptableAngularResolution?: UserAngle;
|
|
739
|
+
isSimultaneous12And7?: boolean;
|
|
740
|
+
visitConstraints?: VisitConstraint[];
|
|
741
|
+
temporalParameters?: TemporalParameters[];
|
|
742
|
+
monitoringConstraints?: MonitoringConstraint[];
|
|
743
|
+
desiredSensitivityFrequencyMeasure?: string;
|
|
744
|
+
timingConstraintsType?: string;
|
|
745
|
+
resolutionOption?: string;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
type OverlaidSpectralLine = AbstractSpectralLine;
|
|
749
|
+
|
|
750
|
+
interface SpectralSetupParameters {
|
|
751
|
+
representativeFrequency?: Frequency;
|
|
752
|
+
userRepresentativeFrequency?: boolean;
|
|
753
|
+
singleContinuumFrequency?: Frequency;
|
|
754
|
+
scienceSpectralWindowsAndSpectralScen?: any[];
|
|
755
|
+
advancedSpectralSetup?: AdvancedSpectralSetup;
|
|
756
|
+
overlaidSpectralLines?: OverlaidSpectralLine[];
|
|
757
|
+
polarisation?: string;
|
|
758
|
+
type?: string;
|
|
759
|
+
singleContinuumCorrelatorMode?: string;
|
|
760
|
+
}
|
|
761
|
+
declare const buildSpectralSetupParameters: () => SpectralSetupParameters;
|
|
762
|
+
|
|
763
|
+
interface Rectangle extends Field {
|
|
764
|
+
spacing: UserAngle;
|
|
765
|
+
referenceFrequency: Frequency;
|
|
766
|
+
short: Angle;
|
|
767
|
+
long: Angle;
|
|
768
|
+
palong: Angle;
|
|
769
|
+
}
|
|
770
|
+
declare const buildRectangle: (referenceFrequency?: Frequency, system?: string) => Rectangle;
|
|
771
|
+
|
|
772
|
+
interface TargetParameters extends AbstractTargetParameters {
|
|
773
|
+
isMosaic?: boolean;
|
|
774
|
+
circlesAndEllipsesAndPolygons?: Field[] | Rectangle[];
|
|
775
|
+
type?: string;
|
|
776
|
+
}
|
|
777
|
+
declare const buildTargetParameters: (circlesAndEllipsesAndPolygons?: Field[] | Rectangle[], index?: number) => TargetParameters;
|
|
778
|
+
|
|
779
|
+
interface TechnicalJustification {
|
|
780
|
+
justificationText: string;
|
|
781
|
+
justificationKey: string;
|
|
782
|
+
}
|
|
783
|
+
declare const buildTechnicalJustifications: () => TechnicalJustification[];
|
|
784
|
+
|
|
785
|
+
interface ScienceGoal extends AbstractScienceGoal {
|
|
786
|
+
id?: number;
|
|
787
|
+
estimatedTotalTime?: Time;
|
|
788
|
+
userPriority?: number;
|
|
789
|
+
requiredReceiverBands?: string[];
|
|
790
|
+
estimated12MTime?: Time;
|
|
791
|
+
estimated7MTime?: Time;
|
|
792
|
+
estimatedTPTime?: Time;
|
|
793
|
+
estimatedACATime?: Time;
|
|
794
|
+
isDescoped?: boolean;
|
|
795
|
+
isResubmission?: boolean;
|
|
796
|
+
resubmissionOfOusStatusUid?: string;
|
|
797
|
+
resubmissionOfName?: string;
|
|
798
|
+
expertParameters?: KeywordValue[];
|
|
799
|
+
calibrationSetupParameters?: CalibrationSetupParameters;
|
|
800
|
+
performanceParameters?: PerformanceParameters;
|
|
801
|
+
spectralSetupParameters?: SpectralSetupParameters;
|
|
802
|
+
targetParameters?: TargetParameters[];
|
|
803
|
+
technicalJustifications?: TechnicalJustification[];
|
|
804
|
+
mode?: string;
|
|
805
|
+
'@type'?: string;
|
|
806
|
+
}
|
|
807
|
+
declare const buildScienceGoal: () => ScienceGoal;
|
|
808
|
+
|
|
809
|
+
interface ObsPhase {
|
|
810
|
+
observatoryGoalsAndOpticalPointingScienceGoalsAndScienceGoals?: ScienceGoal[];
|
|
811
|
+
obsPlan?: ObsUnitSet;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
interface ObsProcedure {
|
|
815
|
+
obsProcScript: string;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
type ObsProgram = ObsPhase;
|
|
819
|
+
|
|
820
|
+
type ObsProjectEntity = Entity;
|
|
821
|
+
|
|
822
|
+
type ObsProposalRef = EntityRef;
|
|
823
|
+
|
|
824
|
+
type ObsReviewRef = EntityRef;
|
|
825
|
+
|
|
826
|
+
type ProjectStatusRef = EntityRef;
|
|
827
|
+
|
|
828
|
+
interface SubmissionRecord {
|
|
829
|
+
submitter: string;
|
|
830
|
+
submissionTime: string;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
interface ObsProject {
|
|
834
|
+
obsProjectEntity?: ObsProjectEntity;
|
|
835
|
+
obsProposalRef?: ObsProposalRef;
|
|
836
|
+
obsReviewRef?: ObsReviewRef;
|
|
837
|
+
projectStatusRef?: ProjectStatusRef;
|
|
838
|
+
projectName?: string;
|
|
839
|
+
pi?: string;
|
|
840
|
+
version?: string;
|
|
841
|
+
code?: string;
|
|
842
|
+
assignedPriority?: number;
|
|
843
|
+
timeOfCreation?: string;
|
|
844
|
+
manualMode?: boolean;
|
|
845
|
+
simulationMode?: boolean;
|
|
846
|
+
isCommissioning?: boolean;
|
|
847
|
+
isCalibration?: boolean;
|
|
848
|
+
letterGrade?: string;
|
|
849
|
+
scientificRank?: number;
|
|
850
|
+
scientificScore?: number;
|
|
851
|
+
staffProjectNote?: string;
|
|
852
|
+
taPhase2Comments?: string;
|
|
853
|
+
taMainComments?: string;
|
|
854
|
+
consensusReport?: string;
|
|
855
|
+
isDDT?: boolean;
|
|
856
|
+
p2GAttention?: boolean;
|
|
857
|
+
p2GAttentionReasons?: string;
|
|
858
|
+
obsProgram?: ObsProgram;
|
|
859
|
+
submissionRecords?: SubmissionRecord[];
|
|
860
|
+
schemaVersion?: string;
|
|
861
|
+
revision?: string;
|
|
862
|
+
almatype?: string;
|
|
863
|
+
status?: string;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
type XmlGregorianCalendar = Cloneable;
|
|
867
|
+
|
|
868
|
+
interface ReceiverTime {
|
|
869
|
+
time: Time;
|
|
870
|
+
receiverBand: string;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
interface ReceiverTimeBreakdown {
|
|
874
|
+
receiverTimes: ReceiverTime[];
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
interface TimeAllocationBreakdown {
|
|
878
|
+
executiveFractions: ExecutiveFraction[];
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
interface ProposalFeedback {
|
|
882
|
+
estimatedTotalIntegrationTime: Time;
|
|
883
|
+
arrayTimeBreakdown?: ArrayTimeBreakdown;
|
|
884
|
+
dataRateBreakdown?: DataRateBreakdown;
|
|
885
|
+
receiverTimeBreakdown?: ReceiverTimeBreakdown;
|
|
886
|
+
timeAllocationBreakdown: TimeAllocationBreakdown;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
type ObsProposalEntity = Entity;
|
|
890
|
+
|
|
891
|
+
interface ObsProposal extends ObsPhase {
|
|
892
|
+
obsProposalEntity?: ObsProposalEntity;
|
|
893
|
+
documentsRef?: ObsAttachmentRef;
|
|
894
|
+
obsProjectRef?: ObsProjectRef;
|
|
895
|
+
title?: string;
|
|
896
|
+
code?: string;
|
|
897
|
+
relatedProposals?: string;
|
|
898
|
+
previousProposals?: string;
|
|
899
|
+
dateReceived?: XmlGregorianCalendar;
|
|
900
|
+
cycle?: string;
|
|
901
|
+
studentProject?: boolean;
|
|
902
|
+
continuation?: boolean;
|
|
903
|
+
recentPublications?: string;
|
|
904
|
+
scientificCategoryCode?: string;
|
|
905
|
+
proposalTypeCode?: string;
|
|
906
|
+
scientificCategoryString?: string;
|
|
907
|
+
proposalTypeString?: string;
|
|
908
|
+
keywords?: string[];
|
|
909
|
+
keywordCodes?: string[];
|
|
910
|
+
resubmittedProjectCode?: string;
|
|
911
|
+
isResubmission?: boolean;
|
|
912
|
+
duplicateObservationsJustification?: string;
|
|
913
|
+
attentionFlag?: boolean;
|
|
914
|
+
attentionReasons?: string[];
|
|
915
|
+
principalInvestigator?: Investigator;
|
|
916
|
+
coInvestigators?: Investigator[];
|
|
917
|
+
coPrincipalInvestigators?: Investigator[];
|
|
918
|
+
reviewer?: Investigator;
|
|
919
|
+
mentor?: Investigator;
|
|
920
|
+
proposalFeedback?: ProposalFeedback;
|
|
921
|
+
schemaVersion?: string;
|
|
922
|
+
revision?: string;
|
|
923
|
+
almatype?: string;
|
|
924
|
+
abstract?: string;
|
|
925
|
+
jointProposal?: any;
|
|
926
|
+
schedulingFeasibility?: boolean;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
interface OpticalCameraSpec extends AbstractInstrumentSpec {
|
|
930
|
+
minIntegrationTime: Time;
|
|
931
|
+
filter: string;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
interface OpticalPointingParameters extends ObservingParameters {
|
|
935
|
+
antennaPositionTolerance: Angle;
|
|
936
|
+
elevationLimit: Angle;
|
|
937
|
+
maxMagnitude: Magnitude;
|
|
938
|
+
minMagnitude: Magnitude;
|
|
939
|
+
randomizeOrder: boolean;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
interface Polygon extends Field {
|
|
943
|
+
points: SkyCoordinates[];
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
interface WeatherConstraints {
|
|
947
|
+
maxPWVC: Length;
|
|
948
|
+
seeing: Angle;
|
|
949
|
+
phaseStability: Angle;
|
|
950
|
+
maxWindVelocity: Speed;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
interface Preconditions {
|
|
954
|
+
baselineCalValid: boolean;
|
|
955
|
+
polarizationCalValid: boolean;
|
|
956
|
+
minAllowedHA: UserAngle;
|
|
957
|
+
maxAllowedHA: UserAngle;
|
|
958
|
+
weatherConstraints: WeatherConstraints;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
interface RadiometricPointingParameters extends ObservingParameters {
|
|
962
|
+
antennaPositionTolerance: Angle;
|
|
963
|
+
elevationLimit: Angle;
|
|
964
|
+
maxFlux: Flux;
|
|
965
|
+
minFlux: Flux;
|
|
966
|
+
randomizeOrder: boolean;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
interface ReservationParameters extends ObservingParameters {
|
|
970
|
+
calendarId: string;
|
|
971
|
+
reqId: string;
|
|
972
|
+
staffMember: string;
|
|
973
|
+
resourceLists: string[];
|
|
974
|
+
description: string;
|
|
975
|
+
summary: string;
|
|
976
|
+
reason: string;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
type SbStatusRef = EntityRef;
|
|
980
|
+
|
|
981
|
+
type SchedBlockEntity = Entity;
|
|
982
|
+
|
|
983
|
+
interface SchedBlockControl {
|
|
984
|
+
indefiniteRepeat: boolean;
|
|
985
|
+
executionCount: number;
|
|
986
|
+
runQuicklook: boolean;
|
|
987
|
+
sbmaximumTime: Time;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
interface SchedulingConstraints {
|
|
991
|
+
representativeFrequency: Frequency;
|
|
992
|
+
minAcceptableAngResolution: Angle;
|
|
993
|
+
maxAcceptableAngResolution: Angle;
|
|
994
|
+
dynamicRange: number;
|
|
995
|
+
representativeCoordinates: SkyCoordinates;
|
|
996
|
+
requiredReceiverBands: string[];
|
|
997
|
+
nominalConfigurations: string[];
|
|
998
|
+
scienceGoalDesiredResolution: Angle;
|
|
999
|
+
scienceGoalLargestAngularScale: Angle;
|
|
1000
|
+
isSimultaneous: boolean;
|
|
1001
|
+
simultaneousSbUids: string[];
|
|
1002
|
+
maxAllowedBeamAxialRatio: number;
|
|
1003
|
+
spectralDynamicRange: number;
|
|
1004
|
+
spectralDynamicRangeBandwidth: Frequency;
|
|
1005
|
+
representativeTargetRef: SchedBlockRef;
|
|
1006
|
+
representativeReceiverBand: string;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
interface TemporalConstraints {
|
|
1010
|
+
startTime: string;
|
|
1011
|
+
endTime: string;
|
|
1012
|
+
allowedMargin: Time;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
interface Target {
|
|
1016
|
+
abstractInstrumentSpecRef: SchedBlockRef;
|
|
1017
|
+
fieldSourceRef: SchedBlockRef;
|
|
1018
|
+
observingParametersReves: SchedBlockRef[];
|
|
1019
|
+
entityPartId: string;
|
|
1020
|
+
almatype: string;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
interface SquareLawSetup {
|
|
1024
|
+
integrationDuration: Time;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
interface SpectralSpec extends AbstractInstrumentSpec {
|
|
1028
|
+
frequencySwitchingCycle: FrequencySwitchingCycle;
|
|
1029
|
+
beamSwitchingCycle: BeamSwitchingCycle;
|
|
1030
|
+
frequencySetup: FrequencySetup;
|
|
1031
|
+
squareLawSetup: SquareLawSetup;
|
|
1032
|
+
switchingType: string;
|
|
1033
|
+
receiverType: string;
|
|
1034
|
+
blcorrelatorConfiguration: BlCorrelatorConfiguration;
|
|
1035
|
+
acaspectrometerCorrelatorConfiguration: AcaSpectrometerCorrelatorConfiguration;
|
|
1036
|
+
acacorrelatorConfiguration: AcaCorrelatorConfiguration;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
interface SchedBlock extends ObsUnit {
|
|
1040
|
+
schedBlockEntity: SchedBlockEntity;
|
|
1041
|
+
obsUnitSetRef: ObsProjectRef;
|
|
1042
|
+
standardMode: boolean;
|
|
1043
|
+
modeName: string;
|
|
1044
|
+
expertParameters: KeywordValue[];
|
|
1045
|
+
qa0Notes: string;
|
|
1046
|
+
spectralSpecs: SpectralSpec[];
|
|
1047
|
+
opticalCameraSpecs: OpticalCameraSpec[];
|
|
1048
|
+
fieldSources: FieldSource[];
|
|
1049
|
+
observingGroups: ObservingGroup[];
|
|
1050
|
+
amplitudeCalParametersAndAtmosphericCalParametersAndBandpassCalParameters: ObservingParameters[];
|
|
1051
|
+
obsProcedure: ObsProcedure;
|
|
1052
|
+
preconditions: Preconditions;
|
|
1053
|
+
schedBlockControl: SchedBlockControl;
|
|
1054
|
+
schedulingConstraints: SchedulingConstraints;
|
|
1055
|
+
targets: Target[];
|
|
1056
|
+
temporalConstraints: TemporalConstraints[];
|
|
1057
|
+
timeAllocationBreakdown: TimeAllocationBreakdown;
|
|
1058
|
+
schemaVersion: string;
|
|
1059
|
+
revision: string;
|
|
1060
|
+
almatype: string;
|
|
1061
|
+
modeType: string;
|
|
1062
|
+
sbstatusRef: SbStatusRef;
|
|
1063
|
+
piname: string;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
interface ScienceParameters extends ObservingParameters {
|
|
1067
|
+
representativeBandwidth: Frequency;
|
|
1068
|
+
representativeFrequency: Frequency;
|
|
1069
|
+
sensitivityGoal: Sensitivity;
|
|
1070
|
+
integrationTime: IntTimeSource;
|
|
1071
|
+
subScanDuration: Time;
|
|
1072
|
+
forceAtmCal: boolean;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
interface ScienceSpectralWindow extends AbstractScienceSpectralWindow {
|
|
1076
|
+
transitionName?: string;
|
|
1077
|
+
centerFrequency?: Frequency;
|
|
1078
|
+
bandWidth?: UserFrequency;
|
|
1079
|
+
effectiveBandWidth?: UserFrequency;
|
|
1080
|
+
spectralResolution?: UserFrequency;
|
|
1081
|
+
groupIndex?: number;
|
|
1082
|
+
isSkyFrequency?: boolean;
|
|
1083
|
+
splatalogId?: number;
|
|
1084
|
+
representativeWindow?: boolean;
|
|
1085
|
+
groupResourceUse?: string;
|
|
1086
|
+
}
|
|
1087
|
+
declare const buildScienceSpectralWindow: () => any;
|
|
1088
|
+
declare const buildScienceSpectralWindowForSolar: () => any;
|
|
1089
|
+
declare const buildScienceSpectralWindowForVLBIOrPhasedArray: () => any;
|
|
1090
|
+
declare const buildScienceSpectralWindowForDefaultVLBIBand: (band: any) => any;
|
|
1091
|
+
|
|
1092
|
+
type SinglePoint = Field;
|
|
1093
|
+
|
|
1094
|
+
type SmallAngle = DoubleWithUnit;
|
|
1095
|
+
|
|
1096
|
+
interface SpectralScan extends AbstractScienceSpectralWindow {
|
|
1097
|
+
startFrequency: Frequency;
|
|
1098
|
+
endFrequency: Frequency;
|
|
1099
|
+
bandWidth: UserFrequency;
|
|
1100
|
+
spectralResolution: Frequency;
|
|
1101
|
+
isSkyFrequency: boolean;
|
|
1102
|
+
}
|
|
1103
|
+
declare const buildSpectralScanScienceSpectralWindow: () => any;
|
|
1104
|
+
|
|
1105
|
+
interface Status {
|
|
1106
|
+
readyTime: string;
|
|
1107
|
+
startTime: string;
|
|
1108
|
+
endTime: string;
|
|
1109
|
+
state: string;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
declare enum ApplicationStatus {
|
|
1113
|
+
CREATE_PROJECT = "createProject",
|
|
1114
|
+
CREATE_PROJECT_SUCCESS = "createProjectSuccess",
|
|
1115
|
+
CREATE_PROJECT_FAILURE = "createProjectFailure",
|
|
1116
|
+
CREATE_DDT_PROJECT = "createDDTProject",
|
|
1117
|
+
CREATE_DDT_PROJECT_SUCCESS = "createDDTProjectSuccess",
|
|
1118
|
+
CREATE_DDT_PROJECT_FAILURE = "createDDTProjectFailure",
|
|
1119
|
+
CLONE_PROJECT = "cloneProject",
|
|
1120
|
+
CLONE_PROJECT_SUCCESS = "cloneProjectSuccess",
|
|
1121
|
+
CLONE_PROJECT_FAILURE = "cloneProjectFailure",
|
|
1122
|
+
LOAD_PROJECT = "loadProject",
|
|
1123
|
+
LOAD_PROJECT_SUCCESS = "loadProjectSuccess",
|
|
1124
|
+
LOAD_PROJECT_FAILURE = "loadProjectFailure",
|
|
1125
|
+
LOAD_PROJECT_FILE = "loadProjectFile",
|
|
1126
|
+
LOAD_PROJECT_FILE_SUCCESS = "loadProjectFileSuccess",
|
|
1127
|
+
LOAD_PROJECT_FILE_FAILURE = "loadProjectFileFailure",
|
|
1128
|
+
SAVE_PROJECT_TO_DISK = "saveProjectToDisk",
|
|
1129
|
+
SAVE_PROJECT_TO_DISK_SUCCESS = "saveProjectToDiskSuccess",
|
|
1130
|
+
SAVE_PROJECT_TO_DISK_FAILURE = "saveProjectToDiskFailure",
|
|
1131
|
+
REVERT_TO_LAST_SUBMITTED = "revertToLastSubmitted",
|
|
1132
|
+
REVERT_TO_LAST_SUBMITTED_SUCCESS = "revertToLastSubmittedSuccess",
|
|
1133
|
+
REVERT_TO_LAST_SUBMITTED_FAILURE = "revertToLastSubmittedFailure",
|
|
1134
|
+
RELOAD_PROJECT_FAILURE = "reloadProjectFailure"
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
declare enum AuthenticationStatus {
|
|
1138
|
+
LOGIN_SUCCESS = "loginSuccess",
|
|
1139
|
+
LOGIN_FAILURE = "loginFailure"
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
interface Error {
|
|
1143
|
+
message?: string;
|
|
1144
|
+
code?: number;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
interface ExportSources {
|
|
1148
|
+
scienceGoalId: number;
|
|
1149
|
+
options: ExportSourcesOptions;
|
|
1150
|
+
}
|
|
1151
|
+
interface ExportSourcesOptions {
|
|
1152
|
+
type: 'Full' | 'OnlyPositions';
|
|
1153
|
+
includeTargetName: boolean;
|
|
1154
|
+
units: 'sexagesimal' | 'deg' | 'rad';
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
interface ImportSources {
|
|
1158
|
+
file: File;
|
|
1159
|
+
scienceGoalId: number;
|
|
1160
|
+
options: ImportSourcesOptions;
|
|
1161
|
+
}
|
|
1162
|
+
interface ImportSourcesOptions {
|
|
1163
|
+
type: 'Append' | 'Replace';
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
declare enum ListItemStatus {
|
|
1167
|
+
LOAD_LIST_ITEM = "loadListItem",
|
|
1168
|
+
LOAD_LIST_ITEM_SUCCESS = "loadListItemSuccess",
|
|
1169
|
+
LOAD_LIST_ITEM_FAILURE = "loadListItemFailure"
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
declare enum ProjectStatus {
|
|
1173
|
+
LOAD_PROJECT = "loadProject",
|
|
1174
|
+
LOAD_PROJECT_SUCCESS = "loadProjectSuccess",
|
|
1175
|
+
LOAD_PROJECT_FAILURE = "loadProjectFailure",
|
|
1176
|
+
SAVE_PROJECT = "saveProject",
|
|
1177
|
+
SAVE_PROJECT_SUCCESS = "saveProjectSuccess",
|
|
1178
|
+
SAVE_PROJECT_FAILURE = "saveProjectFailure"
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
declare enum ProjectTypeCode {
|
|
1182
|
+
REGULAR = "S",
|
|
1183
|
+
TARGET_OF_OPPORTUNITY = "T",
|
|
1184
|
+
VLBI = "V",
|
|
1185
|
+
LARGE_PROGRAM = "L",
|
|
1186
|
+
PHASED_ARRAY_MODE = "P"
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
declare enum ProposalStatus {
|
|
1190
|
+
LOAD_PROPOSAL = "loadProposal",
|
|
1191
|
+
LOAD_PROPOSAL_SUCCESS = "loadProposalSuccess",
|
|
1192
|
+
LOAD_PROPOSAL_FAILURE = "loadProposalFailure",
|
|
1193
|
+
SAVE_PROPOSAL = "saveProposal",
|
|
1194
|
+
SAVE_PROPOSAL_SUCCESS = "saveProposalSuccess",
|
|
1195
|
+
SAVE_PROPOSAL_FAILURE = "saveProposalFailure",
|
|
1196
|
+
IMPORT_INVESTIGATORS = "importInvestigators",
|
|
1197
|
+
IMPORT_INVESTIGATORS_SUCCESS = "importInvestigatorsSuccess",
|
|
1198
|
+
IMPORT_INVESTIGATORS_FAILURE = "importInvestigatorsFailure",
|
|
1199
|
+
GENERATE_PROPOSAL_SUMMARY = "generateProposalSummary",
|
|
1200
|
+
GENERATE_PROPOSAL_SUMMARY_SUCCESS = "generateProposalSummarySuccess",
|
|
1201
|
+
GENERATE_PROPOSAL_SUMMARY_FAILURE = "generateProposalSummaryFailure"
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
type ProposalSubmissionStatus = 'draft' | 'submitted' | 'modified';
|
|
1205
|
+
|
|
1206
|
+
declare enum AttachmentStatus {
|
|
1207
|
+
LOAD_SCIENCE_CASE = "loadScienceCase",
|
|
1208
|
+
LOAD_SCIENCE_CASE_SUCCESS = "loadScienceCaseSuccess",
|
|
1209
|
+
LOAD_SCIENCE_CASE_FAILURE = "loadScienceCaseFailure",
|
|
1210
|
+
VALIDATE_SCIENCE_CASE = "validateScienceCase",
|
|
1211
|
+
VALIDATE_SCIENCE_CASE_SUCCESS = "validateScienceCaseSuccess",
|
|
1212
|
+
VALIDATE_SCIENCE_CASE_FAILURE = "validateScienceCaseFailure",
|
|
1213
|
+
REMOVE_SCIENCE_CASE = "removeScienceCase",
|
|
1214
|
+
REMOVE_SCIENCE_CASE_SUCCESS = "removeScienceCaseSuccess",
|
|
1215
|
+
REMOVE_SCIENCE_CASE_FAILURE = "removeScienceCaseFailure",
|
|
1216
|
+
LOAD_TEAM_EXPERTISE = "loadTeamExpertise",
|
|
1217
|
+
LOAD_TEAM_EXPERTISE_SUCCESS = "loadTeamExpertiseSuccess",
|
|
1218
|
+
LOAD_TEAM_EXPERTISE_FAILURE = "loadTeamExpertiseFailure",
|
|
1219
|
+
VALIDATE_TEAM_EXPERTISE = "validateTeamExpertise",
|
|
1220
|
+
VALIDATE_TEAM_EXPERTISE_SUCCESS = "validateTeamExpertiseSuccess",
|
|
1221
|
+
VALIDATE_TEAM_EXPERTISE_FAILURE = "validateTeamExpertiseFailure",
|
|
1222
|
+
REMOVE_TEAM_EXPERTISE = "removeTeamExpertise",
|
|
1223
|
+
REMOVE_TEAM_EXPERTISE_SUCCESS = "removeTeamExpertiseSuccess",
|
|
1224
|
+
REMOVE_TEAM_EXPERTISE_FAILURE = "removeTeamExpertiseFailure"
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
declare enum ScienceGoalsStatus {
|
|
1228
|
+
LOAD_SCIENCE_GOALS = "loadScienceGoals",
|
|
1229
|
+
LOAD_SCIENCE_GOALS_SUCCESS = "loadScienceGoalsSuccess",
|
|
1230
|
+
LOAD_SCIENCE_GOALS_FAILURE = "loadScienceGoalsFailure",
|
|
1231
|
+
SAVE_SCIENCE_GOALS = "saveScienceGoals",
|
|
1232
|
+
SAVE_SCIENCE_GOALS_SUCCESS = "saveScienceGoalsSuccess",
|
|
1233
|
+
SAVE_SCIENCE_GOALS_FAILURE = "saveScienceGoalsFailure",
|
|
1234
|
+
IMPORT_SOURCES = "importSources",
|
|
1235
|
+
IMPORT_SOURCES_SUCCESS = "importSourcesSuccess",
|
|
1236
|
+
IMPORT_SOURCES_FAILURE = "importSourcesFailure",
|
|
1237
|
+
EXPORT_SOURCES = "exportSources",
|
|
1238
|
+
EXPORT_SOURCES_SUCCESS = "exportSourcesSuccess",
|
|
1239
|
+
EXPORT_SOURCES_FAILURE = "exportSourcesFailure",
|
|
1240
|
+
EXPORT_SOURCES_COORDINATES_NOT_SUPPORTED = "exportSourcesCoordinatesNotSupported",
|
|
1241
|
+
UPDATE_REST_FREQUENCIES = "updateRestFrequencies",
|
|
1242
|
+
UPDATE_REST_FREQUENCIES_SUCCESS = "updateRestFrequenciesSuccess",
|
|
1243
|
+
UPDATE_REST_FREQUENCIES_FAILURE = "updateRestFrequenciesFailure",
|
|
1244
|
+
IMPORT_SINGLE_VISITS = "importSingleVisits",
|
|
1245
|
+
IMPORT_SINGLE_VISITS_SUCCESS = "importSingleVisitsSuccess",
|
|
1246
|
+
IMPORT_SINGLE_VISITS_FAILURE = "importSingleVisitsFailure",
|
|
1247
|
+
IMPORT_EPHEMERIS_FILE = "importEphemerisFile",
|
|
1248
|
+
IMPORT_EPHEMERIS_FILE_SUCCESS = "importEphemerisFileSuccess",
|
|
1249
|
+
IMPORT_EPHEMERIS_FILE_FAILURE = "importEphemerisFileFailure"
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
declare enum SubmissionStatus {
|
|
1253
|
+
SUBMIT_PROJECT = "submitProject",
|
|
1254
|
+
SUBMIT_PROJECT_SUCCESS = "submitProjectSuccess",
|
|
1255
|
+
SUBMIT_PROJECT_FAILURE = "submitProjectFailure"
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
declare enum ValidationStatus {
|
|
1259
|
+
VALIDATE = "validate",
|
|
1260
|
+
VALIDATE_SUCCESS = "validateSuccess",
|
|
1261
|
+
VALIDATE_FAILURE = "validateFailure"
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
interface ReceiverBand {
|
|
1265
|
+
number: number;
|
|
1266
|
+
rfmin: number;
|
|
1267
|
+
rfmax: number;
|
|
1268
|
+
polarisationFrequency: number;
|
|
1269
|
+
continuumFrequency: number;
|
|
1270
|
+
continuumSolarFrequency?: number;
|
|
1271
|
+
continuumVlbiFrequency?: number;
|
|
1272
|
+
name: string;
|
|
1273
|
+
type: string;
|
|
1274
|
+
ifmin: number;
|
|
1275
|
+
ifmax: number;
|
|
1276
|
+
sidebandGainRatio: number;
|
|
1277
|
+
rangeDescription: string;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
declare const ReceiverBands: ReceiverBand[];
|
|
1281
|
+
|
|
1282
|
+
declare enum TimeEstimatesStatus {
|
|
1283
|
+
FETCH_TIME_ESTIMATES = "fetchTimeEstimates",
|
|
1284
|
+
FETCH_TIME_ESTIMATES_SUCCESS = "fetchTimeEstimatesSuccess",
|
|
1285
|
+
FETCH_TIME_ESTIMATES_FAILURE = "fetchTimeEstimatesFailure"
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
declare enum ControlAndPerformanceDataStatus {
|
|
1289
|
+
FETCH_CONTROL_AND_PERFORMANCE = "fetchControlAndPerformance",
|
|
1290
|
+
FETCH_CONTROL_AND_PERFORMANCE_SUCCESS = "fetchControlAndPerformanceSuccess",
|
|
1291
|
+
FETCH_CONTROL_AND_PERFORMANCE_FAILURE = "fetchControlAndPerformanceFailure"
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
declare enum CalibrationDataStatus {
|
|
1295
|
+
FETCH_CALIBRATION = "fetchCalibration",
|
|
1296
|
+
FETCH_CALIBRATION_SUCCESS = "fetchCalibrationSuccess",
|
|
1297
|
+
FETCH_CALIBRATION_FAILURE = "fetchCalibrationFailure"
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
declare enum SensitivityEquivalenceValuesStatus {
|
|
1301
|
+
FETCH_SENSITIVITY_EQUIVALENCE_VALUES = "fetchSensitivityEquivalenceValues",
|
|
1302
|
+
FETCH_SENSITIVITY_EQUIVALENCE_VALUES_SUCCESS = "fetchSensitivityEquivalenceValuesSuccess",
|
|
1303
|
+
FETCH_SENSITIVITY_EQUIVALENCE_VALUES_FAILURE = "fetchSensitivityEquivalenceValuesFailure"
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
declare enum SensitivityFrequencyMeasuresStatus {
|
|
1307
|
+
FETCH_SENSITIVITY_FREQUENCY_MEASURES = "fetchSensitivityFrequencyMeasures",
|
|
1308
|
+
FETCH_SENSITIVITY_FREQUENCY_MEASURES_SUCCESS = "fetchSensitivityFrequencyMeasuresSuccess",
|
|
1309
|
+
FETCH_SENSITIVITY_FREQUENCY_MEASURES_FAILURE = "fetchSensitivityFrequencyMeasuresFailure"
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
declare enum SpectralScanTuningsStatus {
|
|
1313
|
+
FETCH_SPECTRAL_SCAN_TUNINGS = "fetchSpectralScanTunings",
|
|
1314
|
+
FETCH_SPECTRAL_SCAN_TUNINGS_SUCCESS = "fetchSpectralScanTuningsSuccess",
|
|
1315
|
+
FETCH_SPECTRAL_SCAN_TUNINGS_FAILURE = "fetchSpectralScanTuningsFailure"
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
declare enum UserPreferencesStatus {
|
|
1319
|
+
LOAD_USER_PREFERENCES = "loadUserPreferences",
|
|
1320
|
+
LOAD_USER_PREFERENCES_SUCCESS = "loadUserPreferencesSuccess",
|
|
1321
|
+
LOAD_USER_PREFERENCES_FAILURE = "loadUserPreferencesFailure",
|
|
1322
|
+
SAVE_USER_PREFERENCES = "saveUserPreferences",
|
|
1323
|
+
SAVE_USER_PREFERENCES_SUCCESS = "saveUserPreferencesSuccess",
|
|
1324
|
+
SAVE_USER_PREFERENCES_FAILURE = "saveUserPreferencesFailure"
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
declare enum PointingsStatus {
|
|
1328
|
+
FETCH_POINTINGS = "fetchPointings",
|
|
1329
|
+
FETCH_POINTINGS_SUCCESS = "fetchPointingsSuccess",
|
|
1330
|
+
FETCH_POINTINGS_FAILURE = "fetchPointingsFailure",
|
|
1331
|
+
EXPORT_POINTINGS_TO_CSV = "exportPointingsToCsv",
|
|
1332
|
+
EXPORT_POINTINGS_TO_CSV_SUCCESS = "exportPointingsToCsvSuccess",
|
|
1333
|
+
EXPORT_POINTINGS_TO_CSV_FAILURE = "exportPointingsToCsvFailure",
|
|
1334
|
+
IMPORT_POINTINGS_FROM_CSV = "importPointingsFromCsv",
|
|
1335
|
+
IMPORT_POINTINGS_FROM_CSV_SUCCESS = "importPointingsFromCsvSuccess",
|
|
1336
|
+
IMPORT_POINTINGS_FROM_CSV_SUCCESS_WITH_WARNINGS = "importPointingsFromCsvSuccessWithWarnings",
|
|
1337
|
+
IMPORT_POINTINGS_FROM_CSV_FAILURE = "importPointingsFromCsvFailure"
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
interface Pointings {
|
|
1341
|
+
pointings7m?: number;
|
|
1342
|
+
pointings12m?: number;
|
|
1343
|
+
maxNumberTotalPointingsAllowed: number;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
type ArrayTypes = '12m' | '7m';
|
|
1347
|
+
|
|
1348
|
+
declare enum SpectralViewerStatus {
|
|
1349
|
+
FETCH_OCTILE = "fetchOctile",
|
|
1350
|
+
FETCH_OCTILE_SUCCESS = "fetchOctileSuccess",
|
|
1351
|
+
FETCH_OCTILE_FAILURE = "fetchOctileFailure"
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
declare enum CycleInfoStatus {
|
|
1355
|
+
LOAD_CYCLE_INFO = "cycleInfo",
|
|
1356
|
+
LOAD_CYCLE_INFO_SUCCESS = "cycleInfoSuccess",
|
|
1357
|
+
LOAD_CYCLE_INFO_FAILURE = "cycleInfoFailure"
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
declare enum ConfigurationTablesStatus {
|
|
1361
|
+
LOAD_CONFIGURATION_TABLES = "loadConfigurationTables",
|
|
1362
|
+
LOAD_CONFIGURATION_TABLES_SUCCESS = "loadConfigurationTablesSuccess",
|
|
1363
|
+
LOAD_CONFIGURATION_TABLES_FAILURE = "loadConfigurationTablesFailure"
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
declare enum ProposalTypeString {
|
|
1367
|
+
Regular = "Regular",//
|
|
1368
|
+
TargetOfOpportunity = "Target Of Opportunity",
|
|
1369
|
+
VLBI = "VLBI",
|
|
1370
|
+
LargeProgram = "Large Program",
|
|
1371
|
+
PhasedArray = "Phased Array"
|
|
1372
|
+
}
|
|
1373
|
+
declare const ProposalTypes: string[];
|
|
1374
|
+
declare const ProposalTypesMap: {
|
|
1375
|
+
Regular: string;
|
|
1376
|
+
'Target Of Opportunity': string;
|
|
1377
|
+
VLBI: string;
|
|
1378
|
+
'Large Program': string;
|
|
1379
|
+
'Phased Array': string;
|
|
1380
|
+
};
|
|
1381
|
+
|
|
1382
|
+
declare enum TechnicalJustificationStatus {
|
|
1383
|
+
FETCH_TECHNICAL_JUSTIFICATION = "fetchTechnicalJustification",
|
|
1384
|
+
FETCH_TECHNICAL_JUSTIFICATION_SUCCESS = "fetchTechnicalJustificationSuccess",
|
|
1385
|
+
FETCH_TECHNICAL_JUSTIFICATION_FAILURE = "fetchTechnicalJustificationFailure"
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
interface User {
|
|
1389
|
+
name: string;
|
|
1390
|
+
preferred_username: string;
|
|
1391
|
+
roles: string[];
|
|
1392
|
+
}
|
|
1393
|
+
declare const includesPrivilegedRoles: (roles: string[]) => boolean;
|
|
1394
|
+
declare const includesProtrackRole: (roles: string[]) => boolean;
|
|
1395
|
+
|
|
1396
|
+
interface ListItem {
|
|
1397
|
+
aotId?: string;
|
|
1398
|
+
code?: string;
|
|
1399
|
+
latestSubmissionTime?: string;
|
|
1400
|
+
latestModificationTime?: string;
|
|
1401
|
+
obsAttachmentEntityId?: string;
|
|
1402
|
+
obsProjectEntityId?: string;
|
|
1403
|
+
obsProposalEntityId?: string;
|
|
1404
|
+
pi?: string;
|
|
1405
|
+
piFullName?: string;
|
|
1406
|
+
projectName?: string;
|
|
1407
|
+
timeOfCreation?: string;
|
|
1408
|
+
projectSource?: string;
|
|
1409
|
+
originalProjectSource?: 'Disk' | 'ProjectStore' | 'Archive';
|
|
1410
|
+
coIBecomesPI: boolean;
|
|
1411
|
+
containsTaiwanese?: boolean;
|
|
1412
|
+
}
|
|
1413
|
+
declare function getProjectStatus(item: ListItem): ProposalSubmissionStatus;
|
|
1414
|
+
declare function getSourceFromToClone(item: ListItem): string;
|
|
1415
|
+
|
|
1416
|
+
interface UserPreferences {
|
|
1417
|
+
referenceSystemPopupShouldOccur?: boolean;
|
|
1418
|
+
systemCoordinateConversionPopUpShouldOccur?: boolean;
|
|
1419
|
+
addConfirm?: boolean;
|
|
1420
|
+
deleteConfirm?: boolean;
|
|
1421
|
+
iAULookupsNotAdvised?: boolean;
|
|
1422
|
+
basebandsReordered?: boolean;
|
|
1423
|
+
repairConfirm?: boolean;
|
|
1424
|
+
representativeTargetConfirm?: boolean;
|
|
1425
|
+
confirmPatternChange?: boolean;
|
|
1426
|
+
visitConstraintsImpossibleOrder?: boolean;
|
|
1427
|
+
canUserSaveToDisk?: boolean;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
interface TechnicalJustificationEditor {
|
|
1431
|
+
label: string;
|
|
1432
|
+
justificationKey: string;
|
|
1433
|
+
justificationText: string;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
interface TechnicalJustificationItem {
|
|
1437
|
+
[key: string]: string;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
interface TechnicalJustifications {
|
|
1441
|
+
ED_SENSITIVITY: TechnicalJustificationEditor;
|
|
1442
|
+
ED_ANGULAR_RESOLUTION: TechnicalJustificationEditor;
|
|
1443
|
+
ED_CORRELATOR: TechnicalJustificationEditor;
|
|
1444
|
+
ED_ADDITIONAL_TIME: TechnicalJustificationEditor;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
interface TechnicalJustificationSection {
|
|
1448
|
+
messages: TechnicalJustificationItem;
|
|
1449
|
+
warnings: TechnicalJustificationItem;
|
|
1450
|
+
justifications: TechnicalJustifications;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
interface TechnicalJustificationsResult {
|
|
1454
|
+
Sensitivity: TechnicalJustificationSection;
|
|
1455
|
+
Imaging: TechnicalJustificationSection;
|
|
1456
|
+
'Correlator configuration': TechnicalJustificationSection;
|
|
1457
|
+
'Choices to be justified': TechnicalJustificationSection;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
interface Calibration {
|
|
1461
|
+
calibration12m1: DoubleWithUnit;
|
|
1462
|
+
calibration12m1And2: DoubleWithUnit;
|
|
1463
|
+
calibration12m2: DoubleWithUnit;
|
|
1464
|
+
calibrationACA7m: DoubleWithUnit;
|
|
1465
|
+
calibrationACATotalPower: DoubleWithUnit;
|
|
1466
|
+
calibrationTotal: DoubleWithUnit;
|
|
1467
|
+
total12m1: DoubleWithUnit;
|
|
1468
|
+
total12m1And2: DoubleWithUnit;
|
|
1469
|
+
total12m2: DoubleWithUnit;
|
|
1470
|
+
totalACA7m: DoubleWithUnit;
|
|
1471
|
+
totalACATotalPower: DoubleWithUnit;
|
|
1472
|
+
totalOverall: DoubleWithUnit;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
interface Param {
|
|
1476
|
+
content: string;
|
|
1477
|
+
name: string;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
interface Group {
|
|
1481
|
+
title: string;
|
|
1482
|
+
params: Param[];
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
interface Configuration {
|
|
1486
|
+
maxExpectedAxialRatio: string;
|
|
1487
|
+
nominalBeam: string;
|
|
1488
|
+
sevenM: string;
|
|
1489
|
+
totalPower: string;
|
|
1490
|
+
twelveM1: string;
|
|
1491
|
+
twelveM2: string;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
interface Source {
|
|
1495
|
+
dec: string;
|
|
1496
|
+
ra: string;
|
|
1497
|
+
sourceName: string;
|
|
1498
|
+
velocity: DoubleWithUnit;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
interface ClusterData {
|
|
1502
|
+
configurations: Configuration[];
|
|
1503
|
+
groups: Group[];
|
|
1504
|
+
sources: Source[];
|
|
1505
|
+
calibration: Calibration;
|
|
1506
|
+
estimatedTotalTime: any;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
interface DataVolumeAndRates {
|
|
1510
|
+
volume12m1And2: DoubleWithUnit;
|
|
1511
|
+
volumeACA7m: DoubleWithUnit;
|
|
1512
|
+
volumeACATP: DoubleWithUnit;
|
|
1513
|
+
rate12m1And2: DoubleWithUnit;
|
|
1514
|
+
rateACA7m: DoubleWithUnit;
|
|
1515
|
+
rateACATP: DoubleWithUnit;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
interface HeaderParameter {
|
|
1519
|
+
title: string;
|
|
1520
|
+
params: Param[];
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
interface TimeEstimate {
|
|
1524
|
+
totalCalibrationTimes: Calibration;
|
|
1525
|
+
dataVolumeAndRates: DataVolumeAndRates;
|
|
1526
|
+
clustersData: ClusterData[];
|
|
1527
|
+
headerParameters: HeaderParameter[];
|
|
1528
|
+
receiverBand: number;
|
|
1529
|
+
errorData: string;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
interface TimeEstimates {
|
|
1533
|
+
index: {
|
|
1534
|
+
[key: string]: TimeEstimate;
|
|
1535
|
+
};
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
interface Environment {
|
|
1539
|
+
appVersion?: string;
|
|
1540
|
+
gitBranch?: string;
|
|
1541
|
+
gitCommitHash?: string;
|
|
1542
|
+
buildTime?: string;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
declare const JointProposalsTypes: string[];
|
|
1546
|
+
|
|
1547
|
+
interface AntennasConfiguration {
|
|
1548
|
+
longestBaseline: Length;
|
|
1549
|
+
maximumRecoverableScale: Angle;
|
|
1550
|
+
shortestBaseline: Length;
|
|
1551
|
+
synthesizedBeamsize: Angle;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
interface ControlAndPerformanceConfiguration {
|
|
1555
|
+
aca7mConfiguration: AntennasConfiguration;
|
|
1556
|
+
antennaBeamsize7m: Angle;
|
|
1557
|
+
antennaBeamsize12m: Angle;
|
|
1558
|
+
antennas12m: number;
|
|
1559
|
+
antennas7m: number;
|
|
1560
|
+
antennasTP: number;
|
|
1561
|
+
compact12mConfiguration: AntennasConfiguration;
|
|
1562
|
+
extended12mConfiguration: AntennasConfiguration;
|
|
1563
|
+
isSimultaneous12and7Observation: boolean;
|
|
1564
|
+
isSimultaneous12And7Possible: boolean;
|
|
1565
|
+
errorMessage: string;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
interface SensitivityEquivalenceValues {
|
|
1569
|
+
equivalentSensitivityResults: EquivalentSensitivityResults;
|
|
1570
|
+
acaAndTPResult: AcaAndTpResult;
|
|
1571
|
+
}
|
|
1572
|
+
interface EquivalentSensitivityResults {
|
|
1573
|
+
sensitivityEquivalent1: SensitivityEquivalent;
|
|
1574
|
+
sensitivityEquivalent2: SensitivityEquivalent;
|
|
1575
|
+
}
|
|
1576
|
+
interface SensitivityEquivalent {
|
|
1577
|
+
value: number;
|
|
1578
|
+
altUnit: string;
|
|
1579
|
+
beamsize: string;
|
|
1580
|
+
}
|
|
1581
|
+
interface AcaAndTpResult {
|
|
1582
|
+
useACA: boolean;
|
|
1583
|
+
useTP: boolean;
|
|
1584
|
+
desiredACASensitivity: DesiredSensitivity;
|
|
1585
|
+
desiredTPSensitivity: DesiredSensitivity;
|
|
1586
|
+
}
|
|
1587
|
+
interface DesiredSensitivity {
|
|
1588
|
+
value: number;
|
|
1589
|
+
unit: string;
|
|
1590
|
+
userUnit: string;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
interface SensitivityFrequencyMeasures {
|
|
1594
|
+
RepresentativeWindowResolution: UserFrequency;
|
|
1595
|
+
LargestWindowBandWidth: UserFrequency;
|
|
1596
|
+
RepresentativeWindowBandWidth: UserFrequency;
|
|
1597
|
+
User: UserFrequency;
|
|
1598
|
+
FinestResolution: UserFrequency;
|
|
1599
|
+
AggregateBandWidth: UserFrequency;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
type DGCTypeEnum = 'None' | 'DGCBandwidthSwitching' | 'DGCBandToBand';
|
|
1603
|
+
interface CalibrationConfiguration {
|
|
1604
|
+
dgcObservingStrategyScheduled: DGCTypeEnum[];
|
|
1605
|
+
errorMessage: string;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
type ValidationIssueType = 'Error' | 'Warning' | 'Info' | 'Success' | 'Submission error' | '<Unknown Severity>';
|
|
1609
|
+
|
|
1610
|
+
interface ValidationIssue {
|
|
1611
|
+
type?: ValidationIssueType;
|
|
1612
|
+
message?: string;
|
|
1613
|
+
suggestion?: string;
|
|
1614
|
+
scienceGoalId?: number;
|
|
1615
|
+
sourceIndex?: number;
|
|
1616
|
+
index?: number;
|
|
1617
|
+
path?: string[];
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
interface SpectralLines {
|
|
1621
|
+
line_id: number;
|
|
1622
|
+
species_id: number;
|
|
1623
|
+
s_name_noparens: string;
|
|
1624
|
+
chemical_name: string;
|
|
1625
|
+
restFreq: number;
|
|
1626
|
+
skyFreq: number;
|
|
1627
|
+
sijmu2: number;
|
|
1628
|
+
lovas_int: string;
|
|
1629
|
+
planet: boolean;
|
|
1630
|
+
ism_hotcore: boolean;
|
|
1631
|
+
ism_diffusecloud: boolean;
|
|
1632
|
+
comet: boolean;
|
|
1633
|
+
ism_darkcloud: boolean;
|
|
1634
|
+
extragalactic: boolean;
|
|
1635
|
+
agb_ppn_pn: boolean;
|
|
1636
|
+
top20: boolean;
|
|
1637
|
+
e_up_K: number;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
interface SpectralScanTunings {
|
|
1641
|
+
tunings: Frequency[][];
|
|
1642
|
+
imageTunings: Frequency[][];
|
|
1643
|
+
achievedStartFrequency: Frequency;
|
|
1644
|
+
achievedEndFrequency: Frequency;
|
|
1645
|
+
tuningError: boolean;
|
|
1646
|
+
tuningWarning: boolean;
|
|
1647
|
+
tuningMessage: string;
|
|
1648
|
+
imageSideBand: boolean;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
type SpectralType = 'full' | 'continuum' | 'scan';
|
|
1652
|
+
|
|
1653
|
+
interface EphemerisInformation {
|
|
1654
|
+
fileContents: string;
|
|
1655
|
+
sourceName: string;
|
|
1656
|
+
sourceCoordinates: SkyCoordinates;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
/**
|
|
1660
|
+
* Editor token and associated info -- for NGOT-907
|
|
1661
|
+
* @author amchavan, 11-Oct-2024
|
|
1662
|
+
*/
|
|
1663
|
+
/**
|
|
1664
|
+
* Reasons why a token expired.
|
|
1665
|
+
*
|
|
1666
|
+
* NOTE -- We set the enum values to be strings, so we can use them in a switch/case statement
|
|
1667
|
+
* without casting them to numbers.
|
|
1668
|
+
* See https://stackoverflow.com/a/59217944
|
|
1669
|
+
*/
|
|
1670
|
+
declare enum ExpirationReason {
|
|
1671
|
+
/** Author was inactive (that is, did not edit the proposal) for some predefined time */
|
|
1672
|
+
INACTIVE = "INACTIVE",
|
|
1673
|
+
/** Author completed an editing session and released the token */
|
|
1674
|
+
RELEASED = "RELEASED",
|
|
1675
|
+
/** PI overrode current author and claimed the token for himself */
|
|
1676
|
+
GRAB = "GRAB"
|
|
1677
|
+
}
|
|
1678
|
+
/**
|
|
1679
|
+
* An editor token: a proposal author (PI, Co-PIs and Co-Is) who 'owns'
|
|
1680
|
+
* one of these tokens is allowed to edit the proposal, while all
|
|
1681
|
+
* other authors are in read-only mode
|
|
1682
|
+
*
|
|
1683
|
+
* @param expirationTime When the token will expire or has expired (msec since the epoch)
|
|
1684
|
+
*
|
|
1685
|
+
* @author amchavan, 30-Sep-2024
|
|
1686
|
+
*/
|
|
1687
|
+
interface Token {
|
|
1688
|
+
/** ObsProject UID for the proposal being edited */
|
|
1689
|
+
obsProjectUID?: string;
|
|
1690
|
+
/**
|
|
1691
|
+
* Identifier of the session (browser or browser tab)
|
|
1692
|
+
* requiring this token -- allows concurrent access
|
|
1693
|
+
* checks across multiple tabs on the same browser
|
|
1694
|
+
*/
|
|
1695
|
+
sessionId?: string;
|
|
1696
|
+
/** Username of the author */
|
|
1697
|
+
author?: string;
|
|
1698
|
+
/** When the token will expire or has expired (msec since the epoch) */
|
|
1699
|
+
expirationTime?: number;
|
|
1700
|
+
/** If falsy, this token hasn't expired yet */
|
|
1701
|
+
expirationReason?: ExpirationReason;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
/**
|
|
1705
|
+
* The client for alma.obsprep.ngot.backend.ngotprojectarchive.concedit.TokenController
|
|
1706
|
+
* in ngot-project-archive.
|
|
1707
|
+
*
|
|
1708
|
+
* All requests are fire-and-forget (no action on the response) because the front-end
|
|
1709
|
+
* takes its concurrent editing input from websocket subscriptions.
|
|
1710
|
+
*
|
|
1711
|
+
* @author amchavan, 11-Oct-2024
|
|
1712
|
+
*/
|
|
1713
|
+
declare class TokenService {
|
|
1714
|
+
private http;
|
|
1715
|
+
readonly baseUrl = "/ngotGateway/concurrent-editing/v1";
|
|
1716
|
+
constructor(http: HttpClient);
|
|
1717
|
+
claimToken(obsProjectUid: string, username: string, sessionId: string, grab?: boolean): rxjs_dist_types.Subscription;
|
|
1718
|
+
releaseToken(obsProjectUid: string, username: string, sessionId: string): rxjs_dist_types.Subscription;
|
|
1719
|
+
/** Ask the back-end to broadcast the current editing token for the given project, if any */
|
|
1720
|
+
broadcastToken(obsProjectUid: string): void;
|
|
1721
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TokenService, never>;
|
|
1722
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TokenService>;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
/**
|
|
1726
|
+
* Simple-minded session management: a session is a user on browser, or browser tab
|
|
1727
|
+
* @author amchavan, 11-Oct-2024
|
|
1728
|
+
*/
|
|
1729
|
+
declare class SessionService {
|
|
1730
|
+
/** A self-generated session identifier for the tab we are running in */
|
|
1731
|
+
sessionID: string;
|
|
1732
|
+
constructor();
|
|
1733
|
+
getSessionId(): string;
|
|
1734
|
+
/** Compute a random string of the given length */
|
|
1735
|
+
private randomString;
|
|
1736
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionService, never>;
|
|
1737
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionService>;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* @author amchavan, 10-Oct-2024
|
|
1742
|
+
*/
|
|
1743
|
+
declare class RxStompService extends RxStomp {
|
|
1744
|
+
constructor();
|
|
1745
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RxStompService, never>;
|
|
1746
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RxStompService>;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* See https://stomp-js.github.io/guide/rx-stomp/rx-stomp-with-angular.html
|
|
1751
|
+
*
|
|
1752
|
+
* @author amchavan, 10-Oct-2024
|
|
1753
|
+
*/
|
|
1754
|
+
declare function rxStompServiceFactory(): RxStompService;
|
|
1755
|
+
|
|
1756
|
+
interface CycleInfo {
|
|
1757
|
+
cycleYear: string;
|
|
1758
|
+
isMainCall: boolean;
|
|
1759
|
+
phase1StartDate: string;
|
|
1760
|
+
phase1EndDate: string;
|
|
1761
|
+
phase2StartDate: string;
|
|
1762
|
+
phase2EndDate: string;
|
|
1763
|
+
ddtStartDate: string;
|
|
1764
|
+
ddtEndDate: string;
|
|
1765
|
+
telescope: string;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
interface ConfigurationTableRow {
|
|
1769
|
+
dec: string | number;
|
|
1770
|
+
finestAR: string | number;
|
|
1771
|
+
coarsestAR: string | number;
|
|
1772
|
+
LAS: string | number;
|
|
1773
|
+
}
|
|
1774
|
+
type ConfigurationTables = Record<string, ConfigurationTableRow[]>;
|
|
1775
|
+
|
|
1776
|
+
export { ApplicationStatus, AttachmentStatus, AuthenticationStatus, CalibrationDataStatus, ConfigurationTablesStatus, ControlAndPerformanceDataStatus, CycleInfoStatus, ExpirationReason, JointProposalsTypes, ListItemStatus, PointingsStatus, ProjectStatus, ProjectTypeCode, ProposalStatus, ProposalTypeString, ProposalTypes, ProposalTypesMap, ReceiverBands, RxStompService, ScienceGoalsStatus, SensitivityEquivalenceValuesStatus, SensitivityFrequencyMeasuresStatus, SessionService, SpectralScanTuningsStatus, SpectralViewerStatus, SubmissionStatus, TechnicalJustificationStatus, TimeEstimatesStatus, TokenService, UserPreferencesStatus, ValidationStatus, buildCalibrationTargetParameter, buildField, buildRectangle, buildScienceGoal, buildScienceSpectralWindow, buildScienceSpectralWindowForDefaultVLBIBand, buildScienceSpectralWindowForSolar, buildScienceSpectralWindowForVLBIOrPhasedArray, buildSpectralScanScienceSpectralWindow, buildSpectralSetupParameters, buildTargetParameters, buildTechnicalJustifications, buildTemporalParameters, buildVisitConstraint, getProjectStatus, getSourceFromToClone, includesPrivilegedRoles, includesProtrackRole, rxStompServiceFactory };
|
|
1777
|
+
export type { ACASpectralWindow, AbstractBaseBandConfig, AbstractCorrelatorConfiguration, AbstractInstrumentSpec, AbstractScienceGoal, AbstractScienceSpectralWindow, AbstractSpectralLine, AbstractSpectralWindow, AbstractSwitchingCycle, AbstractSwitchingState, AbstractTargetParameters, AbstractTimingConstraints, AcaAndTpResult, AcaBaseBandConfig, AcaCorrelatorConfiguration, AcaPhaseSwitchingConfiguration, AcaSpectrometerCorrelatorConfiguration, AdvancedSpectralSetup, AdvancedWindowSetup, Angle, AngularVelocity, AntennasConfiguration, ArrayDataRates, ArrayTime, ArrayTimeBreakdown, ArrayTypes, BaseBandSpecification, BeamSwitchingCycle, BeamSwitchingState, BlBaseBandConfig, BlCorrelatorConfiguration, BlSpectralWindow, Calibration, CalibrationConfiguration, CalibrationRequirements, CalibrationSetupParameters, CalibrationTargetParameters, CalibrationTargetProperties, CalibratorParameters, ChannelAverageRegion, Circle, Cloneable, ClusterData, Configuration, ConfigurationTableRow, ConfigurationTables, ControlAndPerformanceConfiguration, ControlBlock, CrossPattern, CycleInfo, DGCTypeEnum, DataProcessingParameters, DataRate, DataRateBreakdown, DataVolumeAndRates, DesiredSensitivity, DocumentLink, DoubleWithUnit, Ellipse, Entity, EntityRef, Environment, EphemerisInformation, EquivalentSensitivityResults, Error, ExecBlockRef, ExecutiveFraction, ExpectedProperties, ExpectedSpectralLine, ExportSources, ExportSourcesOptions, ExtendedScienceSpectralWindow, Field, FieldPattern, FieldSource, FillPattern, FlowControl, Flux, Frequency, FrequencySetup, FrequencySwitchingCycle, FrequencySwitchingState, Group, HeaderParameter, HolographyParameters, ImportSources, ImportSourcesOptions, IntTimeReference, IntTimeSource, Investigator, KeywordValue, Latitude, Length, ListItem, Longitude, Magnitude, MonitoringConstraint, ObsAttachment, ObsAttachmentEntity, ObsAttachmentRef, ObsPhase, ObsProcedure, ObsProgram, ObsProject, ObsProjectEntity, ObsProjectRef, ObsProposal, ObsProposalEntity, ObsProposalRef, ObsReviewRef, ObsUnit, ObsUnitControl, ObsUnitSet, ObservingGroup, ObservingParameters, OpticalCameraSpec, OpticalPointingParameters, OrderedTarget, OusStatusRef, OverlaidSpectralLine, Param, PerformanceParameters, PointingPattern, Pointings, Polygon, Preconditions, ProjectStatusRef, ProposalFeedback, ProposalSubmissionStatus, QuerySource, RadiometricPointingParameters, ReceiverBand, ReceiverTime, ReceiverTimeBreakdown, Rectangle, RectanglePattern, Reference, ReservationParameters, SbStatusRef, SchedBlock, SchedBlockControl, SchedBlockEntity, SchedBlockRef, SchedulingConstraints, ScienceGoal, ScienceParameters, ScienceSpectralWindow, Sensitivity, SensitivityEquivalenceValues, SensitivityEquivalent, SensitivityFrequencyMeasures, SinglePoint, SkyCoordinates, SmallAngle, Source, SourceProperty, SpectralLine, SpectralLines, SpectralScan, SpectralScanTunings, SpectralSetupParameters, SpectralSpec, SpectralType, Speed, SquareLawSetup, Status, StorageVolume, SubmissionRecord, Target, TargetParameters, TechnicalJustification, TechnicalJustificationEditor, TechnicalJustificationItem, TechnicalJustificationSection, TechnicalJustifications, TechnicalJustificationsResult, TemporalConstraints, TemporalParameters, Time, TimeAllocationBreakdown, TimeEstimate, TimeEstimates, Token, UnitDependencies, User, UserAngle, UserFrequency, UserPreferences, UserSensitivity, ValidationIssue, ValidationIssueType, Velocity, VisitConstraint, WeatherConstraints, XmlGregorianCalendar };
|