@opengeoweb/webmap 15.3.0 → 17.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/index.esm.js +390 -156
- package/package.json +2 -2
- package/src/index.d.ts +0 -16
- package/src/lib/components/LoadDurationCounter.d.ts +0 -17
- package/src/lib/components/LoadDurationCounter.spec.d.ts +0 -1
- package/src/lib/components/WMBBOX.d.ts +0 -32
- package/src/lib/components/WMBBOX.spec.d.ts +0 -1
- package/src/lib/components/WMConstants.d.ts +0 -31
- package/src/lib/components/WMImage.d.ts +0 -111
- package/src/lib/components/WMImage.spec.d.ts +0 -1
- package/src/lib/components/WMImageStore.d.ts +0 -61
- package/src/lib/components/WMImageStore.spec.d.ts +0 -1
- package/src/lib/components/WMJSDimension.d.ts +0 -126
- package/src/lib/components/WMJSDimension.spec.d.ts +0 -1
- package/src/lib/components/WMJSDimensionModes.d.ts +0 -15
- package/src/lib/components/WMJSDimensionModes.spec.d.ts +0 -1
- package/src/lib/components/WMJSTools.d.ts +0 -62
- package/src/lib/components/WMJSTools.spec.d.ts +0 -1
- package/src/lib/components/WMLayer.d.ts +0 -117
- package/src/lib/components/WMLayer.spec.d.ts +0 -1
- package/src/lib/components/WMLayerTypes.d.ts +0 -65
- package/src/lib/components/WMLayerUtils.d.ts +0 -22
- package/src/lib/components/WMLegend.d.ts +0 -6
- package/src/lib/components/WMLegend.spec.d.ts +0 -1
- package/src/lib/components/WMListener.d.ts +0 -57
- package/src/lib/components/WMListener.spec.d.ts +0 -1
- package/src/lib/components/WMProjection.d.ts +0 -17
- package/src/lib/components/WMTime.d.ts +0 -44
- package/src/lib/components/WMTime.spec.d.ts +0 -1
- package/src/lib/components/WMTimeTypes.d.ts +0 -19
- package/src/lib/components/WMXMLParser.d.ts +0 -9
- package/src/lib/components/WMXMLParser.spec.d.ts +0 -1
- package/src/lib/components/index.d.ts +0 -25
- package/src/lib/components/makeHashUrlForGeoReferencedImage.d.ts +0 -6
- package/src/lib/components/makeHashUrlForGeoReferencedImage.spec.d.ts +0 -1
- package/src/lib/components/types.d.ts +0 -231
- package/src/lib/index.d.ts +0 -6
- package/src/lib/query/fakeApiWmtsQueries.d.ts +0 -208
- package/src/lib/query/queryConstants.d.ts +0 -7
- package/src/lib/query/queryWMS.d.ts +0 -69
- package/src/lib/query/queryWMS.spec.d.ts +0 -1
- package/src/lib/specs/getCapabilitySpecs/WMS111GetCapabilitiesGeoServicesRADAR.d.ts +0 -1
- package/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesHarmN25.d.ts +0 -2
- package/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritAndReplaceLayerprops.d.ts +0 -2
- package/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritLayerprops.d.ts +0 -2
- package/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritLayerpropsToLayerTree.d.ts +0 -76
- package/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithoutInheritLayerprops.d.ts +0 -2
- package/src/lib/specs/getCapabilitySpecs/WMSGetCapabilitiesMissingLegend.d.ts +0 -1
- package/src/lib/specs/getCapabilitySpecs/WMSSmartMet.d.ts +0 -2
- package/src/lib/specs/getCapabilitySpecs/radarGetCapabilities.d.ts +0 -244
- package/src/lib/specs/index.d.ts +0 -93
- package/src/lib/specs/layerSpecs.d.ts +0 -34
- package/src/lib/specs/mockGetCapabilities.d.ts +0 -90
- package/src/lib/utils/consoleErrorMessages.d.ts +0 -12
- package/src/lib/utils/fakeMaxAgeResponses.d.ts +0 -1
- package/src/lib/utils/getCapabilities/getWMSServiceId.d.ts +0 -10
- package/src/lib/utils/getCapabilities/index.d.ts +0 -4
- package/src/lib/utils/getCapabilities/utils.d.ts +0 -64
- package/src/lib/utils/getCapabilities/utils.spec.d.ts +0 -1
- package/src/lib/utils/getCapabilities/wmsQueryClient.d.ts +0 -7
- package/src/lib/utils/i18n.d.ts +0 -6
- package/src/lib/utils/index.d.ts +0 -3
- package/src/lib/utils/tilesettings.d.ts +0 -27
- package/src/lib/utils/utils.d.ts +0 -31
- package/src/lib/utils/utils.spec.d.ts +0 -1
package/index.esm.js
CHANGED
|
@@ -345,11 +345,12 @@ function _regeneratorRuntime() {
|
|
|
345
345
|
* Copyright 2025 - Finnish Meteorological Institute (FMI)
|
|
346
346
|
* Copyright 2025 - The Norwegian Meteorological Institute (MET Norway)
|
|
347
347
|
* */
|
|
348
|
-
|
|
349
|
-
|
|
348
|
+
|
|
349
|
+
var WMImageStoreLoadType = /*#__PURE__*/function (WMImageStoreLoadType) {
|
|
350
350
|
WMImageStoreLoadType["PREFETCH"] = "A";
|
|
351
351
|
WMImageStoreLoadType["GETMAP"] = "B";
|
|
352
|
-
|
|
352
|
+
return WMImageStoreLoadType;
|
|
353
|
+
}({});
|
|
353
354
|
var LoadDurationCounter = /*#__PURE__*/function () {
|
|
354
355
|
function LoadDurationCounter() {
|
|
355
356
|
this._loadingListForIds = new Map();
|
|
@@ -408,6 +409,7 @@ var LoadDurationCounter = /*#__PURE__*/function () {
|
|
|
408
409
|
totalLoading: 0,
|
|
409
410
|
found: false
|
|
410
411
|
});
|
|
412
|
+
|
|
411
413
|
// If nothing loading, just return 100 %
|
|
412
414
|
if (numLoadingDoneTotal.totalLoading === 0) {
|
|
413
415
|
return {
|
|
@@ -416,6 +418,7 @@ var LoadDurationCounter = /*#__PURE__*/function () {
|
|
|
416
418
|
totalLoading: 0
|
|
417
419
|
};
|
|
418
420
|
}
|
|
421
|
+
|
|
419
422
|
// Round upwards to percentages
|
|
420
423
|
return {
|
|
421
424
|
percentage: Math.round(numLoadingDoneTotal.doneLoading / numLoadingDoneTotal.totalLoading * 100),
|
|
@@ -443,6 +446,7 @@ var LoadDurationCounter = /*#__PURE__*/function () {
|
|
|
443
446
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
444
447
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
445
448
|
* */
|
|
449
|
+
|
|
446
450
|
/**
|
|
447
451
|
* Makes hashed georeferenced url without width, height and bbox
|
|
448
452
|
* @param url
|
|
@@ -478,6 +482,7 @@ var makeHashUrlForGeoReferencedImage = function makeHashUrlForGeoReferencedImage
|
|
|
478
482
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
479
483
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
480
484
|
* */
|
|
485
|
+
|
|
481
486
|
var WMEmptyLayerName = 'empty_layer';
|
|
482
487
|
var WMEmptyLayerTitle = 'empty layer';
|
|
483
488
|
var WMDateOutSideRange = 'outside range';
|
|
@@ -490,7 +495,7 @@ var WMSVersion = {
|
|
|
490
495
|
version111: '1.1.1',
|
|
491
496
|
version130: '1.3.0'
|
|
492
497
|
};
|
|
493
|
-
var WMProj4Defs = [[PROJECTION.EPSG_4326.value, '+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees'], [PROJECTION.EPSG_4269.value, '+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees'], [PROJECTION.EPSG_3575.value, '+proj=laea +lat_0=90 +lon_0=10 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs'], [PROJECTION.EPSG_3785.value, '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs'], [PROJECTION.EPSG_3857.value, '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs'], [PROJECTION.EPSG_3411.value, '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs'], [PROJECTION.EPSG_3412.value, '+proj=stere +lat_0=-90 +lat_ts=-70 +lon_0=0 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs'], [PROJECTION.EPSG_28992.value, '+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +units=m +no_defs <>'], [PROJECTION.EPSG_5041.value, '+proj=stere +lat_0=90 +lon_0=0 +k=0.994 +x_0=2000000 +y_0=2000000 +datum=WGS84 +units=m +no_defs +type=crs'], [PROJECTION.
|
|
498
|
+
var WMProj4Defs = [[PROJECTION.EPSG_4326.value, '+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees'], [PROJECTION.EPSG_4269.value, '+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees'], [PROJECTION.EPSG_3575.value, '+proj=laea +lat_0=90 +lon_0=10 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs'], [PROJECTION.EPSG_3785.value, '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs'], [PROJECTION.EPSG_3857.value, '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs'], [PROJECTION.EPSG_3411.value, '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs'], [PROJECTION.EPSG_3412.value, '+proj=stere +lat_0=-90 +lat_ts=-70 +lon_0=0 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs'], [PROJECTION.EPSG_28992.value, '+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +units=m +no_defs <>'], [PROJECTION.EPSG_5041.value, '+proj=stere +lat_0=90 +lon_0=0 +k=0.994 +x_0=2000000 +y_0=2000000 +datum=WGS84 +units=m +no_defs +type=crs'], [PROJECTION.EPSG_102100.value, '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs'], [PROJECTION.EPSG_3067.value, '+proj=utm +zone=35 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs']];
|
|
494
499
|
var mapImageStoreLength = 1000;
|
|
495
500
|
var bgImageStoreLength = 360;
|
|
496
501
|
var legendImageStoreLength = 500;
|
|
@@ -523,6 +528,7 @@ var isProjectionSupported = function isProjectionSupported(srs, proj4Defintions)
|
|
|
523
528
|
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
524
529
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
525
530
|
* */
|
|
531
|
+
|
|
526
532
|
var generatedLayerIds = 0;
|
|
527
533
|
var generateLayerId = function generateLayerId() {
|
|
528
534
|
generatedLayerIds += 1;
|
|
@@ -547,6 +553,7 @@ var registeredWMLayersForReactLayerId = {};
|
|
|
547
553
|
* @param {WMLayer} wmLayer
|
|
548
554
|
* @param {string} layerId
|
|
549
555
|
*/
|
|
556
|
+
|
|
550
557
|
var registerWMLayer = function registerWMLayer(wmLayer, layerId) {
|
|
551
558
|
registeredWMLayersForReactLayerId[layerId] = wmLayer;
|
|
552
559
|
};
|
|
@@ -554,6 +561,7 @@ var registerWMLayer = function registerWMLayer(wmLayer, layerId) {
|
|
|
554
561
|
* Get the WMLayer from the lookuptable with layerId
|
|
555
562
|
* @param {string} layerId
|
|
556
563
|
*/
|
|
564
|
+
|
|
557
565
|
var getWMLayerById = function getWMLayerById(layerId) {
|
|
558
566
|
return registeredWMLayersForReactLayerId[layerId];
|
|
559
567
|
};
|
|
@@ -569,11 +577,13 @@ var unRegisterAllWMJSLayersAndMaps = function unRegisterAllWMJSLayersAndMaps() {
|
|
|
569
577
|
unRegisterWMJSLayer(layerId);
|
|
570
578
|
});
|
|
571
579
|
};
|
|
580
|
+
|
|
572
581
|
/**
|
|
573
582
|
* Returns the WMJSDimension object for given layerId and dimension name
|
|
574
583
|
* @param layerId The layerId
|
|
575
584
|
* @param dimensionName The dimension to lookup
|
|
576
585
|
*/
|
|
586
|
+
|
|
577
587
|
var getWMJSDimensionForLayerAndDimension = function getWMJSDimensionForLayerAndDimension(layerId, dimensionName) {
|
|
578
588
|
var wmLayer = getWMLayerById(layerId);
|
|
579
589
|
if (!wmLayer || !dimensionName) {
|
|
@@ -590,6 +600,7 @@ var getWMJSDimensionForLayerAndDimension = function getWMJSDimensionForLayerAndD
|
|
|
590
600
|
* @param layerId: The layer id to search the WMJSDimension for
|
|
591
601
|
* @return: The WMJSDimension if found, otherwise null
|
|
592
602
|
*/
|
|
603
|
+
|
|
593
604
|
var getWMJSTimeDimensionForLayerId = function getWMJSTimeDimensionForLayerId(layerId) {
|
|
594
605
|
var wmLayer = getWMLayerById(layerId);
|
|
595
606
|
if (!wmLayer) {
|
|
@@ -610,6 +621,7 @@ var roundWithTimeStep = function roundWithTimeStep(unixTime, timeStep, type) {
|
|
|
610
621
|
}
|
|
611
622
|
return undefined;
|
|
612
623
|
};
|
|
624
|
+
|
|
613
625
|
/* Adds DIM_ for certain dims */
|
|
614
626
|
var getCorrectWMSDimName = function getCorrectWMSDimName(origDimName) {
|
|
615
627
|
/* Adds DIM_ for dimensions other than height or time */
|
|
@@ -638,14 +650,15 @@ var utils = /*#__PURE__*/Object.freeze({
|
|
|
638
650
|
unRegisterWMJSLayer: unRegisterWMJSLayer
|
|
639
651
|
});
|
|
640
652
|
|
|
641
|
-
var DebugType
|
|
642
|
-
(function (DebugType) {
|
|
653
|
+
var DebugType = /*#__PURE__*/function (DebugType) {
|
|
643
654
|
DebugType[DebugType["Log"] = 0] = "Log";
|
|
644
655
|
DebugType[DebugType["Warning"] = 1] = "Warning";
|
|
645
656
|
DebugType[DebugType["Error"] = 2] = "Error";
|
|
646
|
-
|
|
657
|
+
return DebugType;
|
|
658
|
+
}({});
|
|
647
659
|
var debugLogger = function debugLogger(type, message) {
|
|
648
660
|
};
|
|
661
|
+
|
|
649
662
|
/**
|
|
650
663
|
* Checks if variable is defined or not
|
|
651
664
|
* @param variable The variable to check
|
|
@@ -660,6 +673,7 @@ var isDefined = function isDefined(variable) {
|
|
|
660
673
|
}
|
|
661
674
|
return true;
|
|
662
675
|
};
|
|
676
|
+
|
|
663
677
|
/**
|
|
664
678
|
* Converts a variable to an array. If the variable is not an array it will be pushed as the first entry in a new array. If the variable is already an array, nothing will be done.
|
|
665
679
|
* @param array The variable to convert
|
|
@@ -674,6 +688,7 @@ var toArray = function toArray(array) {
|
|
|
674
688
|
}
|
|
675
689
|
return [array];
|
|
676
690
|
};
|
|
691
|
+
|
|
677
692
|
/* Returns all dimensions with its current values as URL */
|
|
678
693
|
var getMapDimURL = function getMapDimURL(layer, dimensionOverride) {
|
|
679
694
|
var request = new URLSearchParams();
|
|
@@ -690,6 +705,7 @@ var getMapDimURL = function getMapDimURL(layer, dimensionOverride) {
|
|
|
690
705
|
});
|
|
691
706
|
return request;
|
|
692
707
|
};
|
|
708
|
+
|
|
693
709
|
/**
|
|
694
710
|
* Parses url and then it it allows for setting / changing key value pairs in that URL (From https://stackoverflow.com/questions/5999118/how-can-i-add-or-update-a-query-string-parameter)
|
|
695
711
|
* @param baseUrl
|
|
@@ -709,6 +725,7 @@ var getUriWithParam = function getUriWithParam(baseUrl, params) {
|
|
|
709
725
|
url.search = urlParams.toString();
|
|
710
726
|
return url.toString();
|
|
711
727
|
};
|
|
728
|
+
|
|
712
729
|
/**
|
|
713
730
|
* Parses url and then it it allows for setting additional key value pairs in that URL (From https://stackoverflow.com/questions/5999118/how-can-i-add-or-update-a-query-string-parameter)
|
|
714
731
|
* @param baseUrl
|
|
@@ -732,11 +749,13 @@ var getUriAddParam = function getUriAddParam(baseUrl, params) {
|
|
|
732
749
|
url.search = urlParams.toString();
|
|
733
750
|
return url.toString();
|
|
734
751
|
};
|
|
752
|
+
|
|
735
753
|
/**
|
|
736
754
|
* Helper function to figure out the styles from the WMS layer object from the WMS GetCapabilities document
|
|
737
755
|
* @param layerObjectFromWMS The layer object from the WMS GetCapabilities JSON document
|
|
738
756
|
* @returns Style[] Array of style objects.
|
|
739
757
|
*/
|
|
758
|
+
|
|
740
759
|
var addStylesForLayer = function addStylesForLayer(layerObjectFromWMS) {
|
|
741
760
|
/* Get the Style object */
|
|
742
761
|
if (!(layerObjectFromWMS != null && layerObjectFromWMS.Style) || typeof layerObjectFromWMS.Style === 'object' && Object.keys(layerObjectFromWMS.Style).length === 0) {
|
|
@@ -746,6 +765,9 @@ var addStylesForLayer = function addStylesForLayer(layerObjectFromWMS) {
|
|
|
746
765
|
if (!layerStyles) {
|
|
747
766
|
return [];
|
|
748
767
|
}
|
|
768
|
+
|
|
769
|
+
/* Loop through the list of styles from the document, create a default object and try to fill in the object with the props from the WMS GetCapabilities document */
|
|
770
|
+
|
|
749
771
|
return layerStyles.map(function (layerStyle) {
|
|
750
772
|
var style = {
|
|
751
773
|
title: 'default',
|
|
@@ -799,6 +821,7 @@ var addDimensionsForLayer = function addDimensionsForLayer(layerObjectFromWMS) {
|
|
|
799
821
|
if ((_layerDimension$attr = layerDimension.attr) != null && _layerDimension$attr.name) {
|
|
800
822
|
dimensionName = layerDimension.attr.name.toLowerCase();
|
|
801
823
|
}
|
|
824
|
+
|
|
802
825
|
/* Find corresponding Dimension Extent if given */
|
|
803
826
|
var dimExtentIndex = layerDimensionsExtents.findIndex(function (layerDimensionsExtent) {
|
|
804
827
|
var _layerDimensionsExten;
|
|
@@ -843,6 +866,7 @@ var addBoundingBoxForLayer = function addBoundingBoxForLayer(layerObjectFromWMS)
|
|
|
843
866
|
}
|
|
844
867
|
return undefined;
|
|
845
868
|
};
|
|
869
|
+
|
|
846
870
|
/**
|
|
847
871
|
* Sorts an array with objects by object key.
|
|
848
872
|
*
|
|
@@ -864,6 +888,7 @@ function sortArrayOfObjectsByKey(array, key) {
|
|
|
864
888
|
return 0;
|
|
865
889
|
});
|
|
866
890
|
}
|
|
891
|
+
|
|
867
892
|
/**
|
|
868
893
|
* Makes a LayerProps object from the WMSLayerFromGetCapabilities and nestedLayerPath
|
|
869
894
|
* @param layer WMSLayerFromGetCapabilities
|
|
@@ -938,36 +963,6 @@ var getFirstPartOfDimensionValueSet = function getFirstPartOfDimensionValueSet(i
|
|
|
938
963
|
return !(inputValue != null && inputValue.indexOf) || !(inputValue != null && inputValue.includes('/')) ? inputValue : inputValue.split('/')[0];
|
|
939
964
|
};
|
|
940
965
|
|
|
941
|
-
/* *
|
|
942
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
943
|
-
* you may not use this file except in compliance with the License.
|
|
944
|
-
* You may obtain a copy of the License at
|
|
945
|
-
*
|
|
946
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
947
|
-
*
|
|
948
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
949
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
950
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
951
|
-
* See the License for the specific language governing permissions and
|
|
952
|
-
* limitations under the License.
|
|
953
|
-
*
|
|
954
|
-
* Copyright 2024 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
955
|
-
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
956
|
-
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
957
|
-
* */
|
|
958
|
-
var fakeMaxAgeResponsesByLayer = {
|
|
959
|
-
'observation:wis2_air_temperature': 600,
|
|
960
|
-
'fmi:observation:lightning': 300,
|
|
961
|
-
'fmi:observation:temperature': 3600,
|
|
962
|
-
'fmi:observation:dewpoint': 3600,
|
|
963
|
-
'fmi:observation:temperature_foreign': 3600,
|
|
964
|
-
'fmi:observation:dewpoint_foreign': 3600,
|
|
965
|
-
'fmi:observation:cloudceiling': 3600,
|
|
966
|
-
'fmi:observation:cloudheight': 3600,
|
|
967
|
-
'fmi:observation:cloudheight_foreign': 3600,
|
|
968
|
-
'fmi:observation:cloudceiling_foreign': 3600
|
|
969
|
-
};
|
|
970
|
-
|
|
971
966
|
/**
|
|
972
967
|
* Returns the current time in ms
|
|
973
968
|
* @returns the current time in ms
|
|
@@ -975,6 +970,7 @@ var fakeMaxAgeResponsesByLayer = {
|
|
|
975
970
|
var getCurrentImageTime = function getCurrentImageTime() {
|
|
976
971
|
return new Date().getTime();
|
|
977
972
|
};
|
|
973
|
+
|
|
978
974
|
/**
|
|
979
975
|
* WMImage provides an API to the HTML image element. It is used for caching and easier access to images.
|
|
980
976
|
*/
|
|
@@ -987,8 +983,26 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
987
983
|
*/
|
|
988
984
|
function WMImage(src, callback, options) {
|
|
989
985
|
var _this = this;
|
|
986
|
+
this.imageLife = void 0;
|
|
987
|
+
this.randomize = void 0;
|
|
988
|
+
this._srcLoaded = void 0;
|
|
989
|
+
this._isLoaded = void 0;
|
|
990
|
+
this._isLoading = void 0;
|
|
991
|
+
this._hasError = void 0;
|
|
992
|
+
this.srcToLoad = void 0;
|
|
993
|
+
this.loadEventCallback = void 0;
|
|
994
|
+
this.el = void 0;
|
|
995
|
+
this.headers = void 0;
|
|
996
|
+
this._imageTimeStampAtError = void 0;
|
|
997
|
+
this._numFailedAttempts = void 0;
|
|
998
|
+
this._loadStartTime = void 0;
|
|
999
|
+
this._loadDuration = void 0;
|
|
1000
|
+
// Maximum age, in seconds, parsed from Cache-Control response header.
|
|
1001
|
+
this._maxAgeSeconds = void 0;
|
|
1002
|
+
this._loadedAtTime = void 0;
|
|
990
1003
|
this._resolveList = [];
|
|
991
1004
|
this.geoReference = null;
|
|
1005
|
+
this.hashUrl = void 0;
|
|
992
1006
|
this._loadDuration = undefined;
|
|
993
1007
|
this._loadStartTime = 0;
|
|
994
1008
|
this.randomize = false;
|
|
@@ -1057,7 +1071,10 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1057
1071
|
this._hasError = false;
|
|
1058
1072
|
this._numFailedAttempts = 0;
|
|
1059
1073
|
this._imageTimeStampAtError = getCurrentImageTime();
|
|
1074
|
+
this._maxAgeSeconds = undefined;
|
|
1075
|
+
this._loadedAtTime = undefined;
|
|
1060
1076
|
}
|
|
1077
|
+
|
|
1061
1078
|
/**
|
|
1062
1079
|
* Returns true if the image has been loaded
|
|
1063
1080
|
*/;
|
|
@@ -1065,7 +1082,10 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1065
1082
|
if (this._isLoading) {
|
|
1066
1083
|
return false;
|
|
1067
1084
|
}
|
|
1068
|
-
|
|
1085
|
+
if (!this._isLoaded) {
|
|
1086
|
+
return false;
|
|
1087
|
+
}
|
|
1088
|
+
return !this.isStale();
|
|
1069
1089
|
};
|
|
1070
1090
|
_proto.isLoadedWithoutErrors = function isLoadedWithoutErrors() {
|
|
1071
1091
|
return this.isLoaded() && !this.hasError();
|
|
@@ -1074,33 +1094,24 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1074
1094
|
return !this._isLoaded && !this._isLoading;
|
|
1075
1095
|
};
|
|
1076
1096
|
_proto.isStale = function isStale() {
|
|
1077
|
-
if (this.
|
|
1078
|
-
|
|
1079
|
-
var layerName = new URL(this.getSrc()).searchParams.get('LAYERS');
|
|
1080
|
-
if (layerName) {
|
|
1081
|
-
var _fakeMaxAgeResponsesB;
|
|
1082
|
-
this._fakeMaxAge = (_fakeMaxAgeResponsesB = fakeMaxAgeResponsesByLayer[layerName]) != null ? _fakeMaxAgeResponsesB : null;
|
|
1083
|
-
} else {
|
|
1084
|
-
this._fakeMaxAge = null;
|
|
1085
|
-
}
|
|
1086
|
-
} catch (_e) {
|
|
1087
|
-
// failed to form URL
|
|
1088
|
-
this._fakeMaxAge = null;
|
|
1089
|
-
}
|
|
1097
|
+
if (!this._isLoaded || this._loadedAtTime === undefined) {
|
|
1098
|
+
return false;
|
|
1090
1099
|
}
|
|
1091
|
-
if (this.
|
|
1100
|
+
if (this._maxAgeSeconds === null || this._maxAgeSeconds === undefined) {
|
|
1092
1101
|
return false;
|
|
1093
1102
|
}
|
|
1094
|
-
var imageAge = getCurrentImageTime() - this.
|
|
1095
|
-
var maxAge = this.
|
|
1103
|
+
var imageAge = getCurrentImageTime() - this._loadedAtTime;
|
|
1104
|
+
var maxAge = this._maxAgeSeconds * 1000;
|
|
1096
1105
|
return imageAge > maxAge;
|
|
1097
1106
|
}
|
|
1107
|
+
|
|
1098
1108
|
/**
|
|
1099
1109
|
* Returns true if the image is still loading
|
|
1100
1110
|
*/;
|
|
1101
1111
|
_proto.isLoading = function isLoading() {
|
|
1102
1112
|
return this._isLoading;
|
|
1103
1113
|
}
|
|
1114
|
+
|
|
1104
1115
|
/**
|
|
1105
1116
|
* Get the amount of milliseconds since the image experienced an image load.
|
|
1106
1117
|
* @returns milliseconds since the image had an error
|
|
@@ -1108,12 +1119,14 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1108
1119
|
_proto.getLastErrorMSecondsAgo = function getLastErrorMSecondsAgo() {
|
|
1109
1120
|
return getCurrentImageTime() - this._imageTimeStampAtError;
|
|
1110
1121
|
}
|
|
1122
|
+
|
|
1111
1123
|
/**
|
|
1112
1124
|
* @returns The number of failed attempts for this image
|
|
1113
1125
|
*/;
|
|
1114
1126
|
_proto.getNumFailedAttempts = function getNumFailedAttempts() {
|
|
1115
1127
|
return this._numFailedAttempts;
|
|
1116
1128
|
}
|
|
1129
|
+
|
|
1117
1130
|
/**
|
|
1118
1131
|
* Set source of image, but it will not load the image yet.
|
|
1119
1132
|
* @param src URL of the image to load
|
|
@@ -1136,18 +1149,21 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1136
1149
|
this._imageTimeStampAtError = getCurrentImageTime();
|
|
1137
1150
|
this._isLoaded = false;
|
|
1138
1151
|
}
|
|
1152
|
+
|
|
1139
1153
|
/**
|
|
1140
1154
|
* Re-intialize the image
|
|
1141
1155
|
*/;
|
|
1142
1156
|
_proto.clear = function clear() {
|
|
1143
1157
|
this.init();
|
|
1144
1158
|
}
|
|
1159
|
+
|
|
1145
1160
|
/**
|
|
1146
1161
|
* Get the URL of the image
|
|
1147
1162
|
*/;
|
|
1148
1163
|
_proto.getSrc = function getSrc() {
|
|
1149
1164
|
return this.srcToLoad;
|
|
1150
1165
|
}
|
|
1166
|
+
|
|
1151
1167
|
/**
|
|
1152
1168
|
* Check if the image has an error
|
|
1153
1169
|
*/;
|
|
@@ -1160,6 +1176,7 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1160
1176
|
resolve == null || resolve(this);
|
|
1161
1177
|
}
|
|
1162
1178
|
}
|
|
1179
|
+
|
|
1163
1180
|
/**
|
|
1164
1181
|
* Start loading the image
|
|
1165
1182
|
*/;
|
|
@@ -1202,8 +1219,39 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1202
1219
|
}
|
|
1203
1220
|
this._load();
|
|
1204
1221
|
};
|
|
1205
|
-
|
|
1222
|
+
WMImage._parseMaxAgeFromCacheControl = function _parseMaxAgeFromCacheControl(cacheControlHeader) {
|
|
1223
|
+
if (!cacheControlHeader) {
|
|
1224
|
+
return null;
|
|
1225
|
+
}
|
|
1226
|
+
var maxAgeMatch = /(?:^|,)\s*max-age=(\d+)/i.exec(cacheControlHeader);
|
|
1227
|
+
if (!maxAgeMatch) {
|
|
1228
|
+
return null;
|
|
1229
|
+
}
|
|
1230
|
+
var parsed = Number(maxAgeMatch[1]);
|
|
1231
|
+
return Number.isFinite(parsed) ? parsed : null;
|
|
1232
|
+
};
|
|
1233
|
+
_proto._setMaxAgeFromResponseHeaders = function _setMaxAgeFromResponseHeaders(response) {
|
|
1234
|
+
this._maxAgeSeconds = WMImage._parseMaxAgeFromCacheControl(response.headers.get('cache-control'));
|
|
1235
|
+
};
|
|
1236
|
+
_proto._updateMaxAgeFromUrl = function _updateMaxAgeFromUrl(url) {
|
|
1206
1237
|
var _this3 = this;
|
|
1238
|
+
fetch(new Request(url), {
|
|
1239
|
+
method: 'GET',
|
|
1240
|
+
mode: 'cors',
|
|
1241
|
+
cache: 'default',
|
|
1242
|
+
headers: new Headers({
|
|
1243
|
+
Range: 'bytes=0-0'
|
|
1244
|
+
})
|
|
1245
|
+
}).then(function (response) {
|
|
1246
|
+
var _response$body;
|
|
1247
|
+
_this3._setMaxAgeFromResponseHeaders(response);
|
|
1248
|
+
void ((_response$body = response.body) == null ? void 0 : _response$body.cancel());
|
|
1249
|
+
})["catch"](function () {
|
|
1250
|
+
// Keep existing behaviour if headers are not readable.
|
|
1251
|
+
});
|
|
1252
|
+
};
|
|
1253
|
+
_proto._getImageWithHeaders = function _getImageWithHeaders(url, headers) {
|
|
1254
|
+
var _this4 = this;
|
|
1207
1255
|
var fetchHeaders = new Headers();
|
|
1208
1256
|
if (headers && headers.length > 0) {
|
|
1209
1257
|
for (var _iterator = _createForOfIteratorHelperLoose(headers), _step; !(_step = _iterator()).done;) {
|
|
@@ -1227,19 +1275,21 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1227
1275
|
return window.btoa(binary);
|
|
1228
1276
|
};
|
|
1229
1277
|
fetch(request, options).then(function (response) {
|
|
1278
|
+
_this4._setMaxAgeFromResponseHeaders(response);
|
|
1230
1279
|
response.arrayBuffer().then(function (buffer) {
|
|
1231
1280
|
var base64Flag = 'data:image/png;base64,';
|
|
1232
1281
|
var imageStr = arrayBufferToBase64(buffer);
|
|
1233
|
-
|
|
1282
|
+
_this4.getElement().src = base64Flag + imageStr;
|
|
1234
1283
|
})["catch"](function () {
|
|
1235
1284
|
debugLogger(DebugType.Error);
|
|
1285
|
+
_this4._loadEvent(true);
|
|
1236
1286
|
});
|
|
1237
1287
|
})["catch"](function () {
|
|
1238
1288
|
debugLogger(DebugType.Error, "Unable to fetch image " + url + " with headers [" + JSON.stringify(headers) + "]");
|
|
1239
1289
|
if (url.startsWith('http://')) {
|
|
1240
1290
|
debugLogger(DebugType.Error);
|
|
1241
1291
|
}
|
|
1242
|
-
|
|
1292
|
+
_this4._loadEvent(true);
|
|
1243
1293
|
});
|
|
1244
1294
|
};
|
|
1245
1295
|
_proto._load = function _load() {
|
|
@@ -1247,14 +1297,19 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1247
1297
|
this._loadStartTime = getCurrentImageTime();
|
|
1248
1298
|
this._hasError = false;
|
|
1249
1299
|
if (this._isLoaded) {
|
|
1250
|
-
this.
|
|
1251
|
-
|
|
1300
|
+
if (!this.isStale()) {
|
|
1301
|
+
this._loadEvent(false);
|
|
1302
|
+
return;
|
|
1303
|
+
}
|
|
1304
|
+
this._isLoaded = false;
|
|
1305
|
+
this._srcLoaded = undefined;
|
|
1252
1306
|
}
|
|
1253
1307
|
this._isLoading = true;
|
|
1254
1308
|
if (!this.srcToLoad) {
|
|
1255
1309
|
this._loadEvent(true);
|
|
1256
1310
|
return;
|
|
1257
1311
|
}
|
|
1312
|
+
|
|
1258
1313
|
/* Allow relative URL's */
|
|
1259
1314
|
if (this.srcToLoad.startsWith('/') && !this.srcToLoad.startsWith('//')) {
|
|
1260
1315
|
var splittedHREF = window.location.href.split('/').filter(function (e) {
|
|
@@ -1263,6 +1318,7 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1263
1318
|
var hostName = splittedHREF[0] + "//" + splittedHREF[1] + "/";
|
|
1264
1319
|
this.srcToLoad = hostName + this.srcToLoad;
|
|
1265
1320
|
}
|
|
1321
|
+
|
|
1266
1322
|
/*
|
|
1267
1323
|
* If the image has already loaded this source succesfully (without error), simply trigger the loadevent.
|
|
1268
1324
|
*/
|
|
@@ -1275,6 +1331,7 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1275
1331
|
this._getImageWithHeaders(this.srcToLoad, this.headers);
|
|
1276
1332
|
} else if (this.randomize) {
|
|
1277
1333
|
/* Do a standard img.src url request */
|
|
1334
|
+
this._maxAgeSeconds = null;
|
|
1278
1335
|
var newSrc = this.srcToLoad;
|
|
1279
1336
|
if (!this.srcToLoad.includes('?')) {
|
|
1280
1337
|
newSrc += '?';
|
|
@@ -1290,8 +1347,9 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1290
1347
|
}
|
|
1291
1348
|
this.getElement().src = newSrc;
|
|
1292
1349
|
} else {
|
|
1293
|
-
//
|
|
1350
|
+
// Keep the browser image loading path for rendering reliability.
|
|
1294
1351
|
this.getElement().src = this.srcToLoad;
|
|
1352
|
+
this._updateMaxAgeFromUrl(this.srcToLoad);
|
|
1295
1353
|
}
|
|
1296
1354
|
};
|
|
1297
1355
|
_proto._loadEvent = function _loadEvent(hasError) {
|
|
@@ -1300,6 +1358,7 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1300
1358
|
this._hasError = hasError;
|
|
1301
1359
|
this._isLoading = false;
|
|
1302
1360
|
this._isLoaded = true;
|
|
1361
|
+
this._loadedAtTime = hasError ? undefined : getCurrentImageTime();
|
|
1303
1362
|
this._srcLoaded = this.srcToLoad;
|
|
1304
1363
|
this._resolveAll();
|
|
1305
1364
|
(_this$loadEventCallba = this.loadEventCallback) == null || _this$loadEventCallba.call(this, this);
|
|
@@ -1307,18 +1366,21 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1307
1366
|
_proto.getLoadDuration = function getLoadDuration() {
|
|
1308
1367
|
return this._loadDuration;
|
|
1309
1368
|
}
|
|
1369
|
+
|
|
1310
1370
|
/**
|
|
1311
1371
|
* Get the width of the current image
|
|
1312
1372
|
*/;
|
|
1313
1373
|
_proto.getWidth = function getWidth() {
|
|
1314
1374
|
return this.el.width;
|
|
1315
1375
|
}
|
|
1376
|
+
|
|
1316
1377
|
/**
|
|
1317
1378
|
* Get the height of the current image
|
|
1318
1379
|
*/;
|
|
1319
1380
|
_proto.getHeight = function getHeight() {
|
|
1320
1381
|
return this.el.height;
|
|
1321
1382
|
}
|
|
1383
|
+
|
|
1322
1384
|
/**
|
|
1323
1385
|
* Get the HTMLImageElement behind the WMImage
|
|
1324
1386
|
*/;
|
|
@@ -1328,11 +1390,11 @@ var WMImage = /*#__PURE__*/function () {
|
|
|
1328
1390
|
return WMImage;
|
|
1329
1391
|
}();
|
|
1330
1392
|
|
|
1331
|
-
var WMImageEventType
|
|
1332
|
-
(function (WMImageEventType) {
|
|
1393
|
+
var WMImageEventType = /*#__PURE__*/function (WMImageEventType) {
|
|
1333
1394
|
WMImageEventType[WMImageEventType["Loaded"] = 0] = "Loaded";
|
|
1334
1395
|
WMImageEventType[WMImageEventType["Deleted"] = 1] = "Deleted";
|
|
1335
|
-
|
|
1396
|
+
return WMImageEventType;
|
|
1397
|
+
}({});
|
|
1336
1398
|
var WMIMAGESTORE_MAX_ALTIMAGES_TO_KEEP = 4;
|
|
1337
1399
|
var WMImageStore = /*#__PURE__*/function () {
|
|
1338
1400
|
/**
|
|
@@ -1341,6 +1403,14 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1341
1403
|
* @param {*} options
|
|
1342
1404
|
*/
|
|
1343
1405
|
function WMImageStore(maxNumberOfImages, options) {
|
|
1406
|
+
this.imagesbysrc = void 0;
|
|
1407
|
+
this.imageLife = void 0;
|
|
1408
|
+
this._imageLifeCounter = void 0;
|
|
1409
|
+
this._loadEventCallbackList = void 0;
|
|
1410
|
+
this._maxNumberOfImages = void 0;
|
|
1411
|
+
this._options = void 0;
|
|
1412
|
+
this.emptyImage = void 0;
|
|
1413
|
+
this.imagesbyGeoRef = void 0;
|
|
1344
1414
|
this.loadDuration = new LoadDurationCounter();
|
|
1345
1415
|
this.imagesbysrc = new Map();
|
|
1346
1416
|
this.imagesbyGeoRef = new Map();
|
|
@@ -1370,6 +1440,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1370
1440
|
eventCallback.callback(_img, eventCallback.id, imageEventType);
|
|
1371
1441
|
}
|
|
1372
1442
|
}
|
|
1443
|
+
|
|
1373
1444
|
/**
|
|
1374
1445
|
* Check if we have similar images with the same source in the pipeline
|
|
1375
1446
|
*/;
|
|
@@ -1415,6 +1486,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1415
1486
|
});
|
|
1416
1487
|
return numLoading;
|
|
1417
1488
|
}
|
|
1489
|
+
|
|
1418
1490
|
/**
|
|
1419
1491
|
* getAltGeoReferencedImage will return an ready and loaded image for similar query parameters as requested.
|
|
1420
1492
|
* This image can be used to display something during the period when the requested image one is still loading.
|
|
@@ -1426,10 +1498,12 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1426
1498
|
*/;
|
|
1427
1499
|
_proto.getAltGeoReferencedImage = function getAltGeoReferencedImage(srcToLoad, _extent, _resolution) {
|
|
1428
1500
|
var imagesbyGeoRefArraySortByImageLife = this.getAltGeoReferencedImages(srcToLoad, _extent, _resolution);
|
|
1501
|
+
|
|
1429
1502
|
// Now filter out the loaded images, which can be used as alternative
|
|
1430
1503
|
var sortByImageLifeFilterdLoaded = imagesbyGeoRefArraySortByImageLife.filter(function (image) {
|
|
1431
1504
|
return image.isLoadedWithoutErrors();
|
|
1432
1505
|
});
|
|
1506
|
+
|
|
1433
1507
|
// Just return most recent available image: TODO: Possibly make use of extent and resolution to find a better one.
|
|
1434
1508
|
// https://gitlab.com/opengeoweb/geoweb-assets/-/issues/4481
|
|
1435
1509
|
return sortByImageLifeFilterdLoaded.length > 0 ? sortByImageLifeFilterdLoaded[0] : false;
|
|
@@ -1439,6 +1513,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1439
1513
|
if (!hashUrl) {
|
|
1440
1514
|
return [];
|
|
1441
1515
|
}
|
|
1516
|
+
|
|
1442
1517
|
// Sort the imagesbyGeoRef array
|
|
1443
1518
|
var imagesbyGeoRefArray = this.imagesbyGeoRef.get(hashUrl);
|
|
1444
1519
|
if (!imagesbyGeoRefArray || imagesbyGeoRefArray.length === 0) {
|
|
@@ -1498,6 +1573,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1498
1573
|
image.imageLife = this._imageLifeCounter;
|
|
1499
1574
|
return image;
|
|
1500
1575
|
}
|
|
1576
|
+
|
|
1501
1577
|
// Create image
|
|
1502
1578
|
if (this.imagesbysrc.size < this._maxNumberOfImages) {
|
|
1503
1579
|
var _newImage = new WMImage(src, function (img) {
|
|
@@ -1509,6 +1585,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1509
1585
|
_newImage.imageLife = this._imageLifeCounter;
|
|
1510
1586
|
return _newImage;
|
|
1511
1587
|
}
|
|
1588
|
+
|
|
1512
1589
|
// We have to reuse an image
|
|
1513
1590
|
var imagesAsList = Array.from(this.imagesbysrc.values()).filter(function (imageBySrc) {
|
|
1514
1591
|
return !imageBySrc || !imageBySrc.isLoading() || imageBySrc.hasError();
|
|
@@ -1535,6 +1612,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1535
1612
|
reuseImage.clear();
|
|
1536
1613
|
}
|
|
1537
1614
|
}
|
|
1615
|
+
|
|
1538
1616
|
// Force return of new image
|
|
1539
1617
|
var newImage = new WMImage(src, function (img) {
|
|
1540
1618
|
_this.imageLoadEventCallback(img, WMImageEventType.Loaded);
|
|
@@ -1565,6 +1643,7 @@ var WMImageStore = /*#__PURE__*/function () {
|
|
|
1565
1643
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
1566
1644
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
1567
1645
|
* */
|
|
1646
|
+
|
|
1568
1647
|
var QUERYWMS_GETCAPABILITIES = 'QUERYWMS_GETCAPABILITIES';
|
|
1569
1648
|
var QUERYWMS_LAYERSTREE = 'QUERYWMS_LAYERSTREE';
|
|
1570
1649
|
var QUERYWMS_SERVICEINFO = 'QUERYWMS_SERVICEINFO';
|
|
@@ -1590,7 +1669,8 @@ var queryWMSKeys = [QUERYWMS_GETCAPABILITIES, QUERYWMS_LAYERSTREE, QUERYWMS_SERV
|
|
|
1590
1669
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
1591
1670
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
1592
1671
|
* */
|
|
1593
|
-
var WMS111GetCapabilitiesGeoServicesRADAR = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE WMT_MS_Capabilities SYSTEM \"http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd\" [\n <!ELEMENT VendorSpecificCapabilities EMPTY>\n]>\n<!-- end of DOCTYPE declaration -->\n<WMT_MS_Capabilities version=\"1.1.1\">\n <Service>\n <Name>OGC:WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <ServerInfo>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</ServerInfo>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>application/vnd.ogc.wms_xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/gif</Format>\n <Format>image/png32</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/vnd.ogc.gml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n <DescribeLayer>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </DescribeLayer>\n <GetLegendGraphic>\n <Format>image/png</Format>\n <Format>image/gif</Format>\n <Format>image/png32</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetLegendGraphic>\n <GetStyles>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetStyles>\n </Request>\n <Exception>\n <Format>application/vnd.ogc.se_xml</Format>\n <Format>application/vnd.ogc.se_inimage</Format>\n <Format>application/vnd.ogc.se_blank</Format>\n </Exception>\n <VendorSpecificCapabilities />\n <UserDefinedSymbolization SupportSLD=\"1\" UserLayer=\"0\" UserStyle=\"1\" RemoteWFS=\"0\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <SRS>EPSG:3411</SRS>\n <SRS>EPSG:3412</SRS>\n <SRS>EPSG:3575</SRS>\n <SRS>EPSG:3857</SRS>\n <SRS>EPSG:4258</SRS>\n <SRS>EPSG:4326</SRS>\n <SRS>CRS:84</SRS>\n <SRS>EPSG:25831</SRS>\n <SRS>EPSG:25832</SRS>\n <SRS>EPSG:28992</SRS>\n <SRS>EPSG:7399</SRS>\n <SRS>EPSG:50001</SRS>\n <SRS>EPSG:54030</SRS>\n <SRS>EPSG:32661</SRS>\n <SRS>EPSG:40000</SRS>\n <SRS>EPSG:900913</SRS>\n <SRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</SRS>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM</Name>\n <Title>Precipitation Radar NL</Title>\n <Abstract>Radar NL</Abstract>\n <KeywordList>\n <Keyword>Radar</Keyword>\n </KeywordList>\n <SRS>EPSG:3411</SRS>\n <BoundingBox SRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <SRS>EPSG:3412</SRS>\n <BoundingBox SRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <SRS>EPSG:3575</SRS>\n <BoundingBox SRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <SRS>EPSG:3857</SRS>\n <BoundingBox SRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <SRS>EPSG:4258</SRS>\n <BoundingBox SRS=\"EPSG:4258\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>EPSG:4326</SRS>\n <BoundingBox SRS=\"EPSG:4326\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>CRS:84</SRS>\n <BoundingBox SRS=\"CRS:84\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>EPSG:25831</SRS>\n <BoundingBox SRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <SRS>EPSG:25832</SRS>\n <BoundingBox SRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <SRS>EPSG:28992</SRS>\n <BoundingBox SRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <SRS>EPSG:7399</SRS>\n <BoundingBox SRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <SRS>EPSG:50001</SRS>\n <BoundingBox SRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <SRS>EPSG:54030</SRS>\n <BoundingBox SRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <SRS>EPSG:32661</SRS>\n <BoundingBox SRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <SRS>EPSG:40000</SRS>\n <BoundingBox SRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <SRS>EPSG:900913</SRS>\n <BoundingBox SRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <SRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</SRS>\n <BoundingBox SRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <LatLonBoundingBox minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <Dimension name=\"time\" units=\"ISO8601\" />\n <Extent name=\"time\" default=\"2021-05-17T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\">2021-03-31T09:25:00Z/2021-05-18T07:45:00Z/PT5M</Extent>\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue-transparent/nearest</Name>\n <Title>precip-blue-transparent/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue-transparent/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-with-range/nearest</Name>\n <Title>precip-with-range/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-with-range/nearest\" />\n </LegendURL>\n </Style>\n <ScaleHint min=\"0\" max=\"10000\" />\n </Layer>\n </Layer>\n </Capability>\n</WMT_MS_Capabilities>";
|
|
1672
|
+
|
|
1673
|
+
var WMS111GetCapabilitiesGeoServicesRADAR = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE WMT_MS_Capabilities SYSTEM \"http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd\" [\n <!ELEMENT VendorSpecificCapabilities EMPTY>\n]>\n<!-- end of DOCTYPE declaration -->\n<WMT_MS_Capabilities version=\"1.1.1\">\n <Service>\n <Name>OGC:WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <ServerInfo>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</ServerInfo>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>application/vnd.ogc.wms_xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/gif</Format>\n <Format>image/png32</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/vnd.ogc.gml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n <DescribeLayer>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </DescribeLayer>\n <GetLegendGraphic>\n <Format>image/png</Format>\n <Format>image/gif</Format>\n <Format>image/png32</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetLegendGraphic>\n <GetStyles>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetStyles>\n </Request>\n <Exception>\n <Format>application/vnd.ogc.se_xml</Format>\n <Format>application/vnd.ogc.se_inimage</Format>\n <Format>application/vnd.ogc.se_blank</Format>\n </Exception>\n <VendorSpecificCapabilities />\n <UserDefinedSymbolization SupportSLD=\"1\" UserLayer=\"0\" UserStyle=\"1\" RemoteWFS=\"0\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <SRS>EPSG:3411</SRS>\n <SRS>EPSG:3412</SRS>\n <SRS>EPSG:3575</SRS>\n <SRS>EPSG:3857</SRS>\n <SRS>EPSG:4258</SRS>\n <SRS>EPSG:4326</SRS>\n <SRS>CRS:84</SRS>\n <SRS>EPSG:25831</SRS>\n <SRS>EPSG:25832</SRS>\n <SRS>EPSG:28992</SRS>\n <SRS>EPSG:7399</SRS>\n <SRS>EPSG:50001</SRS>\n <SRS>EPSG:54030</SRS>\n <SRS>EPSG:40000</SRS>\n <SRS>EPSG:900913</SRS>\n <SRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</SRS>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM</Name>\n <Title>Precipitation Radar NL</Title>\n <Abstract>Radar NL</Abstract>\n <KeywordList>\n <Keyword>Radar</Keyword>\n </KeywordList>\n <SRS>EPSG:3411</SRS>\n <BoundingBox SRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <SRS>EPSG:3412</SRS>\n <BoundingBox SRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <SRS>EPSG:3575</SRS>\n <BoundingBox SRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <SRS>EPSG:3857</SRS>\n <BoundingBox SRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <SRS>EPSG:4258</SRS>\n <BoundingBox SRS=\"EPSG:4258\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>EPSG:4326</SRS>\n <BoundingBox SRS=\"EPSG:4326\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>CRS:84</SRS>\n <BoundingBox SRS=\"CRS:84\" minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <SRS>EPSG:25831</SRS>\n <BoundingBox SRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <SRS>EPSG:25832</SRS>\n <BoundingBox SRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <SRS>EPSG:28992</SRS>\n <BoundingBox SRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <SRS>EPSG:7399</SRS>\n <BoundingBox SRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <SRS>EPSG:50001</SRS>\n <BoundingBox SRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <SRS>EPSG:54030</SRS>\n <BoundingBox SRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <SRS>EPSG:40000</SRS>\n <BoundingBox SRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <SRS>EPSG:900913</SRS>\n <BoundingBox SRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <SRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</SRS>\n <BoundingBox SRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <LatLonBoundingBox minx=\"0.000000\" miny=\"48.895303\" maxx=\"10.856452\" maxy=\"55.973600\" />\n <Dimension name=\"time\" units=\"ISO8601\" />\n <Extent name=\"time\" default=\"2021-05-17T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\">2021-03-31T09:25:00Z/2021-05-18T07:45:00Z/PT5M</Extent>\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue-transparent/nearest</Name>\n <Title>precip-blue-transparent/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue-transparent/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-with-range/nearest</Name>\n <Title>precip-with-range/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-with-range/nearest\" />\n </LegendURL>\n </Style>\n <ScaleHint min=\"0\" max=\"10000\" />\n </Layer>\n </Layer>\n </Capability>\n</WMT_MS_Capabilities>";
|
|
1594
1674
|
|
|
1595
1675
|
/* *
|
|
1596
1676
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -1609,6 +1689,7 @@ var WMS111GetCapabilitiesGeoServicesRADAR = "<?xml version=\"1.0\" encoding=\"UT
|
|
|
1609
1689
|
* Copyright 2026 - Finnish Meteorological Institute (FMI)
|
|
1610
1690
|
* Copyright 2026 - The Norwegian Meteorological Institute (MET Norway)
|
|
1611
1691
|
* */
|
|
1692
|
+
|
|
1612
1693
|
/**
|
|
1613
1694
|
* Determine if the time values have a special sequencing for certain services.
|
|
1614
1695
|
* Please check https://gitlab.com/opengeoweb/geoweb-assets/-/issues/4311 for details.
|
|
@@ -1623,6 +1704,7 @@ var wmDetermineDimensionMode = function wmDetermineDimensionMode(layer, refTimeD
|
|
|
1623
1704
|
return undefined;
|
|
1624
1705
|
});
|
|
1625
1706
|
};
|
|
1707
|
+
|
|
1626
1708
|
/**
|
|
1627
1709
|
* Based on https://gitlab.com/opengeoweb/geoweb-assets/-/issues/4311
|
|
1628
1710
|
* @param wmDimension
|
|
@@ -1673,8 +1755,8 @@ var wmDimensionHandleCustomTimeFunction = function wmDimensionHandleCustomTimeFu
|
|
|
1673
1755
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
1674
1756
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
1675
1757
|
* */
|
|
1676
|
-
|
|
1677
|
-
|
|
1758
|
+
|
|
1759
|
+
var LayerType = /*#__PURE__*/function (LayerType) {
|
|
1678
1760
|
LayerType["mapLayer"] = "mapLayer";
|
|
1679
1761
|
LayerType["wmtsMapLayer"] = "wmtsMapLayer";
|
|
1680
1762
|
LayerType["baseLayer"] = "baseLayer";
|
|
@@ -1682,7 +1764,8 @@ var LayerType;
|
|
|
1682
1764
|
LayerType["featureLayer"] = "featureLayer";
|
|
1683
1765
|
LayerType["edrFeatureLayer"] = "edrFeatureLayer";
|
|
1684
1766
|
LayerType["stacGeoTIFFLayer"] = "stacGeoTIFFLayer";
|
|
1685
|
-
|
|
1767
|
+
return LayerType;
|
|
1768
|
+
}({});
|
|
1686
1769
|
|
|
1687
1770
|
var legendImageStore = new WMImageStore(legendImageStoreLength, {
|
|
1688
1771
|
id: 'legendImageStore'
|
|
@@ -1708,6 +1791,7 @@ var getLegendGraphicURLForLayer = function getLegendGraphicURLForLayer(layer, wi
|
|
|
1708
1791
|
legendURL += "&SLD=" + encodeURI(layer.sldURL);
|
|
1709
1792
|
}
|
|
1710
1793
|
legendURL += '&transparent=true';
|
|
1794
|
+
|
|
1711
1795
|
// append width and height parameters when not present
|
|
1712
1796
|
if (!legendURL.includes('&width=') && !legendURL.includes('&height=')) {
|
|
1713
1797
|
legendURL += "&width=" + width + "&height=" + height;
|
|
@@ -1715,6 +1799,7 @@ var getLegendGraphicURLForLayer = function getLegendGraphicURLForLayer(layer, wi
|
|
|
1715
1799
|
} catch (_e) {
|
|
1716
1800
|
return undefined;
|
|
1717
1801
|
}
|
|
1802
|
+
|
|
1718
1803
|
// Handle WMS extensions
|
|
1719
1804
|
legendURL += layer.wmsextensions.url;
|
|
1720
1805
|
return legendURL;
|
|
@@ -1724,6 +1809,9 @@ var getLegendGraphicURLForLayer = function getLegendGraphicURLForLayer(layer, wi
|
|
|
1724
1809
|
|
|
1725
1810
|
var WMListener = /*#__PURE__*/function () {
|
|
1726
1811
|
function WMListener() {
|
|
1812
|
+
this.registeredEvents = void 0;
|
|
1813
|
+
this._suspendedEvents = void 0;
|
|
1814
|
+
this._suspendAllEvents = void 0;
|
|
1727
1815
|
this.addEventListener = this.addEventListener.bind(this);
|
|
1728
1816
|
this.removeEventListener = this.removeEventListener.bind(this);
|
|
1729
1817
|
this.removeEventListeners = this.removeEventListeners.bind(this);
|
|
@@ -1733,12 +1821,14 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1733
1821
|
this.resumeEvent = this.resumeEvent.bind(this);
|
|
1734
1822
|
this.suspendEvents = this.suspendEvents.bind(this);
|
|
1735
1823
|
this.resumeEvents = this.resumeEvents.bind(this);
|
|
1824
|
+
|
|
1736
1825
|
// Deprecated routines:
|
|
1737
1826
|
this.removeEvents = this.removeEvents.bind(this);
|
|
1738
1827
|
this._suspendAllEvents = false;
|
|
1739
1828
|
this.registeredEvents = new Map();
|
|
1740
1829
|
this._suspendedEvents = new Map();
|
|
1741
1830
|
}
|
|
1831
|
+
|
|
1742
1832
|
/**
|
|
1743
1833
|
* Remove events by name and function.
|
|
1744
1834
|
* @param name Event name
|
|
@@ -1748,6 +1838,7 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1748
1838
|
_proto.removeEventListener = function removeEventListener(name, fn) {
|
|
1749
1839
|
return this.removeEvents(name, fn);
|
|
1750
1840
|
}
|
|
1841
|
+
|
|
1751
1842
|
/**
|
|
1752
1843
|
* Remove all events by name
|
|
1753
1844
|
* @param name Event name
|
|
@@ -1755,6 +1846,7 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1755
1846
|
_proto.removeEventListeners = function removeEventListeners(name) {
|
|
1756
1847
|
return this.removeEvents(name);
|
|
1757
1848
|
}
|
|
1849
|
+
|
|
1758
1850
|
/**
|
|
1759
1851
|
* Add multiple functions which will be called after the event with the same name is triggered
|
|
1760
1852
|
* @param name: The name of the event to register
|
|
@@ -1768,6 +1860,7 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1768
1860
|
keepOnCall = true;
|
|
1769
1861
|
}
|
|
1770
1862
|
var events = this.registeredEvents.get(name);
|
|
1863
|
+
|
|
1771
1864
|
// This event name has no function callbacks associated, just add it.
|
|
1772
1865
|
if (!events || (events == null ? void 0 : events.length) === 0) {
|
|
1773
1866
|
this.registeredEvents.set(name, [{
|
|
@@ -1778,6 +1871,7 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1778
1871
|
}]);
|
|
1779
1872
|
return true;
|
|
1780
1873
|
}
|
|
1874
|
+
|
|
1781
1875
|
// Check if this function callback was already associated. If so, do nothing.
|
|
1782
1876
|
if ((events == null ? void 0 : events.findIndex(function (callback) {
|
|
1783
1877
|
return callback.functionpointer === functionpointer;
|
|
@@ -1792,12 +1886,14 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1792
1886
|
});
|
|
1793
1887
|
return true;
|
|
1794
1888
|
}
|
|
1889
|
+
|
|
1795
1890
|
/**
|
|
1796
1891
|
* Destroys this listener, deregistering all events
|
|
1797
1892
|
*/;
|
|
1798
1893
|
_proto.destroy = function destroy() {
|
|
1799
1894
|
this.registeredEvents.clear();
|
|
1800
1895
|
}
|
|
1896
|
+
|
|
1801
1897
|
/**
|
|
1802
1898
|
* Suspend a specific event by name, triggers will not be called
|
|
1803
1899
|
* @param name
|
|
@@ -1805,6 +1901,7 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1805
1901
|
_proto.suspendEvent = function suspendEvent(name) {
|
|
1806
1902
|
this._suspendedEvents.set(name, true);
|
|
1807
1903
|
}
|
|
1904
|
+
|
|
1808
1905
|
/**
|
|
1809
1906
|
* Resume a specific event by name, resuming normal operation
|
|
1810
1907
|
* @param name
|
|
@@ -1812,18 +1909,21 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1812
1909
|
_proto.resumeEvent = function resumeEvent(name) {
|
|
1813
1910
|
this._suspendedEvents.set(name, false);
|
|
1814
1911
|
}
|
|
1912
|
+
|
|
1815
1913
|
/**
|
|
1816
1914
|
* This listener will not listen to any triggers
|
|
1817
1915
|
*/;
|
|
1818
1916
|
_proto.suspendEvents = function suspendEvents() {
|
|
1819
1917
|
this._suspendAllEvents = true;
|
|
1820
1918
|
}
|
|
1919
|
+
|
|
1821
1920
|
/**
|
|
1822
1921
|
* Resume event listening
|
|
1823
1922
|
*/;
|
|
1824
1923
|
_proto.resumeEvents = function resumeEvents() {
|
|
1825
1924
|
this._suspendAllEvents = false;
|
|
1826
1925
|
}
|
|
1926
|
+
|
|
1827
1927
|
/**
|
|
1828
1928
|
* Trigger an event with custom parameters
|
|
1829
1929
|
* @param name The name of the event to trigger
|
|
@@ -1907,6 +2007,10 @@ var WMListener = /*#__PURE__*/function () {
|
|
|
1907
2007
|
* */
|
|
1908
2008
|
var WMBBOX = /*#__PURE__*/function () {
|
|
1909
2009
|
function WMBBOX(left, bottom, right, top) {
|
|
2010
|
+
this.left = void 0;
|
|
2011
|
+
this.bottom = void 0;
|
|
2012
|
+
this.right = void 0;
|
|
2013
|
+
this.top = void 0;
|
|
1910
2014
|
this.left = -180; // 0
|
|
1911
2015
|
this.bottom = -90; // 1`
|
|
1912
2016
|
this.right = 180; // 2
|
|
@@ -1919,6 +2023,7 @@ var WMBBOX = /*#__PURE__*/function () {
|
|
|
1919
2023
|
this.getExtent = this.getExtent.bind(this);
|
|
1920
2024
|
this.setBBOX(left, bottom, right, top);
|
|
1921
2025
|
}
|
|
2026
|
+
|
|
1922
2027
|
/**
|
|
1923
2028
|
* Clone an existing BBOX
|
|
1924
2029
|
*/
|
|
@@ -1932,6 +2037,7 @@ var WMBBOX = /*#__PURE__*/function () {
|
|
|
1932
2037
|
this.right = bbox.right;
|
|
1933
2038
|
this.top = bbox.top;
|
|
1934
2039
|
}
|
|
2040
|
+
|
|
1935
2041
|
/**
|
|
1936
2042
|
* setBBOX method
|
|
1937
2043
|
* Creates a WebMapJS bounding box based on 4 numeric values
|
|
@@ -1950,6 +2056,7 @@ var WMBBOX = /*#__PURE__*/function () {
|
|
|
1950
2056
|
/* Check if we recieve more than one parameter by checking the second bottom parameter. */
|
|
1951
2057
|
if (bottom === undefined) {
|
|
1952
2058
|
/* Otherwise it can be a bbox object or a string in the form "left,bottom,right,top" */
|
|
2059
|
+
|
|
1953
2060
|
if (typeof left === 'object') {
|
|
1954
2061
|
/* A bbox object is given, so it is not a string */
|
|
1955
2062
|
var bboxObject = left;
|
|
@@ -1987,12 +2094,14 @@ var WMBBOX = /*#__PURE__*/function () {
|
|
|
1987
2094
|
this.top = 90;
|
|
1988
2095
|
}
|
|
1989
2096
|
}
|
|
2097
|
+
|
|
1990
2098
|
/*
|
|
1991
2099
|
* Compares two boundingboxes and returns true if they are equal
|
|
1992
2100
|
*/;
|
|
1993
2101
|
_proto.equals = function equals(left, bottom, right, top) {
|
|
1994
2102
|
return left === this.left && bottom === this.bottom && right === this.right && top === this.top;
|
|
1995
2103
|
}
|
|
2104
|
+
|
|
1996
2105
|
/**
|
|
1997
2106
|
* Returns the current BBOX as a string, useful for generating WMS requests.
|
|
1998
2107
|
*/;
|
|
@@ -2022,11 +2131,14 @@ var WMBBOX = /*#__PURE__*/function () {
|
|
|
2022
2131
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
2023
2132
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
2024
2133
|
* */
|
|
2134
|
+
|
|
2025
2135
|
/**
|
|
2026
2136
|
* WMProjection Class
|
|
2027
2137
|
* Keep all projection information, by a bbox and an srs value.
|
|
2028
2138
|
*/
|
|
2029
2139
|
var WMProjection = function WMProjection() {
|
|
2140
|
+
this.bbox = void 0;
|
|
2141
|
+
this.srs = void 0;
|
|
2030
2142
|
this.bbox = new WMBBOX();
|
|
2031
2143
|
this.srs = PROJECTION.EPSG_4326.value;
|
|
2032
2144
|
};
|
|
@@ -2048,12 +2160,19 @@ var WMProjection = function WMProjection() {
|
|
|
2048
2160
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
2049
2161
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
2050
2162
|
* */
|
|
2051
|
-
|
|
2163
|
+
|
|
2052
2164
|
/** ************************************************ */
|
|
2053
2165
|
/* Object to store a time duration / time interval */
|
|
2054
2166
|
/** ************************************************ */
|
|
2055
2167
|
var DateInterval = /*#__PURE__*/function () {
|
|
2056
2168
|
function DateInterval(year, month, day, hour, minute, second) {
|
|
2169
|
+
this.year = void 0;
|
|
2170
|
+
this.month = void 0;
|
|
2171
|
+
this.day = void 0;
|
|
2172
|
+
this.hour = void 0;
|
|
2173
|
+
this.minute = void 0;
|
|
2174
|
+
this.second = void 0;
|
|
2175
|
+
this.isRegularInterval = void 0;
|
|
2057
2176
|
this.year = parseInt(year, 10);
|
|
2058
2177
|
this.month = parseInt(month, 10);
|
|
2059
2178
|
this.day = parseInt(day, 10);
|
|
@@ -2131,6 +2250,7 @@ var parseTimeValue = function parseTimeValue(value) {
|
|
|
2131
2250
|
var getTimeValues = function getTimeValues(isotime) {
|
|
2132
2251
|
return isotime.split(/\D+/).map(parseTimeValue);
|
|
2133
2252
|
};
|
|
2253
|
+
|
|
2134
2254
|
/** ************************************************* */
|
|
2135
2255
|
/* Parses ISO8601 times to a Javascript Date Object */
|
|
2136
2256
|
/** ************************************************* */
|
|
@@ -2142,6 +2262,7 @@ var parseISO8601DateToDate = function parseISO8601DateToDate(unvalidatedIsotime)
|
|
|
2142
2262
|
- toISO8601() returns the date object as iso8601 string
|
|
2143
2263
|
- clone() creates a copy of this object
|
|
2144
2264
|
*/
|
|
2265
|
+
|
|
2145
2266
|
/** Timeformats according to:
|
|
2146
2267
|
* https://portal.ogc.org/files/?artifact_id=14416 / 06-042_OpenGIS_Web_Map_Service_WMS_Implementation_Specification.pdf,
|
|
2147
2268
|
* chapter D2.1 are supported
|
|
@@ -2308,9 +2429,11 @@ var parseISO8601DateToDate = function parseISO8601DateToDate(unvalidatedIsotime)
|
|
|
2308
2429
|
};
|
|
2309
2430
|
return date;
|
|
2310
2431
|
};
|
|
2432
|
+
|
|
2311
2433
|
/** ****************************************************** */
|
|
2312
2434
|
/* Parses ISO8601 time duration to a DateInterval Object */
|
|
2313
2435
|
/** ****************************************************** */
|
|
2436
|
+
|
|
2314
2437
|
var parseISO8601IntervalToDateInterval = function parseISO8601IntervalToDateInterval(_isotime) {
|
|
2315
2438
|
if (!_isotime) {
|
|
2316
2439
|
return undefined;
|
|
@@ -2327,6 +2450,7 @@ var parseISO8601IntervalToDateInterval = function parseISO8601IntervalToDateInte
|
|
|
2327
2450
|
var minutes = '0';
|
|
2328
2451
|
var seconds = '0';
|
|
2329
2452
|
var YYYYMMDDPart = splittedOnT[0].split('P')[1];
|
|
2453
|
+
|
|
2330
2454
|
// Parse the left part
|
|
2331
2455
|
if (YYYYMMDDPart) {
|
|
2332
2456
|
var yearIndex = YYYYMMDDPart.indexOf('Y');
|
|
@@ -2347,6 +2471,7 @@ var parseISO8601IntervalToDateInterval = function parseISO8601IntervalToDateInte
|
|
|
2347
2471
|
}
|
|
2348
2472
|
}
|
|
2349
2473
|
// parse the right part
|
|
2474
|
+
|
|
2350
2475
|
if (splittedOnT.length > 0) {
|
|
2351
2476
|
if (isDefined(splittedOnT[1])) {
|
|
2352
2477
|
var HHMMSSPart = splittedOnT[1];
|
|
@@ -2370,6 +2495,7 @@ var parseISO8601IntervalToDateInterval = function parseISO8601IntervalToDateInte
|
|
|
2370
2495
|
}
|
|
2371
2496
|
}
|
|
2372
2497
|
}
|
|
2498
|
+
|
|
2373
2499
|
// Assemble the dateInterval object
|
|
2374
2500
|
var dateInterval = new DateInterval(years, months, days, hours, minutes, seconds);
|
|
2375
2501
|
return dateInterval;
|
|
@@ -2380,6 +2506,7 @@ function isTimeOnIntervalStep(time, intervalStart, interval) {
|
|
|
2380
2506
|
}
|
|
2381
2507
|
return (time.getTime() - intervalStart.getTime()) % interval.getTime() === 0;
|
|
2382
2508
|
}
|
|
2509
|
+
|
|
2383
2510
|
/** ******************************************************* */
|
|
2384
2511
|
/* Calculates the number of time steps with this interval */
|
|
2385
2512
|
/** ******************************************************* */
|
|
@@ -2400,9 +2527,11 @@ function getNumberOfTimeSteps(starttime, stoptime, interval) {
|
|
|
2400
2527
|
return steps;
|
|
2401
2528
|
}
|
|
2402
2529
|
// In case of equally distributed time steps
|
|
2530
|
+
|
|
2403
2531
|
steps = Math.round((stoptime.getTime() - starttime.getTime()) / interval.getTime()) + 1;
|
|
2404
2532
|
return steps;
|
|
2405
2533
|
}
|
|
2534
|
+
|
|
2406
2535
|
// Utility function to fill missing elements in ISO time range duration array
|
|
2407
2536
|
var fillMissingISOTimeRangeElements = function fillMissingISOTimeRangeElements(times, defaultInterval) {
|
|
2408
2537
|
var result = [].concat(times);
|
|
@@ -2414,6 +2543,7 @@ var fillMissingISOTimeRangeElements = function fillMissingISOTimeRangeElements(t
|
|
|
2414
2543
|
}
|
|
2415
2544
|
return result;
|
|
2416
2545
|
};
|
|
2546
|
+
|
|
2417
2547
|
// Takes "1999-01-01T00:00:00Z/2009-12-01T00:00:00Z/PT60S" as input
|
|
2418
2548
|
var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
2419
2549
|
function ParseISOTimeRangeDuration(isoTimeRangeDuration, defaultInterval) {
|
|
@@ -2421,7 +2551,12 @@ var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
|
2421
2551
|
defaultInterval = 'PT1M';
|
|
2422
2552
|
}
|
|
2423
2553
|
this.initialized = false;
|
|
2554
|
+
this.startTime = void 0;
|
|
2555
|
+
this.stopTime = void 0;
|
|
2556
|
+
this.timeInterval = void 0;
|
|
2557
|
+
this.timeSteps = void 0;
|
|
2424
2558
|
var times = fillMissingISOTimeRangeElements(isoTimeRangeDuration.split('/'), defaultInterval);
|
|
2559
|
+
|
|
2425
2560
|
// Convert the dates
|
|
2426
2561
|
this.startTime = parseISO8601DateToDate(times[0]);
|
|
2427
2562
|
this.stopTime = parseISO8601DateToDate(times[1]);
|
|
@@ -2429,6 +2564,7 @@ var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
|
2429
2564
|
debugLogger(DebugType.Warning);
|
|
2430
2565
|
return;
|
|
2431
2566
|
}
|
|
2567
|
+
|
|
2432
2568
|
/* Try to get the time interval. If not available default to 1 minute */
|
|
2433
2569
|
var timeIntervalString = times[2] || defaultInterval;
|
|
2434
2570
|
this.timeInterval = parseISO8601IntervalToDateInterval(timeIntervalString);
|
|
@@ -2444,6 +2580,7 @@ var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
|
2444
2580
|
this.getTimeStepFromDate = this.getTimeStepFromDate.bind(this);
|
|
2445
2581
|
this.getTimeStepFromDateWithinRange = this.getTimeStepFromDateWithinRange.bind(this);
|
|
2446
2582
|
this.getTimeStepFromDateClipped = this.getTimeStepFromDateClipped.bind(this);
|
|
2583
|
+
|
|
2447
2584
|
/* Indicate that this object is properly constructed */
|
|
2448
2585
|
this.initialized = true;
|
|
2449
2586
|
}
|
|
@@ -2479,6 +2616,7 @@ var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
|
2479
2616
|
}
|
|
2480
2617
|
return this.getTimeStepFromDate(currentDate, throwIfOutsideRange);
|
|
2481
2618
|
}
|
|
2619
|
+
|
|
2482
2620
|
/* Calculates the time step at the given date */;
|
|
2483
2621
|
_proto2.getTimeStepFromDate = function getTimeStepFromDate(wantedDate, throwIfOutsideRange) {
|
|
2484
2622
|
if (throwIfOutsideRange === void 0) {
|
|
@@ -2523,16 +2661,19 @@ var ParseISOTimeRangeDuration = /*#__PURE__*/function () {
|
|
|
2523
2661
|
throw new Error("Date " + wantedDate.toISO8601() + " not found!");
|
|
2524
2662
|
} else {
|
|
2525
2663
|
timeStep = (wantedDate.getTime() - this.startTime.getTime()) / this.timeInterval.getTime();
|
|
2664
|
+
|
|
2526
2665
|
// round 4.5 down to 4 by using this hack
|
|
2527
2666
|
timeStep = -Math.round(-timeStep);
|
|
2528
2667
|
return timeStep;
|
|
2529
2668
|
}
|
|
2530
2669
|
}
|
|
2670
|
+
|
|
2531
2671
|
/* Returns the timestep at the currentDate, if currentdate is outside the range,
|
|
2532
2672
|
a exception is thrown. */;
|
|
2533
2673
|
_proto2.getTimeStepFromDateWithinRange = function getTimeStepFromDateWithinRange(currentDate) {
|
|
2534
2674
|
return this.getTimeStepFromDate(currentDate, true);
|
|
2535
2675
|
}
|
|
2676
|
+
|
|
2536
2677
|
/* Returns the timestep at the currentDate, if currentdate is outside the range,
|
|
2537
2678
|
a minimum or maximum step which lies within the time range is returned. */;
|
|
2538
2679
|
_proto2.getTimeStepFromDateClipped = function getTimeStepFromDateClipped(currentDate) {
|
|
@@ -2554,6 +2695,7 @@ function calculateTimeIntervalFromList(dateStrings) {
|
|
|
2554
2695
|
var seconds = dateUtils.differenceInSeconds(secondDate, firstDate) % 60;
|
|
2555
2696
|
return new DateInterval(years.toString(), months.toString(), days.toString(), hours.toString(), minutes.toString(), seconds.toString());
|
|
2556
2697
|
}
|
|
2698
|
+
|
|
2557
2699
|
/* Example:
|
|
2558
2700
|
function init(){
|
|
2559
2701
|
let isodate="1999-01-01T00:00:00Z/2009-12-01T00:00:00Z/PT60S";
|
|
@@ -2587,6 +2729,9 @@ function init(){
|
|
|
2587
2729
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
2588
2730
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
2589
2731
|
* */
|
|
2732
|
+
|
|
2733
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
2734
|
+
|
|
2590
2735
|
var WMXMLStringToXMLDocument = function WMXMLStringToXMLDocument(xmlString) {
|
|
2591
2736
|
var xmlData = new DOMParser().parseFromString(xmlString, 'text/xml');
|
|
2592
2737
|
if (xmlData.documentElement.nodeName === 'parsererror') {
|
|
@@ -2608,6 +2753,7 @@ var WMXMLtoJSON = function WMXMLtoJSON(xmlDocument) {
|
|
|
2608
2753
|
newJson = {
|
|
2609
2754
|
attr: {}
|
|
2610
2755
|
};
|
|
2756
|
+
|
|
2611
2757
|
// Convert to array if needed
|
|
2612
2758
|
if (json[nodeName] instanceof Array) ; else {
|
|
2613
2759
|
var obj = Object.assign({}, json[nodeName]);
|
|
@@ -2700,6 +2846,7 @@ var WMXMLParser = function WMXMLParser(url, headers) {
|
|
|
2700
2846
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
2701
2847
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
2702
2848
|
* */
|
|
2849
|
+
|
|
2703
2850
|
/**
|
|
2704
2851
|
* Re-formats isoString to the string that is expected by WMJSDimension (for time).
|
|
2705
2852
|
* @param dateIn The input date to re-format, usually in the format `YYYY-MM-DDThh:mm:ss.uuuZ`
|
|
@@ -2728,17 +2875,32 @@ var handleDateUtilsISOString = function handleDateUtilsISOString(dateIn) {
|
|
|
2728
2875
|
*/
|
|
2729
2876
|
var WMJSDimension = /*#__PURE__*/function () {
|
|
2730
2877
|
function WMJSDimension(config) {
|
|
2731
|
-
this.
|
|
2732
|
-
this.
|
|
2733
|
-
this.
|
|
2878
|
+
this.currentValue = void 0;
|
|
2879
|
+
this.defaultValue = void 0;
|
|
2880
|
+
this.name = undefined;
|
|
2881
|
+
// Name of the dimension, e.g. 'time'
|
|
2882
|
+
this.units = undefined;
|
|
2883
|
+
// Units of the dimension, e.g. 'ISO8601'
|
|
2884
|
+
this.unitSymbol = undefined;
|
|
2885
|
+
// Unit symbol, eg: hPa
|
|
2734
2886
|
this.linked = true;
|
|
2735
2887
|
this.synced = false;
|
|
2888
|
+
this.used = void 0;
|
|
2889
|
+
this.values = void 0;
|
|
2890
|
+
// Values of the dimension, according to values defined in WMS specification, e.g. 2011-01-01T00:00:00Z/2012-01-01T00:00:00Z/P1M or list of values.
|
|
2736
2891
|
this.refTimeDimensionMode = undefined;
|
|
2892
|
+
this.timeRangeDuration = void 0;
|
|
2737
2893
|
this._initialized = false;
|
|
2738
|
-
this._timeRangeDurationDate = null;
|
|
2739
|
-
|
|
2894
|
+
this._timeRangeDurationDate = null;
|
|
2895
|
+
// Used for timerange (start/stop/res)
|
|
2896
|
+
this._allDates = [];
|
|
2897
|
+
// Used for individual timevalues
|
|
2740
2898
|
this._type = null;
|
|
2741
2899
|
this._allValues = [];
|
|
2900
|
+
this.dimMinValue = void 0;
|
|
2901
|
+
this.dimMaxValue = void 0;
|
|
2902
|
+
this.dimTimeInterval = void 0;
|
|
2903
|
+
this.calculatedTimeInterval = void 0;
|
|
2742
2904
|
this.setTimeValuesForReferenceTime = this.setTimeValuesForReferenceTime.bind(this);
|
|
2743
2905
|
this.generateAllValues = this.generateAllValues.bind(this);
|
|
2744
2906
|
this.reInitializeValues = this.reInitializeValues.bind(this);
|
|
@@ -2812,10 +2974,13 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
2812
2974
|
* this can be done by looking at the difference between
|
|
2813
2975
|
* the last dim_reference_time and last dim_time
|
|
2814
2976
|
*/
|
|
2977
|
+
|
|
2815
2978
|
/* 1. Get the last value in the list of the referencetime */
|
|
2816
2979
|
var lastRefTime = new Date(referenceTimeDim.getLastValue());
|
|
2980
|
+
|
|
2817
2981
|
/* 2. Get the original last value of the time dimension, we cannot use this.getLastValue(), as we are changing this. */
|
|
2818
2982
|
var orgLastDimTime = new Date(this.values.split('/')[1]);
|
|
2983
|
+
|
|
2819
2984
|
/* 3. Now calculate the run length */
|
|
2820
2985
|
var runLengthAsHour = dateUtils.differenceInHours(orgLastDimTime, lastRefTime);
|
|
2821
2986
|
var newStartValueTime = new Date(referenceTimeValueToSet);
|
|
@@ -2825,11 +2990,11 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
2825
2990
|
if (this._type === 'timestartstopres') {
|
|
2826
2991
|
// Compose a new dateString interval and re-initialize the time dimension if the
|
|
2827
2992
|
// calculated start and end values are valid for the time dimension interval
|
|
2828
|
-
var
|
|
2993
|
+
var _split$map = this.values.split('/').map(function (val) {
|
|
2829
2994
|
return val.trim();
|
|
2830
2995
|
}),
|
|
2831
|
-
start =
|
|
2832
|
-
interval =
|
|
2996
|
+
start = _split$map[0],
|
|
2997
|
+
interval = _split$map[2];
|
|
2833
2998
|
var intervalStart = new Date(start);
|
|
2834
2999
|
var dateInterval = parseISO8601IntervalToDateInterval(interval);
|
|
2835
3000
|
if (isTimeOnIntervalStep(newStartValueTime, intervalStart, dateInterval) && isTimeOnIntervalStep(newEndValueTime, intervalStart, dateInterval)) {
|
|
@@ -2965,18 +3130,22 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
2965
3130
|
}
|
|
2966
3131
|
}
|
|
2967
3132
|
}
|
|
3133
|
+
|
|
2968
3134
|
/* If no default value is given, take the last / most recent one */
|
|
2969
3135
|
if (!this.defaultValue) {
|
|
2970
3136
|
this.defaultValue = this.getLastValue();
|
|
2971
3137
|
}
|
|
3138
|
+
|
|
2972
3139
|
/* Check if the string 'current' is given, and find the closest value inside the dimension */
|
|
2973
3140
|
if (this.defaultValue === 'current') {
|
|
2974
3141
|
this.defaultValue = this.getClosestValue(dateUtils.dateToString(dateUtils.utc()), true);
|
|
2975
3142
|
}
|
|
3143
|
+
|
|
2976
3144
|
/* If no currentvalue is set, set the default */
|
|
2977
3145
|
if (!this.currentValue || this.currentValue.length === 0) {
|
|
2978
3146
|
this.currentValue = this.defaultValue;
|
|
2979
3147
|
}
|
|
3148
|
+
|
|
2980
3149
|
/* Check for out of range values and adjust accordingly to a valid range */
|
|
2981
3150
|
var index = this.getIndexForValue(this.currentValue);
|
|
2982
3151
|
if (index === -2) {
|
|
@@ -2985,6 +3154,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
2985
3154
|
if (index === -1) {
|
|
2986
3155
|
this.currentValue = this.getFirstValue(); // Date is past the first (-1), so set it to the first value
|
|
2987
3156
|
}
|
|
3157
|
+
|
|
2988
3158
|
/* In case of reference time, the time dimension range is changed, check if the current time still fits in that range */
|
|
2989
3159
|
if (forceReferenceTimeValue) {
|
|
2990
3160
|
if (this.getIndexForValue(this.currentValue, true) < 0) {
|
|
@@ -2999,6 +3169,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
2999
3169
|
this.dimTimeInterval = this.calculatedTimeInterval;
|
|
3000
3170
|
}
|
|
3001
3171
|
}
|
|
3172
|
+
|
|
3002
3173
|
/**
|
|
3003
3174
|
* Returns the current value of this dimensions.
|
|
3004
3175
|
* If a ISO8601 period is set, the getValue will return a timeRange using addTimeRangeDurationToValue instead of a single value
|
|
@@ -3023,12 +3194,14 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3023
3194
|
return value.includes('/') && value.includes('P');
|
|
3024
3195
|
});
|
|
3025
3196
|
var allValues = [];
|
|
3197
|
+
|
|
3026
3198
|
// Get all the ranges between start and stop time
|
|
3027
3199
|
timeRanges.forEach(function (timeRange) {
|
|
3028
3200
|
var partTimeRanges = new ParseISOTimeRangeDuration(timeRange);
|
|
3029
3201
|
var newValues = _this2.createTimeStepsArray(partTimeRanges);
|
|
3030
3202
|
allValues = allValues.concat(newValues);
|
|
3031
3203
|
});
|
|
3204
|
+
|
|
3032
3205
|
// Some ogcdimvalues deliver the interval for arbitrary timesteps which may stop the array
|
|
3033
3206
|
// In that case, get the last date to set as dimMaxValue
|
|
3034
3207
|
var lastTimeRangeString = splitValues[splitValues.length - 1];
|
|
@@ -3040,6 +3213,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3040
3213
|
this.values = allValues.join(',');
|
|
3041
3214
|
}
|
|
3042
3215
|
}
|
|
3216
|
+
|
|
3043
3217
|
// eslint-disable-next-line class-methods-use-this
|
|
3044
3218
|
;
|
|
3045
3219
|
_proto.createTimeStepsArray = function createTimeStepsArray(partTimeRanges) {
|
|
@@ -3056,6 +3230,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3056
3230
|
return dateString !== null;
|
|
3057
3231
|
});
|
|
3058
3232
|
}
|
|
3233
|
+
|
|
3059
3234
|
/**
|
|
3060
3235
|
* Set current value of this dimension
|
|
3061
3236
|
* @param value The new value for this dimension (string)
|
|
@@ -3075,6 +3250,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3075
3250
|
}
|
|
3076
3251
|
this.currentValue = value;
|
|
3077
3252
|
}
|
|
3253
|
+
|
|
3078
3254
|
/**
|
|
3079
3255
|
* Returns values of the dimension, according to values defined in WMS specification, e.g. 2011-01-01T00:00:00Z/2012-01-01T00:00:00Z/P1M or list of values.
|
|
3080
3256
|
* @returns
|
|
@@ -3106,6 +3282,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3106
3282
|
}
|
|
3107
3283
|
return value;
|
|
3108
3284
|
}
|
|
3285
|
+
|
|
3109
3286
|
// If a ISO8601 period is given, the getValue will return a timeRange instead of a single value
|
|
3110
3287
|
;
|
|
3111
3288
|
_proto.setTimeRangeDuration = function setTimeRangeDuration(duration) {
|
|
@@ -3189,15 +3366,20 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3189
3366
|
if (!this._initialized || inputValue === undefined || inputValue === null) {
|
|
3190
3367
|
return inputValue;
|
|
3191
3368
|
}
|
|
3369
|
+
|
|
3192
3370
|
// Just make sure to return the first part if accidently start/stop/res was given.
|
|
3193
3371
|
var firstPartValue = getFirstPartOfDimensionValueSet(inputValue);
|
|
3372
|
+
|
|
3194
3373
|
// Handle 'current', 'default, '', 'middle', 'earliest' and 'latest'
|
|
3195
3374
|
var newValue = this.getValueForSpecialString(firstPartValue, evenWhenOutsideRange);
|
|
3375
|
+
|
|
3196
3376
|
// Get the exact value as present in the dimension values
|
|
3197
3377
|
var matchingValue = this.getExactMatchingValue(newValue);
|
|
3378
|
+
|
|
3198
3379
|
// Handle 'current', 'default, '', 'middle', 'earliest' and 'latest'
|
|
3199
3380
|
return evenWhenOutsideRange ? this.getValueForSpecialString(matchingValue, evenWhenOutsideRange) : matchingValue;
|
|
3200
3381
|
}
|
|
3382
|
+
|
|
3201
3383
|
/**
|
|
3202
3384
|
* Get dimension value for specified index
|
|
3203
3385
|
*/;
|
|
@@ -3228,6 +3410,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3228
3410
|
}
|
|
3229
3411
|
return null;
|
|
3230
3412
|
}
|
|
3413
|
+
|
|
3231
3414
|
/**
|
|
3232
3415
|
* Get value for index in as epoch time in milliseconds
|
|
3233
3416
|
* @param index
|
|
@@ -3266,12 +3449,14 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3266
3449
|
isRegularInterval: isRegularInterval
|
|
3267
3450
|
};
|
|
3268
3451
|
}
|
|
3452
|
+
|
|
3269
3453
|
/**
|
|
3270
3454
|
* Shorthand functionf or getValueForIndex
|
|
3271
3455
|
*/;
|
|
3272
3456
|
_proto.get = function get(index) {
|
|
3273
3457
|
return this.getValueForIndex(index);
|
|
3274
3458
|
}
|
|
3459
|
+
|
|
3275
3460
|
/**
|
|
3276
3461
|
* Returns the first dimension value
|
|
3277
3462
|
*/;
|
|
@@ -3288,6 +3473,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3288
3473
|
_proto.getLastValue = function getLastValue() {
|
|
3289
3474
|
return this.get(this.size() - 1);
|
|
3290
3475
|
}
|
|
3476
|
+
|
|
3291
3477
|
/**
|
|
3292
3478
|
* Get index value for specified value. Returns the index in the store for the given time value, either a date or a iso8601 string can be passes as input.
|
|
3293
3479
|
* @param value Either a JS Date object or an ISO8601 String
|
|
@@ -3367,6 +3553,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3367
3553
|
}
|
|
3368
3554
|
return -1;
|
|
3369
3555
|
}
|
|
3556
|
+
|
|
3370
3557
|
/**
|
|
3371
3558
|
* Get number of values
|
|
3372
3559
|
*/;
|
|
@@ -3380,6 +3567,7 @@ var WMJSDimension = /*#__PURE__*/function () {
|
|
|
3380
3567
|
}
|
|
3381
3568
|
return null;
|
|
3382
3569
|
}
|
|
3570
|
+
|
|
3383
3571
|
/**
|
|
3384
3572
|
* Clone this dimension
|
|
3385
3573
|
*/;
|
|
@@ -3422,12 +3610,15 @@ var addDimsForLayer = function addDimsForLayer(layerProps, layer, layerDimNamesT
|
|
|
3422
3610
|
problems, try to add the dimension here */
|
|
3423
3611
|
linkDimensionToMap: dimName !== 'reference_time' && dimName !== 'interval_start' && dimName !== 'interval_end'
|
|
3424
3612
|
};
|
|
3613
|
+
|
|
3425
3614
|
/* Flag that this dim should not be removed from the layer */
|
|
3426
3615
|
layerDimNamesToRemove["delete"](layerDim.name);
|
|
3616
|
+
|
|
3427
3617
|
/* Now configure the dimensions in the Layer based on the obtained info */
|
|
3428
3618
|
var wmLayerDimensionIndex = layer.dimensions.findIndex(function (dim) {
|
|
3429
3619
|
return dim.name === layerDim.name;
|
|
3430
3620
|
});
|
|
3621
|
+
|
|
3431
3622
|
/* Index === -1: Dimension was not found */
|
|
3432
3623
|
if (wmLayerDimensionIndex === -1) {
|
|
3433
3624
|
/* Add a new dimension for this layer */
|
|
@@ -3455,6 +3646,7 @@ var addDimsForLayer = function addDimsForLayer(layerProps, layer, layerDimNamesT
|
|
|
3455
3646
|
}
|
|
3456
3647
|
});
|
|
3457
3648
|
};
|
|
3649
|
+
|
|
3458
3650
|
/**
|
|
3459
3651
|
* Helper function to configure the WMS Styles from the WMS GetCapabilities document.
|
|
3460
3652
|
* @param nestedLayerPath Array of WMS Layers from `[Root WMS Layer] => [Parent(s) WMS Layer] => [This WMS layer]`.
|
|
@@ -3463,12 +3655,14 @@ var addDimsForLayer = function addDimsForLayer(layerProps, layer, layerDimNamesT
|
|
|
3463
3655
|
var configureStyles = function configureStyles(layerProps, wmLayer) {
|
|
3464
3656
|
// eslint-disable-next-line no-param-reassign
|
|
3465
3657
|
wmLayer.styles = layerProps.styles || [];
|
|
3658
|
+
|
|
3466
3659
|
/* Set the default style */
|
|
3467
3660
|
if (wmLayer.styles.length > 0) {
|
|
3468
3661
|
/* Check if the current style is in the list */
|
|
3469
3662
|
var styleIndex = wmLayer.styles.findIndex(function (style) {
|
|
3470
3663
|
return style.name === wmLayer.currentStyle;
|
|
3471
3664
|
});
|
|
3665
|
+
|
|
3472
3666
|
/* If not found or not set, set the first one */
|
|
3473
3667
|
if (styleIndex === -1) {
|
|
3474
3668
|
wmLayer.setStyle(wmLayer.styles[0].name);
|
|
@@ -3478,6 +3672,7 @@ var configureStyles = function configureStyles(layerProps, wmLayer) {
|
|
|
3478
3672
|
}
|
|
3479
3673
|
}
|
|
3480
3674
|
};
|
|
3675
|
+
|
|
3481
3676
|
/**
|
|
3482
3677
|
* Helper function to configure the dimensions for this layer from the WMS GetCapabilities document.
|
|
3483
3678
|
* @param nestedLayerPath Array of WMS Layers from `[Root WMS Layer] => [Parent(s) WMS Layer] => [This WMS layer]`.
|
|
@@ -3488,17 +3683,21 @@ var configureDimensions = function configureDimensions(layerProps, wmLayer) {
|
|
|
3488
3683
|
WMS 1.1.1:
|
|
3489
3684
|
<Dimension name="time" units="ISO8601"/>
|
|
3490
3685
|
<Extent name="time" default="2021-05-14T10:35:00Z" multipleValues="1" nearestValue="0">2021-03-31T09:25:00Z/2021-05-14T10:35:00Z/PT5M</Extent>
|
|
3491
|
-
|
|
3686
|
+
WMS 1.3.0:
|
|
3492
3687
|
<Dimension name="time" units="ISO8601" default="2021-05-14T07:35:00Z" multipleValues="1" nearestValue="0" current="1">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>
|
|
3493
3688
|
*/
|
|
3689
|
+
|
|
3494
3690
|
/* Flag dimensions which are currently in use for this layer, it is possible that the update will remove dimensions from this layer; keep track of the current ones */
|
|
3495
3691
|
var layerDimNamesToRemove = new Set();
|
|
3496
3692
|
for (var _iterator = _createForOfIteratorHelperLoose(wmLayer.dimensions), _step; !(_step = _iterator()).done;) {
|
|
3497
3693
|
var layerDim = _step.value;
|
|
3498
3694
|
layerDimNamesToRemove.add(layerDim.name);
|
|
3499
3695
|
}
|
|
3696
|
+
|
|
3500
3697
|
/* Now start adding all dimensions starting with the parent layer. Layers more deeply nested will inherit Dimension info */
|
|
3698
|
+
|
|
3501
3699
|
addDimsForLayer(layerProps, wmLayer, layerDimNamesToRemove);
|
|
3700
|
+
|
|
3502
3701
|
/* The list with dimensions to remove is now complete, remove the unneeded dimensions from the layer */
|
|
3503
3702
|
layerDimNamesToRemove.forEach(function (dimName) {
|
|
3504
3703
|
var dimIndex = wmLayer.dimensions.findIndex(function (dim) {
|
|
@@ -3508,6 +3707,7 @@ var configureDimensions = function configureDimensions(layerProps, wmLayer) {
|
|
|
3508
3707
|
wmLayer.dimensions.splice(dimIndex, 1);
|
|
3509
3708
|
}
|
|
3510
3709
|
});
|
|
3710
|
+
|
|
3511
3711
|
/* Handle reference time dim */
|
|
3512
3712
|
var refTimeDimension = wmLayer.getDimension('reference_time');
|
|
3513
3713
|
if (refTimeDimension) {
|
|
@@ -3539,11 +3739,21 @@ var configureGeographicBoundingBox = function configureGeographicBoundingBox(lay
|
|
|
3539
3739
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
3540
3740
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
3541
3741
|
* */
|
|
3542
|
-
|
|
3543
|
-
|
|
3742
|
+
|
|
3743
|
+
/**
|
|
3744
|
+
* Represents the layers as advertised in the WMS GetCapabilities document
|
|
3745
|
+
*/
|
|
3746
|
+
|
|
3747
|
+
/* From WMS GetCapabilities */
|
|
3748
|
+
/**
|
|
3749
|
+
* This interface is for reading from the WMS GetCapabilities document, which can have different structures for V1.1.1 and V1.3.0
|
|
3750
|
+
*/
|
|
3751
|
+
|
|
3752
|
+
var OGCTYPE = /*#__PURE__*/function (OGCTYPE) {
|
|
3544
3753
|
OGCTYPE["WMTS"] = "WMTS";
|
|
3545
3754
|
OGCTYPE["WMS"] = "WMS";
|
|
3546
|
-
|
|
3755
|
+
return OGCTYPE;
|
|
3756
|
+
}({});
|
|
3547
3757
|
|
|
3548
3758
|
/* *
|
|
3549
3759
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -3562,6 +3772,7 @@ var OGCTYPE;
|
|
|
3562
3772
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
3563
3773
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
3564
3774
|
* */
|
|
3775
|
+
|
|
3565
3776
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
3566
3777
|
var _generatedServiceIds = 0;
|
|
3567
3778
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
@@ -3571,6 +3782,7 @@ var _generateServiceId = function _generateServiceId() {
|
|
|
3571
3782
|
};
|
|
3572
3783
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
3573
3784
|
var _serviceIdLookupMap = new Map();
|
|
3785
|
+
|
|
3574
3786
|
/**
|
|
3575
3787
|
* Returns the id corresponding to a WMS service url. It ensures that the id is unique across services.
|
|
3576
3788
|
* The id can be used as a key in the redux store.
|
|
@@ -3578,6 +3790,7 @@ var _serviceIdLookupMap = new Map();
|
|
|
3578
3790
|
* @param {string} serviceUrl Link to a WMS service
|
|
3579
3791
|
* @returns {string} Returns the corresponding id
|
|
3580
3792
|
*/
|
|
3793
|
+
|
|
3581
3794
|
var getWMSServiceId = function getWMSServiceId(serviceUrl) {
|
|
3582
3795
|
var foundId = _serviceIdLookupMap.get(serviceUrl);
|
|
3583
3796
|
if (foundId) {
|
|
@@ -3605,6 +3818,7 @@ var getWMSServiceId = function getWMSServiceId(serviceUrl) {
|
|
|
3605
3818
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
3606
3819
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
3607
3820
|
* */
|
|
3821
|
+
|
|
3608
3822
|
var consoleErrorMessages = {
|
|
3609
3823
|
noCapabilityElementFound: 'No Capability element found in service',
|
|
3610
3824
|
noServiceDefined: 'No service defined',
|
|
@@ -3624,6 +3838,7 @@ var consoleErrorMessages = {
|
|
|
3624
3838
|
* @param layerTree a WMS LayerTree
|
|
3625
3839
|
* @returns Flat array of layers as LayerProps[]
|
|
3626
3840
|
*/
|
|
3841
|
+
|
|
3627
3842
|
var privateWmsFlattenLayerTree = function privateWmsFlattenLayerTree(layerTree) {
|
|
3628
3843
|
var omit = function omit(prop, _ref) {
|
|
3629
3844
|
_ref[prop];
|
|
@@ -3752,6 +3967,7 @@ var privateWmtsGetCapabilities = /*#__PURE__*/function () {
|
|
|
3752
3967
|
return _ref3.apply(this, arguments);
|
|
3753
3968
|
};
|
|
3754
3969
|
}();
|
|
3970
|
+
|
|
3755
3971
|
/**
|
|
3756
3972
|
* privateWmsGetCapabilityElement
|
|
3757
3973
|
* @param jsonData
|
|
@@ -3874,6 +4090,7 @@ var privateCheckVersion = function privateCheckVersion(jsonData) {
|
|
|
3874
4090
|
}
|
|
3875
4091
|
return WMSVersion.version111;
|
|
3876
4092
|
};
|
|
4093
|
+
|
|
3877
4094
|
/**
|
|
3878
4095
|
* Returns a LayerTree object representing hierarchical structure of Lahyers in the WMS GetCapabilities document
|
|
3879
4096
|
* @param jsonData WMSGetCapabilities
|
|
@@ -3887,6 +4104,7 @@ var privateWmsGetLayerTree = function privateWmsGetLayerTree(jsonData) {
|
|
|
3887
4104
|
var rootLayer = privateWmsGetCapabilityElement(jsonData).Layer;
|
|
3888
4105
|
return privateWmsBuildLayerTreeFromNestedWMSLayer(rootLayer);
|
|
3889
4106
|
};
|
|
4107
|
+
|
|
3890
4108
|
/**
|
|
3891
4109
|
* Builds a standardized LayerTree object based on WMSLayerFromGetCapabilities object.
|
|
3892
4110
|
* @param wmsLayer The WMSLayerFromGetCapabilities object
|
|
@@ -3920,12 +4138,14 @@ var wmsGetCapabilitiesTestFetcher = null;
|
|
|
3920
4138
|
var setWMSGetCapabilitiesFetcher = function setWMSGetCapabilitiesFetcher(functionToSet) {
|
|
3921
4139
|
wmsGetCapabilitiesTestFetcher = functionToSet;
|
|
3922
4140
|
};
|
|
4141
|
+
|
|
3923
4142
|
/**
|
|
3924
4143
|
* Returns details about the WMS service. You are encouraged to use queryWMSServiceInfo instead.
|
|
3925
4144
|
* @param getCapabilitiesJson
|
|
3926
4145
|
* @param serviceUrl
|
|
3927
4146
|
* @returns
|
|
3928
4147
|
*/
|
|
4148
|
+
|
|
3929
4149
|
var privateGetWMSServiceInfo = function privateGetWMSServiceInfo(getCapabilitiesJson, serviceUrl) {
|
|
3930
4150
|
var _wmsService$Abstract, _wmsService$Title, _wmsService$OnlineRes, _wmsService$OnlineRes2, _wmsService$OnlineRes3, _wmsCapability$Reques;
|
|
3931
4151
|
var wmsCapabilities = getCapabilitiesJson.WMS_Capabilities || getCapabilitiesJson.WMT_MS_Capabilities;
|
|
@@ -3942,12 +4162,14 @@ var privateGetWMSServiceInfo = function privateGetWMSServiceInfo(getCapabilities
|
|
|
3942
4162
|
};
|
|
3943
4163
|
return service;
|
|
3944
4164
|
};
|
|
4165
|
+
|
|
3945
4166
|
/**
|
|
3946
4167
|
* Returns details about the WMTS service. You are encouraged to use queryWMSServiceInfo instead.
|
|
3947
4168
|
* @param getCapabilitiesJson
|
|
3948
4169
|
* @param serviceUrl
|
|
3949
4170
|
* @returns
|
|
3950
4171
|
*/
|
|
4172
|
+
|
|
3951
4173
|
var privateGetWMTSServiceInfo = function privateGetWMTSServiceInfo(getCapabilitiesJson, serviceUrl) {
|
|
3952
4174
|
var _getCapabilitiesJson$, _getCapabilitiesJson$2;
|
|
3953
4175
|
var service = {
|
|
@@ -3961,6 +4183,7 @@ var privateGetWMTSServiceInfo = function privateGetWMTSServiceInfo(getCapabiliti
|
|
|
3961
4183
|
};
|
|
3962
4184
|
return service;
|
|
3963
4185
|
};
|
|
4186
|
+
|
|
3964
4187
|
/**
|
|
3965
4188
|
* Makes a uniform and harmonized URL used as caching key in TanStack
|
|
3966
4189
|
* @param serviceUrl
|
|
@@ -3969,6 +4192,7 @@ var privateGetWMTSServiceInfo = function privateGetWMTSServiceInfo(getCapabiliti
|
|
|
3969
4192
|
var makeQueryKeyFroMServiceUrl = function makeQueryKeyFroMServiceUrl(serviceUrl) {
|
|
3970
4193
|
return new URLSearchParams(serviceUrl).toString();
|
|
3971
4194
|
};
|
|
4195
|
+
|
|
3972
4196
|
/**
|
|
3973
4197
|
* Parses WMTS GetCapabilities and returns an array of LayerProps
|
|
3974
4198
|
* @param getCapabilities
|
|
@@ -3984,6 +4208,7 @@ var handleWMTSGetCapabilities = function handleWMTSGetCapabilities(getCapabiliti
|
|
|
3984
4208
|
return null;
|
|
3985
4209
|
}
|
|
3986
4210
|
var layerDimensions = [];
|
|
4211
|
+
|
|
3987
4212
|
// Configure dimensions
|
|
3988
4213
|
var getCapDimensions = Array.isArray(layer.Dimension) ? layer.Dimension : [layer.Dimension];
|
|
3989
4214
|
getCapDimensions == null || getCapDimensions.forEach(function (dim) {
|
|
@@ -4002,6 +4227,7 @@ var handleWMTSGetCapabilities = function handleWMTSGetCapabilities(getCapabiliti
|
|
|
4002
4227
|
layerDimensions.push(dimension);
|
|
4003
4228
|
}
|
|
4004
4229
|
});
|
|
4230
|
+
|
|
4005
4231
|
// Styles are probably not defined for WMTS layers, but we create a default style
|
|
4006
4232
|
var layerStyles = [{
|
|
4007
4233
|
name: 'default',
|
|
@@ -4041,6 +4267,8 @@ var handleWMTSGetCapabilities = function handleWMTSGetCapabilities(getCapabiliti
|
|
|
4041
4267
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
4042
4268
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
4043
4269
|
* */
|
|
4270
|
+
|
|
4271
|
+
|
|
4044
4272
|
/**
|
|
4045
4273
|
* This is the default TanStack QueryClient used for the query functions.
|
|
4046
4274
|
* It can be used in react by a provider to provide the query client to the hook functions.
|
|
@@ -4086,6 +4314,7 @@ var invalidateWMSGetCapabilities = /*#__PURE__*/function () {
|
|
|
4086
4314
|
return _ref.apply(this, arguments);
|
|
4087
4315
|
};
|
|
4088
4316
|
}();
|
|
4317
|
+
|
|
4089
4318
|
/**
|
|
4090
4319
|
* Determines whether the service is WMS or WMTS
|
|
4091
4320
|
*
|
|
@@ -4106,8 +4335,8 @@ var queryOGCTypeWMSorWMTS = /*#__PURE__*/function () {
|
|
|
4106
4335
|
return _context2.abrupt("return", wmsQueryClient.fetchQuery({
|
|
4107
4336
|
queryKey: [makeQueryKeyFroMServiceUrl(serviceUrl), QUERYWMS_OGCTYPE],
|
|
4108
4337
|
queryFn: function queryFn() {
|
|
4109
|
-
var
|
|
4110
|
-
var WMTS = ((
|
|
4338
|
+
var _Capabilities;
|
|
4339
|
+
var WMTS = ((_Capabilities = data.Capabilities) == null || (_Capabilities = _Capabilities.ServiceIdentification) == null || (_Capabilities = _Capabilities.ServiceType) == null ? void 0 : _Capabilities.value) === 'OGC WMTS';
|
|
4111
4340
|
return WMTS ? OGCTYPE.WMTS : OGCTYPE.WMS;
|
|
4112
4341
|
}
|
|
4113
4342
|
}));
|
|
@@ -4121,6 +4350,7 @@ var queryOGCTypeWMSorWMTS = /*#__PURE__*/function () {
|
|
|
4121
4350
|
return _ref2.apply(this, arguments);
|
|
4122
4351
|
};
|
|
4123
4352
|
}();
|
|
4353
|
+
|
|
4124
4354
|
/**
|
|
4125
4355
|
* Fetches the WMS GetCapabilities document and converts it to a json object. It is cached by TanStack.
|
|
4126
4356
|
*
|
|
@@ -4149,6 +4379,7 @@ var queryWMSGetCapabilities = /*#__PURE__*/function () {
|
|
|
4149
4379
|
return _ref3.apply(this, arguments);
|
|
4150
4380
|
};
|
|
4151
4381
|
}();
|
|
4382
|
+
|
|
4152
4383
|
/**
|
|
4153
4384
|
* Gets the layer tree in hierarchical order for a WMS service. Cached by TanStack. Uses the same store as in queryWMSGetCapabilities.
|
|
4154
4385
|
*
|
|
@@ -4182,6 +4413,7 @@ var queryWMSLayersTree = /*#__PURE__*/function () {
|
|
|
4182
4413
|
return _ref4.apply(this, arguments);
|
|
4183
4414
|
};
|
|
4184
4415
|
}();
|
|
4416
|
+
|
|
4185
4417
|
/**
|
|
4186
4418
|
* Returns details about the WMS service
|
|
4187
4419
|
*
|
|
@@ -4232,6 +4464,7 @@ var queryWMSServiceInfo = /*#__PURE__*/function () {
|
|
|
4232
4464
|
return _ref5.apply(this, arguments);
|
|
4233
4465
|
};
|
|
4234
4466
|
}();
|
|
4467
|
+
|
|
4235
4468
|
/**
|
|
4236
4469
|
* Gets the flat layer list (without hierarchy) for a WMS service. Cached by TanStack. Uses the same store as in queryWMSGetCapabilities.
|
|
4237
4470
|
*
|
|
@@ -4293,6 +4526,7 @@ var queryWMSLayers = /*#__PURE__*/function () {
|
|
|
4293
4526
|
return _ref6.apply(this, arguments);
|
|
4294
4527
|
};
|
|
4295
4528
|
}();
|
|
4529
|
+
|
|
4296
4530
|
/**
|
|
4297
4531
|
* Returns specific layer from the WMS service
|
|
4298
4532
|
*
|
|
@@ -4342,6 +4576,7 @@ var queryWMSLayer = /*#__PURE__*/function () {
|
|
|
4342
4576
|
return _ref7.apply(this, arguments);
|
|
4343
4577
|
};
|
|
4344
4578
|
}();
|
|
4579
|
+
|
|
4345
4580
|
/**
|
|
4346
4581
|
* Fetches the WMTS GetCapabilities document and converts it to a json object. It is cached by TanStack.
|
|
4347
4582
|
*
|
|
@@ -4388,6 +4623,7 @@ var queryWMTSGetCapabilities = /*#__PURE__*/function () {
|
|
|
4388
4623
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
4389
4624
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
4390
4625
|
* */
|
|
4626
|
+
|
|
4391
4627
|
var tilesettings = {
|
|
4392
4628
|
WorldMap_Light_Grey_Canvas: {
|
|
4393
4629
|
'EPSG:3857': {
|
|
@@ -4515,20 +4751,6 @@ var tilesettings = {
|
|
|
4515
4751
|
tileServerType: 'osm',
|
|
4516
4752
|
copyRight: 'Natural Earth II | Ingmapping'
|
|
4517
4753
|
},
|
|
4518
|
-
'EPSG:32661': {
|
|
4519
|
-
home: 'https://geoweb-maps-assets.pmc.knmi.cloud/WorldMap/EPSG32661/',
|
|
4520
|
-
minLevel: 4,
|
|
4521
|
-
maxLevel: 9,
|
|
4522
|
-
tileServerType: 'osm',
|
|
4523
|
-
copyRight: 'Natural Earth II | Ingmapping'
|
|
4524
|
-
},
|
|
4525
|
-
'EPSG:54030': {
|
|
4526
|
-
home: 'https://geoweb-maps-assets.pmc.knmi.cloud/WorldMap/EPSG54030/',
|
|
4527
|
-
minLevel: 3,
|
|
4528
|
-
maxLevel: 9,
|
|
4529
|
-
tileServerType: 'osm',
|
|
4530
|
-
copyRight: 'Natural Earth II | Ingmapping'
|
|
4531
|
-
},
|
|
4532
4754
|
'EPSG:3575': {
|
|
4533
4755
|
home: 'https://geoweb-maps-assets.pmc.knmi.cloud/WorldMap/EPSG3575/',
|
|
4534
4756
|
minLevel: 5,
|
|
@@ -4677,26 +4899,6 @@ var tilesettings = {
|
|
|
4677
4899
|
resolution: 23437,
|
|
4678
4900
|
tileServerType: 'wmst',
|
|
4679
4901
|
copyRight: 'NPS - Natural Earth II'
|
|
4680
|
-
},
|
|
4681
|
-
'EPSG:32661': {
|
|
4682
|
-
home: 'https://geoweb-maps-assets.pmc.knmi.cloud/NaturalEarth2/EPSG32661/',
|
|
4683
|
-
minLevel: 1,
|
|
4684
|
-
maxLevel: 7,
|
|
4685
|
-
origX: -5e6,
|
|
4686
|
-
origY: 4000000,
|
|
4687
|
-
resolution: 58593.75,
|
|
4688
|
-
tileServerType: 'wmst',
|
|
4689
|
-
copyRight: 'NPS - Natural Earth II'
|
|
4690
|
-
},
|
|
4691
|
-
'EPSG:54030': {
|
|
4692
|
-
home: 'https://geoweb-maps-assets.pmc.knmi.cloud/NaturalEarth2/EPSG54030/',
|
|
4693
|
-
minLevel: 1,
|
|
4694
|
-
maxLevel: 7,
|
|
4695
|
-
origX: -17e6,
|
|
4696
|
-
origY: 8625830,
|
|
4697
|
-
resolution: 132812.5,
|
|
4698
|
-
tileServerType: 'wmst',
|
|
4699
|
-
copyRight: 'NPS - Natural Earth II'
|
|
4700
4902
|
}
|
|
4701
4903
|
}
|
|
4702
4904
|
};
|
|
@@ -4704,7 +4906,51 @@ var tilesettings = {
|
|
|
4704
4906
|
var WMLayer = /*#__PURE__*/function () {
|
|
4705
4907
|
function WMLayer(options) {
|
|
4706
4908
|
var _this = this;
|
|
4707
|
-
this.
|
|
4909
|
+
this.id = void 0;
|
|
4910
|
+
this.name = void 0;
|
|
4911
|
+
this.ReactWMJSLayerId = void 0;
|
|
4912
|
+
this.hasError = void 0;
|
|
4913
|
+
this.enabled = void 0;
|
|
4914
|
+
this.lastError = void 0;
|
|
4915
|
+
this.legendGraphic = void 0;
|
|
4916
|
+
this.title = void 0;
|
|
4917
|
+
this.opacity = void 0;
|
|
4918
|
+
this.service = void 0;
|
|
4919
|
+
this.layerType = void 0;
|
|
4920
|
+
this.currentStyle = void 0;
|
|
4921
|
+
this.linkedInfo = void 0;
|
|
4922
|
+
this.headers = void 0;
|
|
4923
|
+
this.autoupdate = void 0;
|
|
4924
|
+
this.timer = void 0;
|
|
4925
|
+
this.getmapURL = void 0;
|
|
4926
|
+
this.getfeatureinfoURL = void 0;
|
|
4927
|
+
this.getlegendgraphicURL = void 0;
|
|
4928
|
+
this.keepOnTop = void 0;
|
|
4929
|
+
this.transparent = void 0;
|
|
4930
|
+
this.wms130bboxcompatibilitymode = void 0;
|
|
4931
|
+
this.version = void 0;
|
|
4932
|
+
this.path = void 0;
|
|
4933
|
+
this.type = void 0;
|
|
4934
|
+
this["abstract"] = void 0;
|
|
4935
|
+
this.dimensions = void 0;
|
|
4936
|
+
this.projectionProperties = void 0;
|
|
4937
|
+
this.queryable = void 0;
|
|
4938
|
+
this.styles = void 0;
|
|
4939
|
+
this.serviceTitle = void 0;
|
|
4940
|
+
this.sldURL = void 0;
|
|
4941
|
+
this.active = void 0;
|
|
4942
|
+
this.getgraphinfoURL = void 0;
|
|
4943
|
+
this.format = void 0;
|
|
4944
|
+
this._options = void 0;
|
|
4945
|
+
this.onReady = void 0;
|
|
4946
|
+
this.optimalFormat = void 0;
|
|
4947
|
+
this.wmsextensions = void 0;
|
|
4948
|
+
this.isConfigured = void 0;
|
|
4949
|
+
this.geographicBoundingBox = void 0;
|
|
4950
|
+
this.geojson = void 0;
|
|
4951
|
+
this.currentRequestedGetMapURL = void 0;
|
|
4952
|
+
this.olSource = null;
|
|
4953
|
+
// Reference to olSource. Need to check if animation can go forward.
|
|
4708
4954
|
this.refTimeDimensionMode = undefined;
|
|
4709
4955
|
this.init = this.init.bind(this);
|
|
4710
4956
|
this.getLayerName = this.getLayerName.bind(this);
|
|
@@ -4914,8 +5160,10 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
4914
5160
|
if (jsonlayer) {
|
|
4915
5161
|
/** ***************** Go through styles **************** */
|
|
4916
5162
|
configureStyles(jsonlayer, this);
|
|
5163
|
+
|
|
4917
5164
|
/** ***************** Go through Dimensions **************** */
|
|
4918
5165
|
configureDimensions(jsonlayer, this);
|
|
5166
|
+
|
|
4919
5167
|
/** ***************** Go through geographicBoundingBox **************** */
|
|
4920
5168
|
configureGeographicBoundingBox(jsonlayer, this);
|
|
4921
5169
|
this.queryable = jsonlayer.queryable || false;
|
|
@@ -4944,6 +5192,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
4944
5192
|
this.lastError = consoleErrorMessages.layerNotFoundInService + " - " + this.name;
|
|
4945
5193
|
}
|
|
4946
5194
|
}
|
|
5195
|
+
|
|
4947
5196
|
/** A Promise to parse the layer, it will fetch the WMS GetCapabilities document, configure the layer and resolve to a WMLayer object
|
|
4948
5197
|
* @param forceReload Do not use the cache of the WMS GetCapabilities document, but instead fetch new data from the server
|
|
4949
5198
|
* @returns WMLayer object
|
|
@@ -5044,6 +5293,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5044
5293
|
});
|
|
5045
5294
|
return newLayer;
|
|
5046
5295
|
}
|
|
5296
|
+
|
|
5047
5297
|
/**
|
|
5048
5298
|
* Set or change the name of this layer. This involves re-parsing the WMS GetCapabilities document and updating the affected layer properties. When done, it resolves the WMLayer
|
|
5049
5299
|
* @param name The name of the layer
|
|
@@ -5053,6 +5303,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5053
5303
|
this.name = name;
|
|
5054
5304
|
return this.parseLayer();
|
|
5055
5305
|
}
|
|
5306
|
+
|
|
5056
5307
|
/**
|
|
5057
5308
|
* Sets the style by its name
|
|
5058
5309
|
* @param style: The name of the style (not the object)
|
|
@@ -5086,6 +5337,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5086
5337
|
}
|
|
5087
5338
|
return [];
|
|
5088
5339
|
}
|
|
5340
|
+
|
|
5089
5341
|
/**
|
|
5090
5342
|
* Get the styleobject by name
|
|
5091
5343
|
* @param styleName The name of the style
|
|
@@ -5114,6 +5366,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5114
5366
|
}
|
|
5115
5367
|
return undefined;
|
|
5116
5368
|
}
|
|
5369
|
+
|
|
5117
5370
|
/*
|
|
5118
5371
|
*Get the current stylename as used in the getmap request
|
|
5119
5372
|
*/;
|
|
@@ -5125,6 +5378,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5125
5378
|
return dim.name === name;
|
|
5126
5379
|
});
|
|
5127
5380
|
}
|
|
5381
|
+
|
|
5128
5382
|
/**
|
|
5129
5383
|
* Returns the Coordinate Reference Systems for this layer
|
|
5130
5384
|
* @returns List of WMProjection objects
|
|
@@ -5145,6 +5399,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5145
5399
|
}
|
|
5146
5400
|
return crs;
|
|
5147
5401
|
}
|
|
5402
|
+
|
|
5148
5403
|
/**
|
|
5149
5404
|
* Get Coordinate reference system by name
|
|
5150
5405
|
*
|
|
@@ -5166,6 +5421,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5166
5421
|
}
|
|
5167
5422
|
return undefined;
|
|
5168
5423
|
}
|
|
5424
|
+
|
|
5169
5425
|
/**
|
|
5170
5426
|
* Get Coordinate reference system by name. Note 2021-05-17: It is more inline with other function names to use the getCRSByName function instead.
|
|
5171
5427
|
*
|
|
@@ -5201,6 +5457,7 @@ var WMLayer = /*#__PURE__*/function () {
|
|
|
5201
5457
|
* Copyright 2020 - Finnish Meteorological Institute (FMI)
|
|
5202
5458
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
5203
5459
|
* */
|
|
5460
|
+
|
|
5204
5461
|
var wmServiceListener = new WMListener();
|
|
5205
5462
|
|
|
5206
5463
|
/* *
|
|
@@ -5220,6 +5477,7 @@ var wmServiceListener = new WMListener();
|
|
|
5220
5477
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
5221
5478
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
5222
5479
|
* */
|
|
5480
|
+
|
|
5223
5481
|
var radarGetCapabilities = {
|
|
5224
5482
|
WMS_Capabilities: {
|
|
5225
5483
|
attr: {
|
|
@@ -5447,9 +5705,6 @@ var radarGetCapabilities = {
|
|
|
5447
5705
|
}, {
|
|
5448
5706
|
attr: {},
|
|
5449
5707
|
value: 'EPSG:54030'
|
|
5450
|
-
}, {
|
|
5451
|
-
attr: {},
|
|
5452
|
-
value: 'EPSG:32661'
|
|
5453
5708
|
}, {
|
|
5454
5709
|
attr: {},
|
|
5455
5710
|
value: 'EPSG:40000'
|
|
@@ -5564,14 +5819,6 @@ var radarGetCapabilities = {
|
|
|
5564
5819
|
maxx: '853649.695106',
|
|
5565
5820
|
maxy: '5936394.291427'
|
|
5566
5821
|
}
|
|
5567
|
-
}, {
|
|
5568
|
-
attr: {
|
|
5569
|
-
CRS: 'EPSG:32661',
|
|
5570
|
-
minx: '2000000.000000',
|
|
5571
|
-
miny: '-2703305.597319',
|
|
5572
|
-
maxx: '2745713.040381',
|
|
5573
|
-
maxy: '-1888346.216710'
|
|
5574
|
-
}
|
|
5575
5822
|
}, {
|
|
5576
5823
|
attr: {
|
|
5577
5824
|
CRS: 'EPSG:40000',
|
|
@@ -5734,14 +5981,6 @@ var radarGetCapabilities = {
|
|
|
5734
5981
|
maxx: '853649.695106',
|
|
5735
5982
|
maxy: '5936394.291427'
|
|
5736
5983
|
}
|
|
5737
|
-
}, {
|
|
5738
|
-
attr: {
|
|
5739
|
-
CRS: 'EPSG:32661',
|
|
5740
|
-
minx: '2000000.000000',
|
|
5741
|
-
miny: '-2703305.597319',
|
|
5742
|
-
maxx: '2745713.040381',
|
|
5743
|
-
maxy: '-1888346.216710'
|
|
5744
|
-
}
|
|
5745
5984
|
}, {
|
|
5746
5985
|
attr: {
|
|
5747
5986
|
CRS: 'EPSG:40000',
|
|
@@ -6072,14 +6311,6 @@ var radarGetCapabilities = {
|
|
|
6072
6311
|
maxx: '853649.695106',
|
|
6073
6312
|
maxy: '5936394.291427'
|
|
6074
6313
|
}
|
|
6075
|
-
}, {
|
|
6076
|
-
attr: {
|
|
6077
|
-
CRS: 'EPSG:32661',
|
|
6078
|
-
minx: '2000000.000000',
|
|
6079
|
-
miny: '-2703305.597319',
|
|
6080
|
-
maxx: '2745713.040381',
|
|
6081
|
-
maxy: '-1888346.216710'
|
|
6082
|
-
}
|
|
6083
6314
|
}, {
|
|
6084
6315
|
attr: {
|
|
6085
6316
|
CRS: 'EPSG:40000',
|
|
@@ -6192,7 +6423,8 @@ var radarGetCapabilities = {
|
|
|
6192
6423
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
6193
6424
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6194
6425
|
* */
|
|
6195
|
-
var xml$4 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities\n version=\"1.3.0\"\n updateSequence=\"0\"\n xmlns=\"http://www.opengis.net/wms\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\"\n\n >\n <Service>\n <Name>WMS</Name>\n <Title>HARM_N25</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43 </Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/>\n <ContactInformation>\n \n </ContactInformation>\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n<Layer>\n<Title>WMS of HARM_N25</Title>\n<CRS>EPSG:3411</CRS>\n<CRS>EPSG:3412</CRS>\n<CRS>EPSG:3575</CRS>\n<CRS>EPSG:3857</CRS>\n<CRS>EPSG:4258</CRS>\n<CRS>EPSG:4326</CRS>\n<CRS>CRS:84</CRS>\n<CRS>EPSG:25831</CRS>\n<CRS>EPSG:25832</CRS>\n<CRS>EPSG:28992</CRS>\n<CRS>EPSG:7399</CRS>\n<CRS>EPSG:50001</CRS>\n<CRS>EPSG:54030</CRS>\n<CRS>EPSG:32661</CRS>\n<CRS>EPSG:40000</CRS>\n<CRS>EPSG:900913</CRS>\n<CRS>PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs</CRS>\n<BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>geopotential__at_pl</Name>\n<Title>Geopotential height (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>geopotential/contour</Name> <Title>Geopotential contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=geopotential/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_pressure_at_sea_level</Name>\n<Title>Pressure MSL</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>pressure_cwk/contour</Name> <Title>Pressure contour (1/5)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>pressure_cwk_2.5/contour</Name> <Title>Pressure contour (2.5/10)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk_2.5/contour\"/> </LegendURL> </Style> <Style> <Name>pressure_cwk_5/contour</Name> <Title>Pressure contour (5/10)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk_5/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__at_2m</Name>\n<Title>Temperature 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__at_pl</Name>\n<Title>Temperature (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>dew_point_temperature__at_2m</Name>\n<Title>Dew Point 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind__at_10m</Name>\n<Title>Wind 10m flags</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>Windbarbs/barb</Name> <Title>Wind barbs</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=Windbarbs/barb\"/> </LegendURL> </Style> <Style> <Name>Windbarbs_mps/barbshaded</Name> <Title>Wind barbs+sh</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=Windbarbs_mps/barbshaded\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind__at_pl</Name>\n<Title>Wind vectors (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>Windbarbs/barb</Name> <Title>Wind barbs</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=Windbarbs/barb\"/> </LegendURL> </Style> <Style> <Name>Windbarbs_mps/barbshaded</Name> <Title>Wind barbs+sh</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=Windbarbs_mps/barbshaded\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>precipitation_flux</Name>\n<Title>Prec: Precipitation rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>snowfall_flux</Name>\n<Title>Prec: Snowfall rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>graupel_flux</Name>\n<Title>Prec: graupel rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_area_fraction</Name>\n<Title>Cloud cover - total</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>totalcloudcover/bilinear</Name> <Title>Total cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=totalcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>high_type_cloud_area_fraction</Name>\n<Title>Cloud cover - high</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>highcloudcover/bilinear</Name> <Title>High cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=highcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>medium_type_cloud_area_fraction</Name>\n<Title>Cloud cover - medium</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>midcloudcover/bilinear</Name> <Title>Medium cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=midcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>low_type_cloud_area_fraction</Name>\n<Title>Cloud cover - low</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>lowcloudcover/bilinear</Name> <Title>Low cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=lowcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>relative_humidity__at_2m</Name>\n<Title>Relative humidity 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>relhum/bilinear</Name> <Title>Fraction bilinear</Title> <Abstract>Shaded</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=relhum/bilinear\"/> </LegendURL> </Style> <Style> <Name>relhum/contour</Name> <Title>Fraction contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=relhum/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>relative_humidity__at_pl</Name>\n<Title>Relative humidity (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>relhum/bilinear</Name> <Title>Fraction bilinear</Title> <Abstract>Shaded</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=relhum/bilinear\"/> </LegendURL> </Style> <Style> <Name>relhum/contour</Name> <Title>Fraction contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=relhum/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__max_at_2m</Name>\n<Title>Temperature 2m max.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__min_at_2m</Name>\n<Title>Temperature 2m min.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_top_altitude</Name>\n<Title>Cloud top alt.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_top_altitude&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_top_altitude&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_base_altitude</Name>\n<Title>Cloud base alt.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_base_altitude&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_base_altitude&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind_speed_of_gust__at_10m</Name>\n<Title>Wind 10m gust</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:32661\" minx=\"1998466.191528\" miny=\"-2750310.873970\" maxx=\"2913034.053643\" maxy=\"-1825956.532686\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind_speed_of_gust__at_10m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind_speed_of_gust__at_10m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6426
|
+
|
|
6427
|
+
var xml$4 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities\n version=\"1.3.0\"\n updateSequence=\"0\"\n xmlns=\"http://www.opengis.net/wms\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\"\n\n >\n <Service>\n <Name>WMS</Name>\n <Title>HARM_N25</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43 </Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/>\n <ContactInformation>\n \n </ContactInformation>\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType><HTTP><Get><OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&\"/></Get></HTTP></DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n<Layer>\n<Title>WMS of HARM_N25</Title>\n<CRS>EPSG:3411</CRS>\n<CRS>EPSG:3412</CRS>\n<CRS>EPSG:3575</CRS>\n<CRS>EPSG:3857</CRS>\n<CRS>EPSG:4258</CRS>\n<CRS>EPSG:4326</CRS>\n<CRS>CRS:84</CRS>\n<CRS>EPSG:25831</CRS>\n<CRS>EPSG:25832</CRS>\n<CRS>EPSG:28992</CRS>\n<CRS>EPSG:7399</CRS>\n<CRS>EPSG:50001</CRS>\n<CRS>EPSG:54030</CRS>\n<CRS>EPSG:40000</CRS>\n<CRS>EPSG:900913</CRS>\n<CRS>PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs</CRS>\n<BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>geopotential__at_pl</Name>\n<Title>Geopotential height (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>geopotential/contour</Name> <Title>Geopotential contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=geopotential/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=geopotential__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_pressure_at_sea_level</Name>\n<Title>Pressure MSL</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>pressure_cwk/contour</Name> <Title>Pressure contour (1/5)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>pressure_cwk_2.5/contour</Name> <Title>Pressure contour (2.5/10)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk_2.5/contour\"/> </LegendURL> </Style> <Style> <Name>pressure_cwk_5/contour</Name> <Title>Pressure contour (5/10)</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=pressure_cwk_5/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_pressure_at_sea_level&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__at_2m</Name>\n<Title>Temperature 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__at_pl</Name>\n<Title>Temperature (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>dew_point_temperature__at_2m</Name>\n<Title>Dew Point 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=dew_point_temperature__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind__at_10m</Name>\n<Title>Wind 10m flags</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>Windbarbs/barb</Name> <Title>Wind barbs</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=Windbarbs/barb\"/> </LegendURL> </Style> <Style> <Name>Windbarbs_mps/barbshaded</Name> <Title>Wind barbs+sh</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=Windbarbs_mps/barbshaded\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_10m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind__at_pl</Name>\n<Title>Wind vectors (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>Windbarbs/barb</Name> <Title>Wind barbs</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=Windbarbs/barb\"/> </LegendURL> </Style> <Style> <Name>Windbarbs_mps/barbshaded</Name> <Title>Wind barbs+sh</Title> <Abstract>Rendered with barbs</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=Windbarbs_mps/barbshaded\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>precipitation_flux</Name>\n<Title>Prec: Precipitation rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=precipitation_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>snowfall_flux</Name>\n<Title>Prec: Snowfall rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=snowfall_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>graupel_flux</Name>\n<Title>Prec: graupel rate</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>precip_cwk/shadedcontour</Name> <Title>Precipitation CWKnet shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=precip_cwk/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>precip_cwk/contour</Name> <Title>Precipitation CWKnet contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=precip_cwk/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=graupel_flux&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_area_fraction</Name>\n<Title>Cloud cover - total</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>totalcloudcover/bilinear</Name> <Title>Total cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=totalcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>high_type_cloud_area_fraction</Name>\n<Title>Cloud cover - high</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>highcloudcover/bilinear</Name> <Title>High cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=highcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=high_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>medium_type_cloud_area_fraction</Name>\n<Title>Cloud cover - medium</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>midcloudcover/bilinear</Name> <Title>Medium cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=midcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=medium_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>low_type_cloud_area_fraction</Name>\n<Title>Cloud cover - low</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>cloudcover/bilinear</Name> <Title>Cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=cloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>lowcloudcover/bilinear</Name> <Title>Low cloud cover bilinear</Title> <Abstract>Rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=lowcloudcover/bilinear\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=low_type_cloud_area_fraction&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>relative_humidity__at_2m</Name>\n<Title>Relative humidity 2m</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>relhum/bilinear</Name> <Title>Fraction bilinear</Title> <Abstract>Shaded</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=relhum/bilinear\"/> </LegendURL> </Style> <Style> <Name>relhum/contour</Name> <Title>Fraction contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=relhum/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>relative_humidity__at_pl</Name>\n<Title>Relative humidity (PL)</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"elevation\" units=\"hPa\" default=\"1000\" multipleValues=\"1\" nearestValue=\"0\" >200,300,400,500,600,700,800,850,900,925,950,1000</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>relhum/bilinear</Name> <Title>Fraction bilinear</Title> <Abstract>Shaded</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=relhum/bilinear\"/> </LegendURL> </Style> <Style> <Name>relhum/contour</Name> <Title>Fraction contour</Title> <Abstract>Contourlines on a transparent background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=relhum/contour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=relative_humidity__at_pl&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__max_at_2m</Name>\n<Title>Temperature 2m max.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__max_at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>air_temperature__min_at_2m</Name>\n<Title>Temperature 2m min.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>temperature/shadedcontour</Name> <Title>Temperature shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=temperature/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>temperature-hi/shadedcontour</Name> <Title>Temperature (Hi) shaded + contours</Title> <Abstract>Contours with shaded background</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=temperature-hi/shadedcontour\"/> </LegendURL> </Style> <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=air_temperature__min_at_2m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_top_altitude</Name>\n<Title>Cloud top alt.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_top_altitude&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_top_altitude&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>cloud_base_altitude</Name>\n<Title>Cloud base alt.</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_base_altitude&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=cloud_base_altitude&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n<Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n<Name>wind_speed_of_gust__at_10m</Name>\n<Title>Wind 10m gust</Title>\n<EX_GeographicBoundingBox>\n <westBoundLongitude>-0.018500</westBoundLongitude>\n <eastBoundLongitude>11.081500</eastBoundLongitude>\n <southBoundLatitude>48.988500</southBoundLatitude>\n <northBoundLatitude>55.888499</northBoundLatitude>\n</EX_GeographicBoundingBox><BoundingBox CRS=\"EPSG:3411\" minx=\"2688993.562116\" miny=\"-3278523.471547\" maxx=\"3846301.904223\" maxy=\"-2122703.884475\" />\n<BoundingBox CRS=\"EPSG:3412\" minx=\"-12905.545004\" miny=\"32191797.929062\" maxx=\"7682316.457914\" maxy=\"39969365.065534\" />\n<BoundingBox CRS=\"EPSG:3575\" minx=\"-778807.959117\" miny=\"-4476772.614323\" maxx=\"84497.453773\" maxy=\"-3692751.174658\" />\n<BoundingBox CRS=\"EPSG:3857\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"EPSG:4258\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:4326\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"CRS:84\" minx=\"48.988500\" miny=\"-0.018500\" maxx=\"55.888499\" maxy=\"11.081500\" />\n<BoundingBox CRS=\"EPSG:25831\" minx=\"279182.558346\" miny=\"5426179.030812\" maxx=\"1090961.507595\" maxy=\"6223228.410085\" />\n<BoundingBox CRS=\"EPSG:25832\" minx=\"-159402.202885\" miny=\"5426183.018603\" maxx=\"652276.579080\" maxy=\"6230493.226418\" />\n<BoundingBox CRS=\"EPSG:28992\" minx=\"-240652.647815\" miny=\"110612.618048\" maxx=\"571683.043099\" maxy=\"892835.526754\" />\n<BoundingBox CRS=\"EPSG:7399\" minx=\"-1425.633663\" miny=\"5767138.881305\" maxx=\"853954.563912\" maxy=\"6475446.638616\" />\n<BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n<BoundingBox CRS=\"EPSG:54030\" minx=\"-1527.513706\" miny=\"5221582.890802\" maxx=\"914980.709608\" maxy=\"5927845.206474\" />\n<BoundingBox CRS=\"EPSG:40000\" minx=\"-1543.066873\" miny=\"-4778984.782666\" maxx=\"918545.325596\" maxy=\"-3849050.837712\" />\n<BoundingBox CRS=\"EPSG:900913\" minx=\"-2059.410529\" miny=\"6272910.310152\" maxx=\"1233586.906600\" maxy=\"7536250.885751\" />\n<BoundingBox CRS=\"PROJ4:%2Bproj%3Dlonglat%20%2Ba%3D6367470%20%2Be%3D0%20%2Bno_defs\" minx=\"-0.018500\" miny=\"48.988500\" maxx=\"11.081500\" maxy=\"55.888499\" />\n<Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-10T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z/2021-05-19T03:00:00Z/PT1H</Dimension>\n<Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-17T03:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-05-10T00:00:00Z,2021-05-10T03:00:00Z,2021-05-10T06:00:00Z,2021-05-10T09:00:00Z,2021-05-10T12:00:00Z,2021-05-10T15:00:00Z,2021-05-10T18:00:00Z,2021-05-10T21:00:00Z,2021-05-11T00:00:00Z,2021-05-11T03:00:00Z,2021-05-11T06:00:00Z,2021-05-11T09:00:00Z,2021-05-11T12:00:00Z,2021-05-11T15:00:00Z,2021-05-11T18:00:00Z,2021-05-11T21:00:00Z,2021-05-12T00:00:00Z,2021-05-12T03:00:00Z,2021-05-12T06:00:00Z,2021-05-12T09:00:00Z,2021-05-12T12:00:00Z,2021-05-12T15:00:00Z,2021-05-12T18:00:00Z,2021-05-12T21:00:00Z,2021-05-13T00:00:00Z,2021-05-13T03:00:00Z,2021-05-13T06:00:00Z,2021-05-13T09:00:00Z,2021-05-13T12:00:00Z,2021-05-13T15:00:00Z,2021-05-13T18:00:00Z,2021-05-13T21:00:00Z,2021-05-14T00:00:00Z,2021-05-14T03:00:00Z,2021-05-14T06:00:00Z,2021-05-14T09:00:00Z,2021-05-14T12:00:00Z,2021-05-14T15:00:00Z,2021-05-14T18:00:00Z,2021-05-14T21:00:00Z,2021-05-15T00:00:00Z,2021-05-15T03:00:00Z,2021-05-15T06:00:00Z,2021-05-15T09:00:00Z,2021-05-15T12:00:00Z,2021-05-15T15:00:00Z,2021-05-15T18:00:00Z,2021-05-15T21:00:00Z,2021-05-16T00:00:00Z,2021-05-16T03:00:00Z,2021-05-16T06:00:00Z,2021-05-16T09:00:00Z,2021-05-16T12:00:00Z,2021-05-16T15:00:00Z,2021-05-16T18:00:00Z,2021-05-16T21:00:00Z,2021-05-17T00:00:00Z,2021-05-17T03:00:00Z</Dimension>\n <Style> <Name>auto/nearest</Name> <Title>Automatic minimum and maximum</Title> <Abstract>Automatic min/max rendered with nearest neighbour interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind_speed_of_gust__at_10m&format=image/png&STYLE=auto/nearest\"/> </LegendURL> </Style> <Style> <Name>auto/bilinear</Name> <Title>Automatic minimum and maximum bilinear</Title> <Abstract>Automatic min/max rendered with bilinear interpolation</Abstract> <LegendURL width=\"300\" height=\"400\"> <Format>image/png</Format> <OnlineResource xlink:type=\"simple\" xlink:href=\"https://adaguc-server-geoweb.geoweb.knmi.cloud/wms?DATASET=HARM_N25&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=wind_speed_of_gust__at_10m&format=image/png&STYLE=auto/bilinear\"/> </LegendURL> </Style></Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6196
6428
|
|
|
6197
6429
|
/* *
|
|
6198
6430
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -6211,7 +6443,8 @@ var xml$4 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities\n
|
|
|
6211
6443
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
6212
6444
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6213
6445
|
* */
|
|
6214
|
-
var xml$3 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:32661</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Dimension name=\"elevation\" units=\"PRESSURE\" unitSymbol=\"Pa\" default=\"100000\" multipleValues=\"0\" nearestValue=\"0\">100000,92500,85000,70000,60000,50000,40000,30000,25000</Dimension>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM-inherited</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2022-06-01T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2022-01-01T00:00:00Z/2023-01-01T00:00:00Z/PT5M</Dimension>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6446
|
+
|
|
6447
|
+
var xml$3 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Dimension name=\"elevation\" units=\"PRESSURE\" unitSymbol=\"Pa\" default=\"100000\" multipleValues=\"0\" nearestValue=\"0\">100000,92500,85000,70000,60000,50000,40000,30000,25000</Dimension>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM-inherited</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2022-06-01T00:00:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2022-01-01T00:00:00Z/2023-01-01T00:00:00Z/PT5M</Dimension>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6215
6448
|
|
|
6216
6449
|
/* *
|
|
6217
6450
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -6230,7 +6463,8 @@ var xml$3 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns
|
|
|
6230
6463
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
6231
6464
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6232
6465
|
* */
|
|
6233
|
-
var xml$2 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:32661</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM-inherited</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n \n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6466
|
+
|
|
6467
|
+
var xml$2 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM-inherited</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n \n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6234
6468
|
|
|
6235
6469
|
/* *
|
|
6236
6470
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -6249,7 +6483,8 @@ var xml$2 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns
|
|
|
6249
6483
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
6250
6484
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6251
6485
|
* */
|
|
6252
|
-
var xml$1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:32661</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:32661\" minx=\"2000000.000000\" miny=\"-2703305.597319\" maxx=\"2745713.040381\" maxy=\"-1888346.216710\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue-transparent/nearest</Name>\n <Title>precip-blue-transparent/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue-transparent/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-with-range/nearest</Name>\n <Title>precip-with-range/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-with-range/nearest\" />\n </LegendURL>\n </Style>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6486
|
+
|
|
6487
|
+
var xml$1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"0\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>RADAR</Title>\n <Abstract>This service demonstrates how the ADAGUC server can be used to create OGC services.</Abstract>\n <KeywordList>\n <Keyword>view</Keyword>\n <Keyword>infoMapAccessService</Keyword>\n <Keyword>ADAGUCServer version 2.5.8, of Apr 13 2021 07:55:43</Keyword>\n </KeywordList>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n <ContactInformation />\n <Fees>no conditions apply</Fees>\n <AccessConstraints>None</AccessConstraints>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/png;mode=8bit</Format>\n <Format>image/png;mode=8bit_noalpha</Format>\n <Format>image/png;mode=24bit</Format>\n <Format>image/png;mode=32bit</Format>\n <Format>image/gif</Format>\n <Format>image/jpeg</Format>\n <!--<Format>image/webp</Format>-->\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n <GetFeatureInfo>\n <Format>image/png</Format>\n <Format>text/plain</Format>\n <Format>text/html</Format>\n <Format>text/xml</Format>\n <Format>application/json</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&\" />\n </Get>\n </HTTP>\n </DCPType>\n </GetFeatureInfo>\n </Request>\n <Exception>\n <Format>XML</Format>\n <Format>INIMAGE</Format>\n <Format>BLANK</Format>\n </Exception>\n <UserDefinedSymbolization SupportSLD=\"1\" />\n <Layer>\n <Title>WMS of RADAR</Title>\n <CRS>EPSG:3411</CRS>\n <CRS>EPSG:3412</CRS>\n <CRS>EPSG:3575</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:25831</CRS>\n <CRS>EPSG:25832</CRS>\n <CRS>EPSG:28992</CRS>\n <CRS>EPSG:7399</CRS>\n <CRS>EPSG:50001</CRS>\n <CRS>EPSG:54030</CRS>\n <CRS>EPSG:40000</CRS>\n <CRS>EPSG:900913</CRS>\n <CRS>PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0</CRS>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Layer queryable=\"1\" opaque=\"1\" cascaded=\"0\">\n <Name>RAD_NL25_PCP_CM</Name>\n <Title>Precipitation Radar NL</Title>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>0.000000</westBoundLongitude>\n <eastBoundLongitude>10.856452</eastBoundLongitude>\n https://stackoverflow.com/questions/62249737/how-to-read-xml-filetoolsbox-xml-in-react-typescript\n <southBoundLatitude>48.895303</southBoundLatitude>\n <northBoundLatitude>55.973600</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3411\" minx=\"2682754.743620\" miny=\"-3245034.014141\" maxx=\"3759536.917562\" maxy=\"-2168251.989038\" />\n <BoundingBox CRS=\"EPSG:3412\" minx=\"0.000000\" miny=\"32318824.826266\" maxx=\"7413041.166015\" maxy=\"40075258.815074\" />\n <BoundingBox CRS=\"EPSG:3575\" minx=\"-770622.801471\" miny=\"-4485814.811314\" maxx=\"56845.766135\" maxy=\"-3684039.443620\" />\n <BoundingBox CRS=\"EPSG:3857\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"EPSG:4258\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:4326\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"CRS:84\" minx=\"48.895303\" miny=\"0.000000\" maxx=\"55.973600\" maxy=\"10.856452\" />\n <BoundingBox CRS=\"EPSG:25831\" minx=\"282182.345905\" miny=\"5433247.394267\" maxx=\"997135.658653\" maxy=\"6207204.592736\" />\n <BoundingBox CRS=\"EPSG:25832\" minx=\"-153083.019482\" miny=\"5415817.312927\" maxx=\"617595.626092\" maxy=\"6239769.309937\" />\n <BoundingBox CRS=\"EPSG:28992\" minx=\"-236275.338083\" miny=\"106727.731651\" maxx=\"501527.918656\" maxy=\"900797.079725\" />\n <BoundingBox CRS=\"EPSG:7399\" minx=\"0.000000\" miny=\"5757301.056717\" maxx=\"763611.971696\" maxy=\"6483919.801602\" />\n <BoundingBox CRS=\"EPSG:50001\" minx=\"-2000000.000000\" miny=\"-2000000.000000\" maxx=\"10000000.000000\" maxy=\"8500000.000000\" />\n <BoundingBox CRS=\"EPSG:54030\" minx=\"0.000000\" miny=\"5211855.054125\" maxx=\"853649.695106\" maxy=\"5936394.291427\" />\n <BoundingBox CRS=\"EPSG:40000\" minx=\"0.000000\" miny=\"-4731695.771951\" maxx=\"750214.326339\" maxy=\"-3911817.119426\" />\n <BoundingBox CRS=\"EPSG:900913\" minx=\"0.000000\" miny=\"6257115.219364\" maxx=\"1208534.698398\" maxy=\"7553161.958695\" />\n <BoundingBox CRS=\"PROJ4:%2Bproj%3Dstere%20%2Blat_0%3D90%20%2Blon_0%3D0%20%2Blat_ts%3D60%20%2Ba%3D6378%2E14%20%2Bb%3D6356%2E75%20%2Bx_0%3D0%20y_0%3D0\" minx=\"0.000000\" miny=\"-3649.999338\" maxx=\"700.002420\" maxy=\"-4415.002986\" />\n <Dimension name=\"time\" units=\"ISO8601\" default=\"2021-05-14T07:35:00Z\" multipleValues=\"1\" nearestValue=\"0\" current=\"1\">2021-03-31T09:25:00Z/2021-05-14T07:35:00Z/PT5M</Dimension>\n <Style>\n <Name>radar/nearest</Name>\n <Title>radar/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=radar/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-rainbow/nearest</Name>\n <Title>precip-rainbow/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-rainbow/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-gray/nearest</Name>\n <Title>precip-gray/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-gray/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue/nearest</Name>\n <Title>precip-blue/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-blue-transparent/nearest</Name>\n <Title>precip-blue-transparent/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-blue-transparent/nearest\" />\n </LegendURL>\n </Style>\n <Style>\n <Name>precip-with-range/nearest</Name>\n <Title>precip-with-range/nearest</Title>\n <LegendURL width=\"300\" height=\"400\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://geoservices.knmi.nl/wms?DATASET=RADAR&SERVICE=WMS&&version=1.1.1&service=WMS&request=GetLegendGraphic&layer=RAD_NL25_PCP_CM&format=image/png&STYLE=precip-with-range/nearest\" />\n </LegendURL>\n </Style>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>";
|
|
6253
6488
|
|
|
6254
6489
|
/* *
|
|
6255
6490
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -6268,6 +6503,7 @@ var xml$1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities xmlns
|
|
|
6268
6503
|
* Copyright 2025 - Finnish Meteorological Institute (FMI)
|
|
6269
6504
|
* Copyright 2025 - The Norwegian Meteorological Institute (MET Norway)
|
|
6270
6505
|
* */
|
|
6506
|
+
|
|
6271
6507
|
var WMS130GetCapabilitiesWithoutLegend = "<?xml version=\"1.0\"?>\n<WMS_Capabilities xmlns=\"http://www.opengis.net/wms\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.3.0\" updateSequence=\"1737582762\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\">\n <Service>\n <Name>WMS</Name>\n <Title>WMS Example</Title>\n <Abstract>Example abstract.</Abstract>\n <KeywordList/>\n <OnlineResource xlink:href=\"http://localhost:3000/wms?\" xlink:type=\"simple\"/>\n <Fees>none</Fees>\n <AccessConstraints>none</AccessConstraints>\n <LayerLimit>1</LayerLimit>\n <MaxWidth>8192</MaxWidth>\n <MaxHeight>8192</MaxHeight>\n </Service>\n <Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:href=\"http://localhost:3000/wms?\" xlink:type=\"simple\"/>\n </Get>\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:href=\"http://localhost:3000/wms?\" xlink:type=\"simple\"/>\n </Get>\n </HTTP>\n </DCPType>\n </GetMap>\n </Request>\n <Exception>\n <Format>XML</Format>\n </Exception>\n <Layer>\n <Title>example</Title>\n <CRS>EPSG:3857</CRS>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>-180</westBoundLongitude>\n <eastBoundLongitude>180</eastBoundLongitude>\n <southBoundLatitude>-90</southBoundLatitude>\n <northBoundLatitude>90</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"EPSG:3857\" minx=\"-20037508.34\" miny=\"-20048966.1\" maxx=\"20037508.34\" maxy=\"20048966.1\"/>\n <Layer>\n <Name>my_name</Name>\n <Title>My Title</Title>\n <Abstract>My Abstract</Abstract>\n <Dimension name=\"time\" units=\"ISO8601\">2025-01-22T00:00:00Z</Dimension>\n <Style>\n <Name>standard</Name>\n <Title>Standard</Title>\n <!-- LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:href=\"http://localhost:3000/jada\" xlink:type=\"simple\"/>\n </LegendURL -->\n </Style>\n </Layer>\n </Layer>\n </Capability>\n</WMS_Capabilities>\n";
|
|
6272
6508
|
|
|
6273
6509
|
/* *
|
|
@@ -6287,6 +6523,7 @@ var WMS130GetCapabilitiesWithoutLegend = "<?xml version=\"1.0\"?>\n<WMS_Capabili
|
|
|
6287
6523
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
6288
6524
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6289
6525
|
* */
|
|
6526
|
+
|
|
6290
6527
|
var xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<WMS_Capabilities version=\"1.3.0\" xmlns=\"http://www.opengis.net/wms\" xmlns:xsi=\"https://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<Service>\n <Name>WMS</Name>\n <Title>SmartMet Web Map Service</Title>\n <Abstract>Web Map Service Powered by SmartMet Server</Abstract>\n <KeywordList>\n <Keyword>weather</Keyword>\n <Keyword>forecast</Keyword>\n <Keyword>hirlam</Keyword>\n <Keyword>meps</Keyword>\n <Keyword>smartmetserver</Keyword>\n </KeywordList>\n <OnlineResource xlink:href=\"https://github.com/fmidev/smartmet-server\"/>\n</Service>\n<Capability>\n <Request>\n <GetCapabilities>\n <Format>text/xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\"\n xlink:href=\"https://data.apps.meteo.fi/wms\"/>\n </Get>\n\n </HTTP>\n </DCPType>\n </GetCapabilities>\n <GetMap>\n <Format>image/png</Format>\n <Format>image/svg+xml</Format>\n <DCPType>\n <HTTP>\n <Get>\n <OnlineResource xlink:type=\"simple\"\n xlink:href=\"https://data.apps.meteo.fi/wms\"/>\n </Get>\n\n </HTTP>\n </DCPType>\n </GetMap>\n </Request>\n <Exception>\n <Format>XML</Format>\n </Exception>\n <Layer>\n <Title>SmartMet Web Map Service</Title>\n\n <Layer queryable=\"0\">\n <Title>hbm</Title>\n <CRS>CRS:27</CRS>\n <CRS>CRS:83</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:2393</CRS>\n <CRS>EPSG:3035</CRS>\n <CRS>EPSG:3047</CRS>\n <CRS>EPSG:3067</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>9.041</westBoundLongitude>\n <eastBoundLongitude>30.291</eastBoundLongitude>\n <southBoundLatitude>53.025</southBoundLatitude>\n <northBoundLatitude>65.875</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"CRS:27\" minx=\"9.041\" miny=\"53.025\" maxx=\"30.291\" maxy=\"65.875\"/>\n <BoundingBox CRS=\"CRS:83\" minx=\"9.041\" miny=\"53.025\" maxx=\"30.291\" maxy=\"65.875\"/>\n <BoundingBox CRS=\"CRS:84\" minx=\"9.041\" miny=\"53.025\" maxx=\"30.291\" maxy=\"65.875\"/>\n <BoundingBox CRS=\"EPSG:2393\" minx=\"3064557.21476\" miny=\"6651895.28724\" maxx=\"3650275.30418\" maxy=\"7312969.19512\"/>\n <BoundingBox CRS=\"EPSG:3035\" minx=\"4256650.93596\" miny=\"3324481.13996\" maxx=\"5238179.54401\" maxy=\"4886764.90153\"/>\n <BoundingBox CRS=\"EPSG:3047\" minx=\"330890.119265\" miny=\"6615141.39345\" maxx=\"636784.191878\" maxy=\"7309246.52372\"/>\n <BoundingBox CRS=\"EPSG:3067\" minx=\"43547.7892277\" miny=\"6549298.62199\" maxx=\"650042.964634\" maxy=\"7309911.51299\"/>\n <BoundingBox CRS=\"EPSG:3857\" minx=\"1006439.51626\" miny=\"6987623.58323\" maxx=\"3371978.69562\" maxy=\"9842718.24518\"/>\n <BoundingBox CRS=\"EPSG:4258\" minx=\"9.041\" miny=\"53.025\" maxx=\"30.291\" maxy=\"65.875\"/>\n <BoundingBox CRS=\"EPSG:4326\" minx=\"9.041\" miny=\"53.025\" maxx=\"30.291\" maxy=\"65.875\"/>\n <Dimension name=\"time\" units=\"ISO8601\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-14T01:00:00Z/2021-05-16T04:00:00Z/PT1H</Dimension>\n\n <Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-14T00:00:00Z\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-13T12:00:00Z,2021-05-14T00:00:00Z</Dimension>\n\n <Dimension name=\"elevation\" units=\"DepthBelowMeanSeaLevel\" unitSymbol=\"m\" default=\"0\" multipleValues=\"0\" nearestValue=\"0\">0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,150,200,300,400</Dimension>\n\n\n\n\t <Layer queryable=\"1\">\n <Name>hbm:temperature</Name>\n <Title>Sea Surface Temperature</Title>\n <Abstract>Sea Surface Temperature from HBM</Abstract>\n <Style>\n <Name>temperaturestyleforhbm</Name>\n <Title>Default style for HBM Temperature</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hbm%3Atemperature\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\t </Layer>\n <Layer queryable=\"0\">\n <Title>hirlam</Title>\n <CRS>CRS:27</CRS>\n <CRS>CRS:83</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:2393</CRS>\n <CRS>EPSG:3035</CRS>\n <CRS>EPSG:3047</CRS>\n <CRS>EPSG:3067</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>-101.480400722</westBoundLongitude>\n <eastBoundLongitude>102.056746641</eastBoundLongitude>\n <southBoundLatitude>25.6476611912</southBoundLatitude>\n <northBoundLatitude>61.2739846713</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"CRS:27\" minx=\"-101.480400722\" miny=\"25.6476611912\" maxx=\"102.056746641\" maxy=\"61.2739846713\"/>\n <BoundingBox CRS=\"CRS:83\" minx=\"-101.480400722\" miny=\"25.6476611912\" maxx=\"102.056746641\" maxy=\"61.2739846713\"/>\n <BoundingBox CRS=\"CRS:84\" minx=\"-101.480400722\" miny=\"25.6476611912\" maxx=\"102.056746641\" maxy=\"61.2739846713\"/>\n <BoundingBox CRS=\"EPSG:2393\" minx=\"3064557.21476\" miny=\"6651895.28724\" maxx=\"3746240.35345\" maxy=\"6804804.9047\"/>\n <BoundingBox CRS=\"EPSG:3035\" minx=\"-96211.1051714\" miny=\"1631190.4604\" maxx=\"6106555.77383\" maxy=\"4695810.9123\"/>\n <BoundingBox CRS=\"EPSG:3047\" minx=\"330890.119265\" miny=\"6615141.39345\" maxx=\"660818.533807\" maxy=\"6796998.92435\"/>\n <BoundingBox CRS=\"EPSG:3067\" minx=\"43547.7892277\" miny=\"6549298.62199\" maxx=\"745971.121814\" maxy=\"6801952.28915\"/>\n <BoundingBox CRS=\"EPSG:3857\" minx=\"-11296746.5338\" miny=\"2955507.31159\" maxx=\"11360905.0681\" maxy=\"8689007.32535\"/>\n <BoundingBox CRS=\"EPSG:4258\" minx=\"-101.480400722\" miny=\"25.6476611912\" maxx=\"102.056746641\" maxy=\"61.2739846713\"/>\n <BoundingBox CRS=\"EPSG:4326\" minx=\"-101.480400722\" miny=\"25.6476611912\" maxx=\"102.056746641\" maxy=\"61.2739846713\"/>\n <Dimension name=\"time\" units=\"ISO8601\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-14T06:00:00Z/2021-05-16T12:00:00Z/PT1H</Dimension>\n\n <Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-14T06:00:00Z\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-13T12:00:00Z,2021-05-13T18:00:00Z,2021-05-14T00:00:00Z,2021-05-14T06:00:00Z</Dimension>\n\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:precipitation</Name>\n <Title>HIRLAM Precipitation Rate</Title>\n <Abstract>Precipitation Rate from HIRLAM</Abstract>\n <Style>\n <Name>precipitationstyleforhirlam</Name>\n <Title>Default style for hirlam</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Aprecipitation\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:relativehumidity</Name>\n <Title>HIRLAM Relative Humidity 2m</Title>\n <Abstract>Relative Humidity 2m from HIRLAM</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Arelativehumidity\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:temperature</Name>\n <Title>HIRLAM Temperature 2m</Title>\n <Abstract>Temperature 2m from HIRLAM</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Atemperature\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:temperature-850hpa</Name>\n <Title>HIRLAM Temperature 850hPa</Title>\n <Abstract>Temperature 850hPa from HIRLAM</Abstract>\n <Dimension name=\"time\" units=\"ISO8601\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-14T06:00:00Z/2021-05-16T12:00:00Z/PT1H</Dimension>\n\n <Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-14T06:00:00Z\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-14T00:00:00Z,2021-05-14T06:00:00Z</Dimension>\n\n <Dimension name=\"elevation\" units=\"IsobaricLevel\" unitSymbol=\"hPa\" default=\"1000\" multipleValues=\"0\" nearestValue=\"0\">1000,925,850,700,600,500,400,300,250,200,100,50</Dimension>\n\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Atemperature-850hpa\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:totalcloudcover</Name>\n <Title>HIRLAM Total Cloud Cover</Title>\n <Abstract>Total cloud cover from HIRLAM forecast model.</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Atotalcloudcover\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:winddirection</Name>\n <Title>HIRLAM Wind Direction 10m</Title>\n <Abstract>Wind direction from HIRLAM forecast model.</Abstract>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>hirlam:windspeed</Name>\n <Title>HIRLAM Wind Speed 10m</Title>\n <Abstract>Wind speed in m/s from HIRLAM forecast model.</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=hirlam%3Awindspeed\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\t </Layer>\n <Layer queryable=\"0\">\n <Title>meps</Title>\n <CRS>CRS:27</CRS>\n <CRS>CRS:83</CRS>\n <CRS>CRS:84</CRS>\n <CRS>EPSG:2393</CRS>\n <CRS>EPSG:3035</CRS>\n <CRS>EPSG:3047</CRS>\n <CRS>EPSG:3067</CRS>\n <CRS>EPSG:3857</CRS>\n <CRS>EPSG:4258</CRS>\n <CRS>EPSG:4326</CRS>\n <EX_GeographicBoundingBox>\n <westBoundLongitude>-18.1181798512</westBoundLongitude>\n <eastBoundLongitude>54.237</eastBoundLongitude>\n <southBoundLatitude>49.7657866394</southBoundLatitude>\n <northBoundLatitude>72.7612723061</northBoundLatitude>\n </EX_GeographicBoundingBox>\n <BoundingBox CRS=\"CRS:27\" minx=\"-18.1181798512\" miny=\"49.7657866394\" maxx=\"54.237\" maxy=\"72.7612723061\"/>\n <BoundingBox CRS=\"CRS:83\" minx=\"-18.1181798512\" miny=\"49.7657866394\" maxx=\"54.237\" maxy=\"72.7612723061\"/>\n <BoundingBox CRS=\"CRS:84\" minx=\"-18.1181798512\" miny=\"49.7657866394\" maxx=\"54.237\" maxy=\"72.7612723061\"/>\n <BoundingBox CRS=\"EPSG:2393\" minx=\"3064557.21476\" miny=\"6651895.28724\" maxx=\"3674549.99025\" maxy=\"7785726.69717\"/>\n <BoundingBox CRS=\"EPSG:3035\" minx=\"2351945.35175\" miny=\"3346053.06304\" maxx=\"5431836.28888\" maxy=\"5804319.83173\"/>\n <BoundingBox CRS=\"EPSG:3047\" minx=\"330890.119265\" miny=\"6615141.39345\" maxx=\"599196.301358\" maxy=\"8076330.30937\"/>\n <BoundingBox CRS=\"EPSG:3067\" minx=\"43547.7892277\" miny=\"6549298.62199\" maxx=\"674306.988933\" maxy=\"7782478.68382\"/>\n <BoundingBox CRS=\"EPSG:3857\" minx=\"-2016906.55513\" miny=\"6405812.58171\" maxx=\"6037635.22215\" maxy=\"12033196.7337\"/>\n <BoundingBox CRS=\"EPSG:4258\" minx=\"-18.1181798512\" miny=\"49.7657866394\" maxx=\"54.237\" maxy=\"72.7612723061\"/>\n <BoundingBox CRS=\"EPSG:4326\" minx=\"-18.1181798512\" miny=\"49.7657866394\" maxx=\"54.237\" maxy=\"72.7612723061\"/>\n <Dimension name=\"time\" units=\"ISO8601\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-14T06:00:00Z/2021-05-17T00:00:00Z/PT1H</Dimension>\n\n <Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2021-05-14T06:00:00Z\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2021-05-13T12:00:00Z,2021-05-13T18:00:00Z,2021-05-14T00:00:00Z,2021-05-14T06:00:00Z</Dimension>\n\n\n\n\t <Layer queryable=\"1\">\n <Name>meps:precipitation</Name>\n <Title>MEPS Precipitation Rate</Title>\n <Abstract>Precipitation Rate from MEPS</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=meps%3Aprecipitation\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>meps:relativehumidity</Name>\n <Title>MEPS Relative Humidity 2m</Title>\n <Abstract>Relative Humidity 2m from MEPS</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=meps%3Arelativehumidity\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>meps:temperature</Name>\n <Title>MEPS Temperature 2m</Title>\n <Abstract>Temperature 2m from MEPS</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=meps%3Atemperature\"/>\n </LegendURL>\n </Style>\n </Layer>\n\n\n\t <Layer queryable=\"1\">\n <Name>meps:windspeed</Name>\n <Title>MEPS Wind Speed 10m</Title>\n <Abstract>Wind speed in m/s from MEPS forecast model.</Abstract>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL>\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=meps%3Awindspeed\"/>\n </LegendURL>\n </Style>\n </Layer>\n <Layer queryable=\"1\">\n <Name>meps:dailymeantemperature</Name>\n <Title>Mean Temperature</Title>\n <Abstract>Daily mean temperature</Abstract>\n <Dimension name=\"time\" units=\"ISO8601\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2024-11-26T00:00:00Z/2024-12-07T00:00:00Z/PT24H</Dimension>\n <Dimension name=\"reference_time\" units=\"ISO8601\" default=\"2024-12-02T10:30:00Z\" multipleValues=\"0\" nearestValue=\"0\" current=\"1\">2024-11-26T09:30:00Z,2024-11-26T10:30:00Z</Dimension>\n <Style>\n <Name>default</Name>\n <Title>Default style</Title>\n <LegendURL width=\"201\" height=\"950\">\n <Format>image/png</Format>\n <OnlineResource xlink:type=\"simple\" xlink:href=\"https://data.apps.meteo.fi/wms?service=WMS&request=GetLegendGraphic&version=1.3.0&sld_version=1.1.0&style=default&format=image%2Fpng&layer=meps%3Adailymeantemperature\"/>\n </LegendURL>\n </Style>\n </Layer>\n\t </Layer>\n </Layer>\n</Capability>\n</WMS_Capabilities>";
|
|
6291
6528
|
|
|
6292
6529
|
var MOCK_URL_WITH_CHILDREN = 'https://mockUrlWithChildren.nl';
|
|
@@ -6775,6 +7012,7 @@ var getCapabilities = /*#__PURE__*/Object.freeze({
|
|
|
6775
7012
|
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
6776
7013
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
6777
7014
|
* */
|
|
7015
|
+
|
|
6778
7016
|
var defaultReduxLayerRadarColor = {
|
|
6779
7017
|
service: 'https://testservice',
|
|
6780
7018
|
name: 'RAD_NL25_PCP_CM',
|
|
@@ -6959,14 +7197,6 @@ var crsListForRADNL25PCPCMLayer = [{
|
|
|
6959
7197
|
bottom: 5211855.054125,
|
|
6960
7198
|
top: 5936394.291427
|
|
6961
7199
|
}
|
|
6962
|
-
}, {
|
|
6963
|
-
name: 'EPSG:32661',
|
|
6964
|
-
bbox: {
|
|
6965
|
-
left: 2000000,
|
|
6966
|
-
right: 2745713.040381,
|
|
6967
|
-
bottom: -2703305.597319,
|
|
6968
|
-
top: -1888346.21671
|
|
6969
|
-
}
|
|
6970
7200
|
}, {
|
|
6971
7201
|
name: 'EPSG:40000',
|
|
6972
7202
|
bbox: {
|
|
@@ -7151,6 +7381,7 @@ var multiDimensionLayer = {
|
|
|
7151
7381
|
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
7152
7382
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
7153
7383
|
* */
|
|
7384
|
+
|
|
7154
7385
|
var mockGetCapabilities = Object.assign({}, getCapabilities, {
|
|
7155
7386
|
WMS111GetCapabilitiesGeoServicesRADAR: WMS111GetCapabilitiesGeoServicesRADAR
|
|
7156
7387
|
});
|
|
@@ -7232,6 +7463,7 @@ var webmapTranslations = {
|
|
|
7232
7463
|
* Copyright 2025 - Finnish Meteorological Institute (FMI)
|
|
7233
7464
|
* Copyright 2025 - The Norwegian Meteorological Institute (MET Norway)
|
|
7234
7465
|
* */
|
|
7466
|
+
|
|
7235
7467
|
var wmtsCapabilities = "<?xml version=\"1.0\"?>\n<Capabilities xmlns=\"http://www.opengis.net/wmts/1.0\" xmlns:ows=\"http://www.opengis.net/ows/1.1\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:gml=\"http://www.opengis.net/gml\" xsi:schemaLocation=\"http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd\" version=\"1.0.0\">\n <ows:ServiceIdentification>\n <ows:Title></ows:Title>\n <ows:Abstract></ows:Abstract>\n <ows:ServiceType>OGC WMTS</ows:ServiceType>\n <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>\n <ows:Fees>none</ows:Fees>\n <ows:AccessConstraints>none</ows:AccessConstraints>\n </ows:ServiceIdentification>\n <ows:OperationsMetadata>\n <ows:Operation name=\"GetCapabilities\">\n <ows:DCP>\n <ows:HTTP>\n <ows:Get xlink:href=\"https://my-tile-based-url.com/wmts?\">\n <ows:Constraint name=\"GetEncoding\">\n <ows:AllowedValues>\n <ows:Value>RESTful</ows:Value>\n </ows:AllowedValues>\n </ows:Constraint>\n </ows:Get>\n </ows:HTTP>\n </ows:DCP>\n </ows:Operation>\n <ows:Operation name=\"GetTile\">\n <ows:DCP>\n <ows:HTTP>\n <ows:Get xlink:href=\"https://my-tile-based-url.com/wmts?\">\n <ows:Constraint name=\"GetEncoding\">\n <ows:AllowedValues>\n <ows:Value>RESTful</ows:Value>\n </ows:AllowedValues>\n </ows:Constraint>\n </ows:Get>\n </ows:HTTP>\n </ows:DCP>\n </ows:Operation>\n <ows:Operation name=\"GetFeatureInfo\">\n <ows:DCP>\n <ows:HTTP>\n <ows:Get xlink:href=\"https://my-tile-based-url.com/wmts?\">\n <ows:Constraint name=\"GetEncoding\">\n <ows:AllowedValues>\n <ows:Value>RESTful</ows:Value>\n </ows:AllowedValues>\n </ows:Constraint>\n </ows:Get>\n </ows:HTTP>\n </ows:DCP>\n </ows:Operation>\n </ows:OperationsMetadata>\n <Contents>\n <Layer>\n <ows:Title>Cached Wmts Layer</ows:Title>\n <ows:Abstract></ows:Abstract>\n <ows:WGS84BoundingBox>\n <ows:LowerCorner>0.0 48.89530347325975</ows:LowerCorner>\n <ows:UpperCorner>10.856451909596997 55.97360000935789</ows:UpperCorner>\n </ows:WGS84BoundingBox>\n <ows:Identifier>precipitation_real_time</ows:Identifier>\n <Style isDefault=\"true\">\n <ows:Identifier>default</ows:Identifier>\n </Style>\n <Format>image/png</Format>\n <Dimension>\n <ows:Identifier>Time</ows:Identifier>\n <Default>2025-12-15T13:30:00Z</Default>\n <Value>2025-12-08T13:35:00Z</Value>\n <Value>2025-12-08T13:40:00Z</Value>\n <Value>2025-12-08T13:45:00Z</Value>\n <Value>2025-12-08T13:50:00Z</Value>\n <Value>2025-12-08T13:55:00Z</Value>\n <Value>2025-12-08T14:00:00Z</Value>\n <Value>2025-12-08T14:05:00Z</Value>\n <Value>2025-12-08T14:10:00Z</Value>\n <Value>2025-12-08T14:15:00Z</Value>\n <Value>2025-12-08T14:20:00Z</Value>\n <Value>2025-12-08T14:25:00Z</Value>\n <Value>2025-12-08T14:30:00Z</Value>\n </Dimension>\n <TileMatrixSetLink>\n <TileMatrixSet>EPSG:3857</TileMatrixSet>\n </TileMatrixSetLink>\n <ResourceURL format=\"image/png\" resourceType=\"tile\"\n template=\"https://my-tile-based-url.com/wmts?precipitation_real_time/{Time}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png\"/>\n </Layer>\n <TileMatrixSet>\n <ows:Identifier>EPSG:3857</ows:Identifier>\n <ows:SupportedCRS>urn:ogc:def:crs:EPSG:3857</ows:SupportedCRS>\n <TileMatrix>\n <ows:Identifier>00</ows:Identifier>\n <ScaleDenominator>1542912.7849178575</ScaleDenominator>\n <TopLeftCorner>0.0 7553161.958695</TopLeftCorner>\n <TileWidth>3000</TileWidth>\n <TileHeight>3000</TileHeight>\n <MatrixWidth>1</MatrixWidth>\n <MatrixHeight>1</MatrixHeight>\n </TileMatrix>\n <TileMatrix>\n <ows:Identifier>01</ows:Identifier>\n <ScaleDenominator>771456.3924589287</ScaleDenominator>\n <TopLeftCorner>0.0 7553161.958695</TopLeftCorner>\n <TileWidth>3000</TileWidth>\n <TileHeight>3000</TileHeight>\n <MatrixWidth>2</MatrixWidth>\n <MatrixHeight>2</MatrixHeight>\n </TileMatrix>\n <TileMatrix>\n <ows:Identifier>02</ows:Identifier>\n <ScaleDenominator>385728.1962294644</ScaleDenominator>\n <TopLeftCorner>0.0 7553161.958695</TopLeftCorner>\n <TileWidth>3000</TileWidth>\n <TileHeight>3000</TileHeight>\n <MatrixWidth>4</MatrixWidth>\n <MatrixHeight>4</MatrixHeight>\n </TileMatrix>\n </TileMatrixSet>\n </Contents>\n <ServiceMetadataURL xlink:href=\"https://my-tile-based-url.com/wmts?1.0.0/WMTSCapabilities.xml\"/>\n</Capabilities>";
|
|
7236
7468
|
var wmtsResponseGetCapabilities = {
|
|
7237
7469
|
Capabilities: {
|
|
@@ -7619,6 +7851,7 @@ var fakeWMTSLayerApiHandlers = [http.get('https://my-tile-based-url.com/wmts', f
|
|
|
7619
7851
|
* Copyright 2024 - Finnish Meteorological Institute (FMI)
|
|
7620
7852
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
7621
7853
|
* */
|
|
7854
|
+
|
|
7622
7855
|
var WEBMAP_NAMESPACE = 'webmap';
|
|
7623
7856
|
|
|
7624
7857
|
/* *
|
|
@@ -7638,6 +7871,7 @@ var WEBMAP_NAMESPACE = 'webmap';
|
|
|
7638
7871
|
* Copyright 2021 - Finnish Meteorological Institute (FMI)
|
|
7639
7872
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
7640
7873
|
* */
|
|
7874
|
+
|
|
7641
7875
|
var privateWebMapUtils = {
|
|
7642
7876
|
privateWmsGetCapabilities: privateWmsGetCapabilities,
|
|
7643
7877
|
privateGetWMSServiceInfo: privateGetWMSServiceInfo,
|