-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfdsnavailability.ts
952 lines (817 loc) · 24 KB
/
fdsnavailability.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
/*
* Philip Crotwell
* University of South Carolina, 2019
* https://www.seis.sc.edu
*/
import {FDSNCommon, IRIS_HOST} from './fdsncommon';
import {DateTime, Interval} from "luxon";
import {SeismogramDisplayData} from "./seismogram";
import {
doStringGetterSetter,
doBoolGetterSetter,
doIntGetterSetter,
doFloatGetterSetter,
doMomentGetterSetter,
toIsoWoZ,
isoToDateTime,
isDef,
hasNoArgs,
isNonEmptyStringArg,
isNumArg,
stringify,
TEXT_MIME,
JSON_MIME,
makeParam,
doFetchWithTimeout,
defaultFetchInitObj,
validStartTime,
validEndTime,
} from "./util";
import {Network, Station, Channel} from "./stationxml";
/** const for json format, json */
export const FORMAT_JSON = "json";
/** const for text format, text */
export const FORMAT_TEXT = "text";
/** const for geocsv format, geocsv */
export const FORMAT_GEOCSV = "geocsv";
/** const for request format, request */
export const FORMAT_REQUEST = "request";
/** const of completely empty json, \{\} */
export const EMPTY_JSON: RootType = {
version: {},
datasources: [],
};
/**
* Major version of the FDSN spec supported here.
* Currently is 1.
*/
export const SERVICE_VERSION = 1;
/**
* Service name as used in the FDSN DataCenters registry,
* https://www.fdsn.org/datacenters
*/
export const SERVICE_NAME = `fdsnws-availability-${SERVICE_VERSION}`;
/** const for the default IRIS web service host, service.iris.edu */
export {IRIS_HOST};
/**
* Query to a FDSN Availability web service.
*
* ```
* const avail = AvailabilityQuery()
* .networkCode("CO")
* .stationCode("BIRD")
* .startTime("2021-12-27T19:18:54Z")
* .endTime("2021-12-27T19:22:54Z");
* avail.query().then(sddList => {
* sddList.forEach(sdd => console.log(sdd))
* });
* ```
*
* @see https://www.fdsn.org/webservices/
* @param host optional host to connect to, defaults to IRIS
*/
export class AvailabilityQuery extends FDSNCommon {
/** @private */
_networkCode: string|undefined;
/** @private */
_stationCode: string|undefined;
/** @private */
_locationCode: string|undefined;
/** @private */
_channelCode: string|undefined;
/** @private */
_startTime: DateTime|undefined;
/** @private */
_endTime: DateTime|undefined;
/** @private */
_quality: string|undefined;
/** @private */
_merge: string|undefined;
/** @private */
_show: string|undefined;
/** @private */
_mergeGaps: number|undefined;
/** @private */
_limit: number|undefined;
/** @private */
_orderby: string|undefined;
/** @private */
_includerestricted: boolean|undefined;
/** @private */
_format: string|undefined;
constructor(host?: string) {
if ( ! isNonEmptyStringArg(host)) {
host = IRIS_HOST;
}
super(host);
}
/**
* Gets/Sets the version of the fdsnws spec, 1 is currently the only value.
* Setting this is probably a bad idea as the code may not be compatible with
* the web service.
*
* @param value spec version, usually 1
* @returns the query when setting, the current value when no argument
*/
specVersion(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "specVersion", value);
return this;
}
getSpecVersion(): string {
return this._specVersion;
}
/**
* Gets/Sets the protocol, http or https. This should match the protocol
* of the page loaded, but is autocalculated and generally need not be set.
*
* @param value protocol, usually http or https
* @returns the query when setting, the current value when no argument
*/
protocol(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "protocol", value);
return this;
}
getProtocol(): string | undefined {
return this._protocol;
}
/**
* Gets/Sets the remote host to connect to.
*
* @param value host
* @returns the query when setting, the current value when no argument
*/
host(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "host", value);
return this;
}
getHost(): string {
return this._host;
}
/**
* Gets/Sets the nodata parameter, usually 404 or 204 (default), controlling
* the status code when no matching data is found by the service.
*
* @param value number for nodata, usually 404 or 204
* @returns the query when setting, the current value when no argument
*/
nodata(value?: number): AvailabilityQuery {
doIntGetterSetter(this, "nodata", value);
return this;
}
getNodata(): number | undefined {
return this._nodata;
}
/**
* Gets/Sets the port, not usually set unless not on standard http or https ports
*
* @param value port
* @returns the query when setting, the current value when no argument
*/
port(value?: number): AvailabilityQuery {
doIntGetterSetter(this, "port", value);
return this;
}
getPort(): number {
return this._port;
}
/**
* Gets/Sets the network code to check.
*
* @param value network code like IU
* @returns the query when setting, the current value when no argument
*/
networkCode(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "networkCode", value);
return this;
}
getNetworkCode(): string | undefined {
return this._networkCode;
}
/**
* Gets/Sets the station code to check.
*
* @param value station code like ANMO
* @returns the query when setting, the current value when no argument
*/
stationCode(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "stationCode", value);
return this;
}
getStationCode(): string | undefined {
return this._stationCode;
}
/**
* Gets/Sets the location code to check.
*
* @param value location code like 00
* @returns the query when setting, the current value when no argument
*/
locationCode(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "locationCode", value);
return this;
}
getLocationCode(): string | undefined {
return this._locationCode;
}
/**
* Gets/Sets the channel code to check.
*
* @param value channel code like BHZ
* @returns the query when setting, the current value when no argument
*/
channelCode(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "channelCode", value);
return this;
}
getChannelCode(): string | undefined {
return this._channelCode;
}
/**
* Gets/Sets the start time parameter for the query.
*
* @param value start time
* @returns the query when setting, the current value when no argument
*/
startTime(value?: DateTime | string): AvailabilityQuery {
doMomentGetterSetter(this, "startTime", value);
return this;
}
getStartTime(): DateTime | undefined {
return this._startTime;
}
/**
* Gets/Sets the end time parameter for the query.
*
* @param value end time
* @returns the query when setting, the current value when no argument
*/
endTime(value?: DateTime | string): AvailabilityQuery {
doMomentGetterSetter(this, "endTime", value);
return this;
}
getEndTime(): DateTime | undefined {
return this._endTime;
}
/**
* Sets startTime and endTime using the given time window
*
* @param se time window
* @returns the query
*/
timeRange(se: Interval): AvailabilityQuery {
this.startTime(validStartTime(se));
this.endTime(validEndTime(se));
return this;
}
/**
* Gets/Sets the quality parameter for the query.
*
* @param value quality
* @returns the query when setting, the current value when no argument
*/
quality(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "quality", value);
return this;
}
getQuality(): string | undefined {
return this._quality;
}
/**
* Gets/Sets the merge parameter for the query.
*
* @param value merge
* @returns the query when setting, the current value when no argument
*/
merge(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "merge", value);
return this;
}
getMerge(): string | undefined {
return this._merge;
}
/**
* Gets/Sets the mergegaps parameter for the query.
*
* @param value merge gaps
* @returns the query when setting, the current value when no argument
*/
mergeGaps(value?: number): AvailabilityQuery {
doFloatGetterSetter(this, "mergeGaps", value);
return this;
}
getMergeGaps(): number | undefined {
return this._mergeGaps;
}
/**
* Gets/Sets the show parameter for the query.
*
* @param value show
* @returns the query when setting, the current value when no argument
*/
show(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "show", value);
return this;
}
getShow(): string | undefined {
return this._show;
}
/**
* Gets/Sets the limit parameter for the query.
*
* @param value limit
* @returns the query when setting, the current value when no argument
*/
limit(value?: number): AvailabilityQuery {
doIntGetterSetter(this, "limit", value);
return this;
}
getLimit(): number | undefined {
return this._limit;
}
/**
* Gets/Sets the order by parameter for the query.
*
* @param value order by
* @returns the query when setting, the current value when no argument
*/
orderby(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "orderBy", value);
return this;
}
getOrderBy(): string | undefined {
return this._orderby;
}
/**
* Gets/Sets the include restricted data parameter for the query.
*
* @param value true to include restricted data
* @returns the query when setting, the current value when no argument
*/
includeRestricted(value?: boolean): AvailabilityQuery {
doBoolGetterSetter(this, "includerestricted", value);
return this;
}
getIncludeRestricted(): boolean | undefined {
return this._includerestricted;
}
/**
* Gets/Sets the format parameter for the query. Usually not needed as is set
* by the various query methods.
*
* @param value format
* @returns the query when setting, the current value when no argument
*/
format(value?: string): AvailabilityQuery {
doStringGetterSetter(this, "format", value);
return this;
}
getFormat(): string | undefined {
return this._format;
}
/**
* Get/Set the timeout in seconds for the request. Default is 30.
*
* @param value timeout in seconds
* @returns the query when setting, the current value when no argument
*/
timeout(value?: number): AvailabilityQuery {
doFloatGetterSetter(this, "timeoutSec", value);
return this;
}
getTimeout(): number | undefined {
return this._timeoutSec;
}
/**
* Calls query on the remote service, using configured parameters. Calls
* queryJson internally, then unpacks the result into array of SeismogramDisplayData
* objects.
*
* @returns promise to array of SeismogramDisplayData, each representing
* a channel-time window
*/
query(): Promise<Array<SeismogramDisplayData>> {
return this.queryJson().then( (json: RootType) => {
return this.extractFromJson(json);
});
}
/**
* Calls the query function the remote server and parses the returned data as json.
*
* @returns promise to the result as json
*/
queryJson(): Promise<RootType> {
this.format(FORMAT_JSON);
const url = this.formURL("query");
const fetchInit = defaultFetchInitObj(JSON_MIME);
return doFetchWithTimeout(url, fetchInit, this._timeoutSec * 1000).then(
(response) => {
if (
response.status === 204 ||
(isDef(this._nodata) && response.status === this._nodata)
) {
return EMPTY_JSON;
}
const contentType = response.headers.get("content-type");
if (
isNonEmptyStringArg(contentType) &&
contentType.includes(JSON_MIME)
) {
return response.json();
}
throw new TypeError(`Oops, we did not get JSON! ${contentType}`);
}).then(jsonValue => {
if (isValidRootType(jsonValue)) {
return jsonValue;
}
throw new TypeError(`Oops, we did not get valid root type json`);
});
}
/**
* Calls extent on the remote service, using configured parameters. Calls
* extentJson internally, then unpacks the result into array of SeismogramDisplayData
* objects.
*
* @returns promise to array of SeismogramDisplayData, each representing
* a channel-time window
*/
extent(): Promise<Array<SeismogramDisplayData>> {
return this.extentJson().then( (json: RootType) => {
return this.extractFromJson(json);
});
}
/**
* Call the extend function on the remote server and parses the returned data as json.
*
* @returns promise to the result as json
*/
extentJson(): Promise<RootType> {
this.format(FORMAT_JSON);
const url = this.formURL("extent");
const fetchInit = defaultFetchInitObj(JSON_MIME);
return doFetchWithTimeout(url, fetchInit, this._timeoutSec * 1000).then(
(response) => {
if (
response.status === 204 ||
(isDef(this._nodata) && response.status === this._nodata)
) {
return EMPTY_JSON;
}
const contentType = response.headers.get("content-type");
if (
isNonEmptyStringArg(contentType) &&
contentType.includes(JSON_MIME)
) {
return response.json();
}
throw new TypeError(`Oops, we did not get JSON! ${contentType}`);
}).then(jsonValue => {
if (isValidRootType(jsonValue)) {
return jsonValue;
}
throw new TypeError(`Oops, we did not get valid root type json`);
});
}
/**
* Calls query on the remote service using POST, using configured parameters
* and forms the POST body using the channelTimeList. Calls
* postQueryJson internally, then unpacks the result into array of SeismogramDisplayData
* objects.
*
* @param channelTimeList array of channel-time windows for the request
* @returns promise to array of SeismogramDisplayData, each representing
* a channel-time window
*/
postQuery(
channelTimeList: Array<SeismogramDisplayData>,
): Promise<Array<SeismogramDisplayData>> {
return this.postQueryJson(channelTimeList).then(json => {
return this.extractFromJson(json);
});
}
postExtent(
channelTimeList: Array<SeismogramDisplayData>,
): Promise<Array<SeismogramDisplayData>> {
return this.postExtentJson(channelTimeList).then(json => {
return this.extractFromJson(json);
});
}
postExtentJson(
channelTimeList: Array<SeismogramDisplayData>,
): Promise<RootType> {
return this.postJson(channelTimeList, "extent");
}
postQueryJson(
channelTimeList: Array<SeismogramDisplayData>,
): Promise<RootType> {
return this.postJson(channelTimeList, "query");
}
postJson(
channelTimeList: Array<SeismogramDisplayData>,
method: string,
): Promise<RootType> {
this.format(FORMAT_JSON);
return this.postRaw(channelTimeList, method).then( (response) => {
if (
response.status === 204 ||
(isDef(this._nodata) && response.status === this._nodata)
) {
return EMPTY_JSON;
}
const contentType = response.headers.get("content-type");
if (isNonEmptyStringArg(contentType) && contentType.includes(JSON_MIME)) {
return response.json();
}
throw new TypeError(`Oops, we did not get JSON! ${contentType}`);
}).then(jsonValue => {
if (isValidRootType(jsonValue)) {
return jsonValue;
}
throw new TypeError(`Oops, we did not get valid root type json`);
});
}
postRaw(
channelTimeList: Array<SeismogramDisplayData>,
method: string,
): Promise<Response> {
if (channelTimeList.length === 0) {
// return promise faking an not ok fetch response
return Promise.resolve(new Response(null, {
status: 204,
}));
} else {
const fetchInit = defaultFetchInitObj(JSON_MIME);
fetchInit.method = "POST";
fetchInit.body = this.createPostBody(channelTimeList);
return fetch(this.formBaseURL() + `/${method}?`, fetchInit).then(
function (response) {
if (response.ok) {
return response;
}
throw new Error("Fetch response was not ok.");
},
);
}
}
extractFromJson(jsonChanTimes: RootType): Array<SeismogramDisplayData> {
const out = [];
const knownNets = new Map<string, Network>();
if (isDef(jsonChanTimes.datasources)) {
for (const ds of jsonChanTimes.datasources) {
if (isValidDatasource(ds)) {
let n = knownNets.get(ds.network);
if (!n) {
n = new Network(ds.network);
knownNets.set(ds.network, n);
}
let s = null;
for (const ss of n.stations) {
if (ss.stationCode === ds.station) {
s = ss;
}
}
if (!s) {
s = new Station(n, ds.station);
n.stations.push(s);
}
const c = new Channel(s, ds.channel, ds.location);
if (
isNonEmptyStringArg(ds.earliest) &&
isNonEmptyStringArg(ds.latest)
) {
out.push(
SeismogramDisplayData.fromChannelAndTimes(
c,
isoToDateTime(ds.earliest),
isoToDateTime(ds.latest),
),
);
} else if (ds.timespans) {
for (const ts of ds.timespans) {
if (Array.isArray(ts) && ts.length === 2 &&
typeof ts[0] === 'string' &&
typeof ts[1] === 'string') {
out.push(
SeismogramDisplayData.fromChannelAndTimes(
c,
isoToDateTime(ts[0]),
isoToDateTime(ts[1]),
),
);
} else {
throw new TypeError("invalid timespans: "+stringify(ts));
}
}
}
}
}
}
return out;
}
createPostBody(channelTimeList: Array<SeismogramDisplayData>): string {
let out = "";
if (this._quality) {
out += this.makePostParm("quality", this.quality());
}
if (this._merge) {
out += this.makePostParm("merge", this.merge());
}
if (
isNumArg(this._mergeGaps) &&
(this._format === "query" || this._format === "queryauth")
) {
out += this.makePostParm("mergegaps", this.mergeGaps());
}
if (
this._show &&
(this._format === "query" || this._format === "queryauth")
) {
out += this.makePostParm("show", this.show());
}
if (isNumArg(this._limit) && this._limit > 0) {
out += this.makePostParm("limit", this.limit());
}
if (this._orderby) {
out += this.makePostParm("orderby", this.orderby());
}
if (this._includerestricted) {
out += this.makePostParm("includerestricted", this.includeRestricted());
}
if (this._format) {
out += this.makePostParm("format", this.format());
}
if (this._nodata) {
out += this.makePostParm("nodata", this.nodata());
}
for (const ct of channelTimeList) {
if (isDef(ct.channel)) {
const sta = ct.channel.station;
const net = sta.network;
out += `${net.networkCode} ${sta.stationCode} ${
ct.channel.locationCode
} ${
ct.channel.channelCode
} ${toIsoWoZ(ct.startTime)} ${toIsoWoZ(ct.endTime)}`;
out += "\n";
} else {
throw new Error("Channel in missing in createPostBody");
}
}
return out;
}
formBaseURL(): string {
let colon = ":";
if (this._protocol.endsWith(colon)) {
colon = "";
}
return (
this._protocol +
colon +
"//" +
this._host +
(this._port === 80 ? "" : ":" + stringify(this._port)) +
"/fdsnws/availability/" +
this._specVersion
);
}
formVersionURL(): string {
return this.formBaseURL() + "/version";
}
/**
* Queries the remote web service to get its version
*
* @returns Promise to version string
*/
queryVersion(): Promise<string> {
const url = this.formVersionURL();
const fetchInit = defaultFetchInitObj(TEXT_MIME);
return doFetchWithTimeout(url, fetchInit, this._timeoutSec * 1000).then(
response => {
if (response.status === 200) {
return response.text();
} else {
throw new Error(`Status not 200: ${response.status}`);
}
},
);
}
makePostParm(name: string, val: unknown): string {
return name + "=" + stringify(val) + "\n";
}
formURL(method?: string): string {
if (hasNoArgs(method)) {
method = "query";
}
let url = this.formBaseURL() + `/${method}?`;
if (this._networkCode) {
url = url + makeParam("net", this._networkCode);
}
if (this._stationCode) {
url = url + makeParam("sta", this._stationCode);
}
if (this._locationCode) {
url = url + makeParam("loc", this._locationCode);
}
if (this._channelCode) {
url = url + makeParam("cha", this._channelCode);
}
if (this._startTime) {
url = url + makeParam("starttime", toIsoWoZ(this._startTime));
}
if (this._endTime) {
url = url + makeParam("endtime", toIsoWoZ(this._endTime));
}
if (this._quality) {
url = url + makeParam("quality", this._quality);
}
if (this._merge) {
url = url + makeParam("merge", this._merge);
}
if (this._mergeGaps) {
url = url + makeParam("mergegaps", this._mergeGaps);
}
if (this._show) {
url = url + makeParam("show", this._show);
}
if (isNumArg(this._limit) && this._limit > 0) {
url = url + makeParam("limit", this._limit);
}
if (this._orderby) {
url = url + makeParam("orderby", this._orderby);
}
if (this._includerestricted) {
url = url + makeParam("includerestricted", this._includerestricted);
}
if (this._format) {
url = url + makeParam("format", this._format);
}
if (this._nodata) {
url = url + makeParam("nodata", this._nodata);
}
if (url.endsWith("&") || url.endsWith("?")) {
url = url.substr(0, url.length - 1); // zap last & or ?
}
return url;
}
}
/* The below are slighly modified from json schema to flow autogenerator.
*
* */
/**
* Root type of availablility json query.
*/
export type RootType = {
created?: FdsnDateTime;
version: Record<string, unknown>;
datasources: Array<Datasource>;
} & Record<string, unknown>;
export type FdsnDateTime = string;
export type Datasource = ({
network: string;
station: string;
location: string;
channel: string;
quality?: string;
samplerate?: number;
timespans?: Array<Array<FdsnDateTime>>;
earliest?: FdsnDateTime;
latest?: FdsnDateTime;
updated?: FdsnDateTime;
timespanCount?: number;
restriction?: string;
} & Record<string, unknown>) &
(
| ({
timespans: unknown;
} & Record<string, unknown>)
| ({
earliest: FdsnDateTime;
latest: FdsnDateTime;
} & Record<string, unknown>)
);
export function isValidRootType(jsonValue: unknown): jsonValue is RootType {
if (! jsonValue || typeof jsonValue !== 'object') {
throw new TypeError("json is not object");
}
const jsonObj = jsonValue as Record<string, unknown>;
if (Array.isArray(jsonObj.datasources) &&
jsonObj.datasources.every(isValidDatasource) &&
typeof jsonObj.version === 'number') {
return true;
} else {
throw new TypeError("json is not valid for FDSN Availability");
}
}
export function isValidDatasource(jsonValue: unknown): jsonValue is Datasource {
if (! jsonValue || typeof jsonValue !== 'object') {
throw new TypeError("json is not object");
}
const jsonObj = jsonValue as Record<string, unknown>;
if (typeof jsonObj.network === 'string' &&
typeof jsonObj.station === 'string' &&
typeof jsonObj.location === 'string' &&
typeof jsonObj.channel === 'string') {
return true;
} else {
throw new TypeError("json datasource is not valid for FDSN Availability");
}
}