-
Notifications
You must be signed in to change notification settings - Fork 4
/
test.eowcs.html
1026 lines (1013 loc) · 45.5 KB
/
test.eowcs.html
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.12.0.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://www.rfk.id.au/static/scratch/jquery.xmlns.js"></script>
<script type="text/javascript" src="http://code.jquery.com/qunit/qunit-1.12.0.js"></script>
<script type="text/javascript" src="./build/libcoverage.js"></script>
<script>
$(document).ready(function(){
var baseUrl = "http://www.example.com/";
// namespace shortcuts
var wcsk = WCS.Core.KVP;
var eok = WCS.EO.KVP;
var wcsp = WCS.Core.Parse;
module("WCS.Core.KVP");
test("DescribeEOCoverageSet simple", function() {
var url = eok.describeEOCoverageSetURL(baseUrl, "id1");
equal(url, "http://www.example.com/?service=wcs&version=2.0.0&request=describeeocoverageset&eoid=id1");
});
// TODO: more DescribeEOCoverageSet tests
module("WCS.Core.Parse")
test("Capabilities", function() {
var obj = wcsp.parse($("#capabilities").text());
deepEqual(obj.contents, {
coverages: [{
coverageId: "CoverageID1",
coverageSubtype: "ReferenceableDataset"
}, {
coverageId: "CoverageID2",
coverageSubtype: "RectifiedDataset"
}, {
coverageId: "CoverageID3",
coverageSubtype: "RectifiedDataset"
}, {
coverageId: "MosaicID1",
coverageSubtype: "RectifiedStitchedMosaic"
}],
datasetSeries: [{
datasetSeriesId: "SeriesID1",
timePeriod: [
new Date("2006-08-16T00:00:00"),
new Date("2006-08-31T00:00:00")
]
}]
});
});
test("CoverageDescriptions", function() {
var obj = wcsp.parse($("#coverageDescriptions").text());
deepEqual(obj, {
coverageDescriptions: [{
coverageId: "CoverageID1",
coverageSubtype: "RectifiedDataset",
dimensions: 2,
bounds: {
projection: "http://www.opengis.net/def/crs/EPSG/0/4326",
lower: [32.26692700, 8.77892600],
upper: [46.21538200, 25.09349500]
},
envelope: {
low: [0, 0],
high: [538, 447]
},
size: [539, 448],
offsetVectors: [
[0.0, 0.03139097],
[-0.03137006, 0.0]
],
resolution: [-0.03137006, 0.03139097],
origin: [46.24910355, 8.48775578],
rangeType: [{
name: "Band1_uint16",
description: "first band",
uom: "W.m-2.sr-1.nm-1",
nilValues: [{
value: 0,
reason: "http://www.opengis.net/def/nil/OGC/0/unknown"
}],
allowedValues: [0, 65535],
significantFigures: 5
}, {
name: "Band2_uint16",
description: "second band",
uom: "W.m-2.sr-1.nm-1",
nilValues: [{
value: 0,
reason: "http://www.opengis.net/def/nil/OGC/0/unknown"
}],
allowedValues: [0, 65535],
significantFigures: 5
}, {
name: "Band3_uint16",
description: "third band",
uom: "W.m-2.sr-1.nm-1",
nilValues: [{
value: 0,
reason: "http://www.opengis.net/def/nil/OGC/0/unknown"
}],
allowedValues: [0, 65535],
significantFigures: 5
}],
nativeFormat: "",
footprint: [46.215382038266426, 11.452164999301536, 46.077138992332522, 12.56460056524387, 45.898160545555285, 13.88709473239655, 45.680873827856274, 15.27428923693798, 45.449785763554488, 16.732634573806106, 45.051916790463871, 18.910935999726473, 44.748011699503031, 20.408605523933062, 44.411941287675177, 21.96696659827764, 44.042016022159309, 23.519043285242258, 43.643722088460834, 25.093495248306709, 42.820580145843472, 24.697623348710682, 41.526815857193817, 24.095725514178625, 40.080867763238736, 23.448735861981131, 39.025151818307243, 22.989465254572469, 37.85145204973027, 22.50232224402901, 36.642481720935422, 22.01522231099019, 35.307014823570611, 21.498852478425345, 33.815137282909021, 20.944158667755332, 32.266926679766343, 20.386391220319478, 32.473013412727383, 19.564204682221426, 32.79995702514136, 18.208092189126496, 33.156754966055587, 16.635974830934515, 33.490105968579719, 15.045830395932443, 33.802420221893549, 13.468673053964881, 34.117627714568791, 11.788656279967018, 34.404759326849735, 10.10198645739054, 34.612069910182186, 8.778925655898064, 35.937735362108867, 9.065762626406386, 37.042634504980391, 9.314689072633191, 38.211692868275371, 9.571219329906695, 39.708832350160876, 9.910891562982675, 41.235238659326725, 10.256936653724585, 42.571739065122323, 10.570638082577355, 43.567273827516843, 10.804735163945022, 44.657040223845229, 11.06940217936636, 45.550039415025189, 11.28225456261711, 46.215382038266426, 11.452164999301536],
timePeriod: [
new Date("2006-08-22T09:20:58Z"),
new Date("2006-08-22T09:24:15Z")
]
}]
});
// TODO: not yet complete. e.g: resolution...
});
test("ReferenceableEOCoverageSet", function() {
var obj = wcsp.parse($("#referenceableEOCoverageSet").text());
deepEqual(obj, {
"coverageDescriptions": [
{
"bounds": {
"lower": [
33.422628,
52.417524
],
"projection": "http://www.opengis.net/def/crs/EPSG/0/4326",
"upper": [
47.516604,
69.658988
]
},
"coverageId": "MER_FRS_1PNPDE20111101_063210_000001973108_00135_50580_4961",
"coverageSubtype": "ReferenceableDataset",
"dimensions": 2,
"envelope": {
"high": [
4480,
4480
],
"low": [
0,
0
]
},
"offsetVectors": [],
"origin": undefined,
"rangeType": [
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 first band",
"name": "MERIS_radiance_01_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 second band",
"name": "MERIS_radiance_02_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 third band",
"name": "MERIS_radiance_03_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 fourth band",
"name": "MERIS_radiance_04_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 fifth band",
"name": "MERIS_radiance_05_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 sixth band",
"name": "MERIS_radiance_06_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 seventh band",
"name": "MERIS_radiance_07_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 eighth band",
"name": "MERIS_radiance_08_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 ninth band",
"name": "MERIS_radiance_09_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 tenth band",
"name": "MERIS_radiance_10_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 eleventh band",
"name": "MERIS_radiance_11_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 twelfth band",
"name": "MERIS_radiance_12_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint 16 thirteenth band",
"name": "MERIS_radiance_13_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 fourteenth band",
"name": "MERIS_radiance_14_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
},
{
"allowedValues": [
0,
65535
],
"description": "MERIS uint16 fifteenth band",
"name": "MERIS_radiance_15_uint16",
"nilValues": [
{
"reason": "http://www.opengis.net/def/nil/OGC/0/unknown",
"value": 0
}
],
"significantFigures": 5,
"uom": "W.m-2.sr-1.nm-1"
}
],
"resolution": [],
"size": [
4481,
4481
],
"nativeFormat": "image/tiff"
}
],
"datasetSeriesDescriptions": [
{
"datasetSeriesId": "MERIS_FRS_L1",
"timePeriod": [
new Date("2005-11-05T07:54:02Z"),
new Date("2012-02-29T06:38:23Z")
]
}
]
});
});
// TODO: parse EOCoverageSetDescription
});
</script>
<script type="text/xml" id="capabilities">
<wcs:Capabilities xmlns:crs="http://www.opengis.net/wcs/crs/1.0" xmlns:wcs="http://www.opengis.net/wcs/2.0" xmlns:scal="http://www.opengis.net/wcs/scaling/1.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:rsub="http://www.opengis.net/wcs/range-subsetting/1.0" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:int="http://www.opengis.net/wcs/interpolation/1.0" xmlns:eop="http://www.opengis.net/eop/2.0" xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:gmlcov="http://www.opengis.net/gmlcov/1.0" xmlns:wcseo="http://www.opengis.net/wcs/wcseo/1.0" xmlns:om="http://www.opengis.net/om/2.0" xmlns:ogc="http://www.opengis.net/ogc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" updateSequence="20131219T132000Z" version="2.0.1" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd http://www.opengis.net/wcs/wcseo/1.0 http://schemas.opengis.net/wcs/wcseo/1.0/wcsEOAll.xsd">
<ows:ServiceIdentification>
<ows:Title>Test</ows:Title>
<ows:Abstract>Test Abstract</ows:Abstract>
<ows:Keywords>
<ows:Keyword>KeywordA</ows:Keyword>
<ows:Keyword>KeywordB</ows:Keyword>
<ows:Keyword>KeywordC</ows:Keyword>
</ows:Keywords>
<ows:ServiceType codeSpace="OGC">OGC WCS</ows:ServiceType>
<ows:ServiceTypeVersion>2.0.0</ows:ServiceTypeVersion>
<ows:Profile>http://www.opengis.net/spec/WCS_application-profile_earth-observation/1.0/conf/eowcs</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_application-profile_earth-observation/1.0/conf/eowcs_get-kvp</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS/2.0/conf/core</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_protocol-binding_get-kvp/1.0/conf/get-kvp</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_protocol-binding_post-xml/1.0/conf/post-xml</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_service-model_crs-predefined/1.0/conf/crs-predefined</ows:Profile>
<ows:Profile>http://www.placeholder.com/IMAGECRS</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_encoding_geotiff/1.0/conf/geotiff</ows:Profile>
<ows:Profile>http://www.placeholder.com/GML_and_GeoTIFF</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_service-model_scaling+interpolation/1.0/conf/scaling+interpolation</ows:Profile>
<ows:Profile>http://www.opengis.net/spec/WCS_service-model_band-subsetting/1.0/conf/band-subsetting</ows:Profile>
<ows:Fees>No Fee</ows:Fees>
<ows:AccessConstraints>No constraint</ows:AccessConstraints>
</ows:ServiceIdentification>
<ows:ServiceProvider>
<ows:ProviderName>Provider Inc.</ows:ProviderName>
<ows:ProviderSite xlink:href="http://www.example.com" xlink:type="simple" />
<ows:ServiceContact>
<ows:IndividualName>John Doe</ows:IndividualName>
<ows:PositionName>CEO</ows:PositionName>
<ows:ContactInfo>
<ows:Phone>
<ows:Voice>01/2345678</ows:Voice>
<ows:Facsimile>01/23456789</ows:Facsimile>
</ows:Phone>
<ows:Address>
<ows:DeliveryPoint>Somestreet 1/2</ows:DeliveryPoint>
<ows:City>Fooville</ows:City>
<ows:AdministrativeArea>Foostate</ows:AdministrativeArea>
<ows:PostalCode>12345</ows:PostalCode>
<ows:Country>United States of Foo</ows:Country>
<ows:ElectronicMailAddress>john.doe@example.com</ows:ElectronicMailAddress>
</ows:Address>
<ows:OnlineResource xlink:href="http://www.example.org" xlink:type="simple" />
<ows:HoursOfService>Mon - Fri 10:30 - 17:00</ows:HoursOfService>
<ows:ContactInstructions>E-mails are usually answered within 3 working days.</ows:ContactInstructions>
</ows:ContactInfo>
<ows:Role>Service provider</ows:Role>
</ows:ServiceContact>
</ows:ServiceProvider>
<ows:OperationsMetadata>
<ows:Operation name="GetCapabilities">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://example.com/ows?" xlink:type="simple" />
<ows:Post xlink:href="http://example.com/ows?" xlink:type="simple">
<ows:Constraint name="PostEncoding">
<ows:AllowedValues>
<ows:Value>XML</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Post>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
<ows:Operation name="DescribeCoverage">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://example.com/ows?" xlink:type="simple" />
<ows:Post xlink:href="http://example.com/ows?" xlink:type="simple">
<ows:Constraint name="PostEncoding">
<ows:AllowedValues>
<ows:Value>XML</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Post>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
<ows:Operation name="GetCoverage">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://example.com/ows?" xlink:type="simple" />
<ows:Post xlink:href="http://example.com/ows?" xlink:type="simple">
<ows:Constraint name="PostEncoding">
<ows:AllowedValues>
<ows:Value>XML</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Post>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
<ows:Operation name="DescribeEOCoverageSet">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://example.com/ows?" xlink:type="simple" />
<ows:Post xlink:href="http://example.com/ows?" xlink:type="simple">
<ows:Constraint name="PostEncoding">
<ows:AllowedValues>
<ows:Value>XML</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Post>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
</ows:OperationsMetadata>
<wcs:ServiceMetadata>
<wcs:formatSupported>image/tiff</wcs:formatSupported>
<wcs:formatSupported>image/jp2</wcs:formatSupported>
<wcs:formatSupported>application/x-netcdf</wcs:formatSupported>
<wcs:formatSupported>application/x-hdf</wcs:formatSupported>
<wcs:formatSupported>image/png</wcs:formatSupported>
<wcs:Extension>
<crs:CrsMetadata>
<crs:crsSupported>http://www.opengis.net/def/crs/EPSG/0/4326</crs:crsSupported>
<crs:crsSupported>http://www.opengis.net/def/crs/EPSG/0/3857</crs:crsSupported>
<crs:crsSupported>http://www.opengis.net/def/crs/EPSG/0/900913</crs:crsSupported>
<crs:crsSupported>http://www.opengis.net/def/crs/EPSG/0/3035</crs:crsSupported>
</crs:CrsMetadata>
<int:InterpolationMetadata>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/average</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/nearest-neighbour</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/bilinear</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/cubic</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/cubic-spline</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/lanczos</int:InterpolationSupported>
<int:InterpolationSupported>http://www.opengis.net/def/interpolation/OGC/1/mode</int:InterpolationSupported>
</int:InterpolationMetadata>
</wcs:Extension>
</wcs:ServiceMetadata>
<wcs:Contents>
<wcs:CoverageSummary>
<wcs:CoverageId>CoverageID1</wcs:CoverageId>
<wcs:CoverageSubtype>ReferenceableDataset</wcs:CoverageSubtype>
</wcs:CoverageSummary>
<wcs:CoverageSummary>
<wcs:CoverageId>CoverageID2</wcs:CoverageId>
<wcs:CoverageSubtype>RectifiedDataset</wcs:CoverageSubtype>
</wcs:CoverageSummary>
<wcs:CoverageSummary>
<wcs:CoverageId>CoverageID3</wcs:CoverageId>
<wcs:CoverageSubtype>RectifiedDataset</wcs:CoverageSubtype>
</wcs:CoverageSummary>
<wcs:CoverageSummary>
<wcs:CoverageId>MosaicID1</wcs:CoverageId>
<wcs:CoverageSubtype>RectifiedStitchedMosaic</wcs:CoverageSubtype>
</wcs:CoverageSummary>
<wcs:Extension>
<wcseo:DatasetSeriesSummary>
<ows:WGS84BoundingBox>
<ows:LowerCorner>-4.04296900 32.08007800</ows:LowerCorner>
<ows:UpperCorner>33.13476600 45.17578100</ows:UpperCorner>
</ows:WGS84BoundingBox>
<wcseo:DatasetSeriesId>SeriesID1</wcseo:DatasetSeriesId>
<gml:TimePeriod gml:id="SeriesID1_timeperiod">
<gml:beginPosition>2006-08-16T00:00:00</gml:beginPosition>
<gml:endPosition>2006-08-31T00:00:00</gml:endPosition>
</gml:TimePeriod>
</wcseo:DatasetSeriesSummary>
</wcs:Extension>
</wcs:Contents>
</wcs:Capabilities>
</script>
<script type="text/xml" id="coverageDescriptions">
<wcs:CoverageDescriptions xmlns:eop="http://www.opengis.net/eop/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmlcov="http://www.opengis.net/gmlcov/1.0" xmlns:om="http://www.opengis.net/om/2.0" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:wcs="http://www.opengis.net/wcs/2.0" xmlns:wcseo="http://www.opengis.net/wcs/wcseo/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wcseo/1.0 http://schemas.opengis.net/wcseo/1.0/wcsEOAll.xsd">
<wcs:CoverageDescription gml:id="CoverageID1">
<gml:boundedBy>
<gml:Envelope axisLabels="lat long" srsDimension="2" srsName="http://www.opengis.net/def/crs/EPSG/0/4326" uomLabels="deg deg">
<gml:lowerCorner>32.26692700 8.77892600</gml:lowerCorner>
<gml:upperCorner>46.21538200 25.09349500</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<wcs:CoverageId>CoverageID1</wcs:CoverageId>
<gmlcov:metadata>
<wcseo:EOMetadata>
<eop:EarthObservation gml:id="eop_CoverageID1" xmlns:eop="http://www.opengis.net/eop/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:om="http://www.opengis.net/om/2.0" xmlns:swe="http://www.opengis.net/swe/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/opt/2.0 ../xsd/opt.xsd">
<om:phenomenonTime>
<gml:TimePeriod gml:id="tp_CoverageID1">
<gml:beginPosition>2006-08-22T09:20:58Z</gml:beginPosition>
<gml:endPosition>2006-08-22T09:24:15Z</gml:endPosition>
</gml:TimePeriod>
</om:phenomenonTime>
<om:featureOfInterest>
<eop:Footprint gml:id="footprint_MER_FRS_1PNPDE20060822_092058_000001972050_00308_23408_0077_uint16_reduced_compressed">
<eop:multiExtentOf>
<gml:MultiSurface gml:id="multisurface_MER_FRS_1PNPDE20060822_092058_000001972050_00308_23408_0077_uint16_reduced_compressed" srsName="EPSG:4326">
<gml:surfaceMember>
<gml:Polygon gml:id="polygon_MER_FRS_1PNPDE20060822_092058_000001972050_00308_23408_0077_uint16_reduced_compressed">
<gml:exterior>
<gml:LinearRing>
<gml:posList>46.215382038266426 11.452164999301536 46.077138992332522 12.56460056524387 45.898160545555285 13.88709473239655 45.680873827856274 15.27428923693798 45.449785763554488 16.732634573806106 45.051916790463871 18.910935999726473 44.748011699503031 20.408605523933062 44.411941287675177 21.96696659827764 44.042016022159309 23.519043285242258 43.643722088460834 25.093495248306709 42.820580145843472 24.697623348710682 41.526815857193817 24.095725514178625 40.080867763238736 23.448735861981131 39.025151818307243 22.989465254572469 37.85145204973027 22.50232224402901 36.642481720935422 22.01522231099019 35.307014823570611 21.498852478425345 33.815137282909021 20.944158667755332 32.266926679766343 20.386391220319478 32.473013412727383 19.564204682221426 32.79995702514136 18.208092189126496 33.156754966055587 16.635974830934515 33.490105968579719 15.045830395932443 33.802420221893549 13.468673053964881 34.117627714568791 11.788656279967018 34.404759326849735 10.10198645739054 34.612069910182186 8.778925655898064 35.937735362108867 9.065762626406386 37.042634504980391 9.314689072633191 38.211692868275371 9.571219329906695 39.708832350160876 9.910891562982675 41.235238659326725 10.256936653724585 42.571739065122323 10.570638082577355 43.567273827516843 10.804735163945022 44.657040223845229 11.06940217936636 45.550039415025189 11.28225456261711 46.215382038266426 11.452164999301536</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
</gml:MultiSurface>
</eop:multiExtentOf>
</eop:Footprint>
</om:featureOfInterest>
</eop:EarthObservation>
</wcseo:EOMetadata>
</gmlcov:metadata>
<gml:domainSet>
<gml:RectifiedGrid dimension="2" gml:id="CoverageID1_grid">
<gml:limits>
<gml:GridEnvelope>
<gml:low>0 0</gml:low>
<gml:high>538 447</gml:high>
</gml:GridEnvelope>
</gml:limits>
<gml:axisLabels>lat long</gml:axisLabels>
<gml:origin>
<gml:Point gml:id="CoverageID1_grid_origin" srsName="http://www.opengis.net/def/crs/EPSG/0/4326">
<gml:pos>46.24910355 8.48775578</gml:pos>
</gml:Point>
</gml:origin>
<gml:offsetVector srsName="http://www.opengis.net/def/crs/EPSG/0/4326">0.0 0.03139097</gml:offsetVector>
<gml:offsetVector srsName="http://www.opengis.net/def/crs/EPSG/0/4326">-0.03137006 0.0</gml:offsetVector>
</gml:RectifiedGrid>
</gml:domainSet>
<gmlcov:rangeType>
<swe:DataRecord>
<swe:field name="Band1_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>first band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="Band2_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>second band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="Band3_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>third band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
</swe:DataRecord>
</gmlcov:rangeType>
<wcs:ServiceParameters>
<wcs:CoverageSubtype>RectifiedDataset</wcs:CoverageSubtype>
</wcs:ServiceParameters>
</wcs:CoverageDescription>
</wcs:CoverageDescriptions>
</script>
<script type="text/xml" id="referenceableEOCoverageSet">
<wcseo:EOCoverageSetDescription xmlns:eop="http://www.opengis.net/eop/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmlcov="http://www.opengis.net/gmlcov/1.0" xmlns:om="http://www.opengis.net/om/2.0" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:wcs="http://www.opengis.net/wcs/2.0" xmlns:wcseo="http://www.opengis.net/wcs/wcseo/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" numberMatched="1" numberReturned="1" xsi:schemaLocation="http://www.opengis.net/wcseo/1.0 http://schemas.opengis.net/wcseo/1.0/wcsEOAll.xsd">
<wcs:CoverageDescriptions>
<wcs:CoverageDescription gml:id="MER_FRS_1PNPDE20111101_063210_000001973108_00135_50580_4961">
<gml:boundedBy>
<gml:Envelope axisLabels="lat long" srsDimension="2" srsName="http://www.opengis.net/def/crs/EPSG/0/4326" uomLabels="deg deg">
<gml:lowerCorner>33.42262800 52.41752400</gml:lowerCorner>
<gml:upperCorner>47.51660400 69.65898800</gml:upperCorner>
</gml:Envelope>
</gml:boundedBy>
<wcs:CoverageId>MER_FRS_1PNPDE20111101_063210_000001973108_00135_50580_4961</wcs:CoverageId>
<gmlcov:metadata>
<gmlcov:Extension>...</gmlcov:Extension>
</gmlcov:metadata>
<gml:domainSet>
<gml:ReferenceableGrid dimension="2" gml:id="MER_FRS_1PNPDE20111101_063210_000001973108_00135_50580_4961_grid">
<gml:limits>
<gml:GridEnvelope>
<gml:low>0 0</gml:low>
<gml:high>4480 4480</gml:high>
</gml:GridEnvelope>
</gml:limits>
<gml:axisLabels>lat long</gml:axisLabels>
</gml:ReferenceableGrid>
</gml:domainSet>
<gmlcov:rangeType>
<swe:DataRecord>
<swe:field name="MERIS_radiance_01_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 first band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_02_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 second band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_03_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 third band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_04_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 fourth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_05_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 fifth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_06_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 sixth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_07_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 seventh band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_08_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 eighth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_09_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 ninth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_10_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 tenth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_11_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 eleventh band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_12_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 twelfth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_13_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint 16 thirteenth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_14_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 fourteenth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
<swe:field name="MERIS_radiance_15_uint16">
<swe:Quantity definition="http://www.opengis.net/def/property/OGC/0/Radiance">
<swe:description>MERIS uint16 fifteenth band</swe:description>
<swe:nilValues>
<swe:NilValues>
<swe:nilValue reason="http://www.opengis.net/def/nil/OGC/0/unknown">0</swe:nilValue>
</swe:NilValues>
</swe:nilValues>
<swe:uom code="W.m-2.sr-1.nm-1" />
<swe:constraint>
<swe:AllowedValues>
<swe:interval>0 65535</swe:interval>
<swe:significantFigures>5</swe:significantFigures>
</swe:AllowedValues>
</swe:constraint>
</swe:Quantity>
</swe:field>
</swe:DataRecord>
</gmlcov:rangeType>
<wcs:ServiceParameters>
<wcs:CoverageSubtype>ReferenceableDataset</wcs:CoverageSubtype>
<wcs:nativeFormat>image/tiff</wcs:nativeFormat>
</wcs:ServiceParameters>
</wcs:CoverageDescription>
</wcs:CoverageDescriptions>
<wcseo:DatasetSeriesDescriptions>
<wcseo:DatasetSeriesDescription gml:id="MERIS_FRS_L1">
<gml:boundedBy>
<gml:Envelope axisLabels="lat long" srsDimension="2" srsName="http://www.opengis.net/def/crs/EPSG/0/4326" uomLabels="deg deg">
<gml:lowerCorner>3.29173100 22.46418200</gml:lowerCorner>
<gml:upperCorner>78.12852100 93.96976400</gml:upperCorner>
</gml:Envelope>