@opengeoweb/webmap 19.1.0 → 19.2.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/dist/README.md +11 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +6984 -0
- package/dist/src/index.d.ts +16 -0
- package/dist/src/lib/components/LoadDurationCounter.d.ts +17 -0
- package/dist/src/lib/components/WMBBOX.d.ts +32 -0
- package/dist/src/lib/components/WMConstants.d.ts +32 -0
- package/dist/src/lib/components/WMImage.d.ts +115 -0
- package/dist/src/lib/components/WMImageStore.d.ts +61 -0
- package/dist/src/lib/components/WMJSDimension.d.ts +126 -0
- package/dist/src/lib/components/WMJSDimensionModes.d.ts +15 -0
- package/dist/src/lib/components/WMJSTools.d.ts +62 -0
- package/dist/src/lib/components/WMLayer.d.ts +117 -0
- package/dist/src/lib/components/WMLayerTypes.d.ts +66 -0
- package/dist/src/lib/components/WMLayerUtils.d.ts +22 -0
- package/dist/src/lib/components/WMLegend.d.ts +6 -0
- package/dist/src/lib/components/WMListener.d.ts +57 -0
- package/dist/src/lib/components/WMProjection.d.ts +17 -0
- package/dist/src/lib/components/WMTime.d.ts +44 -0
- package/dist/src/lib/components/WMTimeTypes.d.ts +19 -0
- package/dist/src/lib/components/WMXMLParser.d.ts +9 -0
- package/dist/src/lib/components/index.d.ts +25 -0
- package/dist/src/lib/components/makeHashUrlForGeoReferencedImage.d.ts +6 -0
- package/dist/src/lib/components/types.d.ts +231 -0
- package/dist/src/lib/index.d.ts +5 -0
- package/dist/src/lib/query/fakeApiWmtsQueries.d.ts +208 -0
- package/dist/src/lib/query/queryConstants.d.ts +7 -0
- package/dist/src/lib/query/queryWMS.d.ts +69 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS111GetCapabilitiesGeoServicesRADAR.d.ts +1 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesHarmN25.d.ts +2 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritAndReplaceLayerprops.d.ts +2 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritLayerprops.d.ts +2 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithInheritLayerpropsToLayerTree.d.ts +76 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMS130GetCapabilitiesRadarTestWithoutInheritLayerprops.d.ts +2 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMSGetCapabilitiesMissingLegend.d.ts +1 -0
- package/dist/src/lib/specs/getCapabilitySpecs/WMSSmartMet.d.ts +2 -0
- package/dist/src/lib/specs/getCapabilitySpecs/radarGetCapabilities.d.ts +244 -0
- package/dist/src/lib/specs/index.d.ts +93 -0
- package/dist/src/lib/specs/layerSpecs.d.ts +34 -0
- package/dist/src/lib/specs/mockGetCapabilities.d.ts +90 -0
- package/dist/src/lib/utils/consoleErrorMessages.d.ts +12 -0
- package/dist/src/lib/utils/fakeMaxAgeResponses.d.ts +1 -0
- package/dist/src/lib/utils/getCapabilities/getWMSServiceId.d.ts +10 -0
- package/dist/src/lib/utils/getCapabilities/index.d.ts +4 -0
- package/dist/src/lib/utils/getCapabilities/utils.d.ts +64 -0
- package/dist/src/lib/utils/getCapabilities/wmsQueryClient.d.ts +7 -0
- package/dist/src/lib/utils/i18n.d.ts +6 -0
- package/dist/src/lib/utils/index.d.ts +3 -0
- package/dist/src/lib/utils/tilesettings.d.ts +27 -0
- package/dist/src/lib/utils/utils.d.ts +31 -0
- package/package.json +2 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import type { OGCWMSWMTSGetCapabilities, LayerProps, LayerTree, WMSServiceInfo, WMTSGetCapabilities } from '../components/types';
|
|
2
|
+
import { OGCTYPE } from '../components/types';
|
|
3
|
+
/**
|
|
4
|
+
* Invalidates the tanstack store for this getcapabilities service. Used to force refetch.
|
|
5
|
+
*
|
|
6
|
+
* @async
|
|
7
|
+
* @param {string} serviceUrl
|
|
8
|
+
* @returns {Promise<void>}
|
|
9
|
+
*/
|
|
10
|
+
export declare const invalidateWMSGetCapabilities: (serviceUrl: string) => Promise<void>;
|
|
11
|
+
export declare const invalidateWMTSGetCapabilities: (serviceUrl: string) => Promise<void>;
|
|
12
|
+
/**
|
|
13
|
+
* Determines whether the service is WMS or WMTS
|
|
14
|
+
*
|
|
15
|
+
* @async
|
|
16
|
+
* @param {string} serviceUrl
|
|
17
|
+
* @returns {Promise<string>}
|
|
18
|
+
*/
|
|
19
|
+
export declare const queryOGCTypeWMSorWMTS: (serviceUrl: string) => Promise<OGCTYPE>;
|
|
20
|
+
/**
|
|
21
|
+
* Fetches the WMS GetCapabilities document and converts it to a json object. It is cached by TanStack.
|
|
22
|
+
*
|
|
23
|
+
* @async
|
|
24
|
+
* @param {string} serviceUrl
|
|
25
|
+
* @returns {Promise<OGCWMSWMTSGetCapabilities>}
|
|
26
|
+
*/
|
|
27
|
+
export declare const queryWMSGetCapabilities: (serviceUrl: string) => Promise<OGCWMSWMTSGetCapabilities>;
|
|
28
|
+
/**
|
|
29
|
+
* Gets the layer tree in hierarchical order for a WMS service. Cached by TanStack. Uses the same store as in queryWMSGetCapabilities.
|
|
30
|
+
*
|
|
31
|
+
* @async
|
|
32
|
+
* @param {string} serviceUrl
|
|
33
|
+
* @returns {Promise<LayerTree>}
|
|
34
|
+
*/
|
|
35
|
+
export declare const queryWMSLayersTree: (serviceUrl: string) => Promise<LayerTree>;
|
|
36
|
+
/**
|
|
37
|
+
* Returns details about the WMS service
|
|
38
|
+
*
|
|
39
|
+
* @async
|
|
40
|
+
* @param {string} serviceUrl
|
|
41
|
+
* @returns {Promise<WMSServiceInfo>}
|
|
42
|
+
*/
|
|
43
|
+
export declare const queryWMSServiceInfo: (serviceUrl: string) => Promise<WMSServiceInfo>;
|
|
44
|
+
/**
|
|
45
|
+
* Gets the flat layer list (without hierarchy) for a WMS service. Cached by TanStack. Uses the same store as in queryWMSGetCapabilities.
|
|
46
|
+
*
|
|
47
|
+
* @async
|
|
48
|
+
* @param {string} serviceUrl
|
|
49
|
+
* @param {boolean} [forceReload=false]
|
|
50
|
+
* @returns {Promise<LayerProps[]>}
|
|
51
|
+
*/
|
|
52
|
+
export declare const queryWMSLayers: (serviceUrl: string, forceReload?: boolean) => Promise<LayerProps[]>;
|
|
53
|
+
/**
|
|
54
|
+
* Returns specific layer from the WMS service
|
|
55
|
+
*
|
|
56
|
+
* @async
|
|
57
|
+
* @param {string} serviceUrl
|
|
58
|
+
* @param {string} name
|
|
59
|
+
* @returns {Promise<LayerProps>}
|
|
60
|
+
*/
|
|
61
|
+
export declare const queryWMSLayer: (serviceUrl: string, name: string, forceReload?: boolean) => Promise<LayerProps>;
|
|
62
|
+
/**
|
|
63
|
+
* Fetches the WMTS GetCapabilities document and converts it to a json object. It is cached by TanStack.
|
|
64
|
+
*
|
|
65
|
+
* @async
|
|
66
|
+
* @param {string} serviceUrl
|
|
67
|
+
* @returns {Promise<WMTSGetCapabilities>}
|
|
68
|
+
*/
|
|
69
|
+
export declare const queryWMTSGetCapabilities: (serviceUrl: string) => Promise<WMTSGetCapabilities>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const 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:5041</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:5041</SRS>\n <BoundingBox SRS=\"EPSG:5041\" minx=\"2000000.000000\" miny=\"-2703305.458468\" maxx=\"2745713.075149\" maxy=\"-1888346.111529\"/>\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>";
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const xml = "<?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>";
|
|
2
|
+
export default xml;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const xml = "<?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>";
|
|
2
|
+
export default xml;
|