Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deploy WMTS GetCapabilities response documents #28

Open
4 tasks
mbjones opened this issue Nov 14, 2023 · 20 comments
Open
4 tasks

deploy WMTS GetCapabilities response documents #28

mbjones opened this issue Nov 14, 2023 · 20 comments
Labels
enhancement New feature or request

Comments

@mbjones
Copy link
Member

mbjones commented Nov 14, 2023

The tiled data products and map tile products produced from viz-workflow conform to the WorldCRS84Quad TileMatrixSet, and so can be described as a WMTS-compliant tileset that can be loaded easily into any GIS system that supports WMTS, such as QGIS and various python libraries. As our tiles are structured and being delivered through a REST API endpoint on our web server, all we need to provide is the GetCapabilities response document that describes the tileset and its layers. These can be provided both for the map tiles in png format, but also for our tiled Geotiff, geopackage, and other format files. WMTS even supports a syntax to describe the same data product with different formats using different resource url formats, so we should discuss how to best arrange our file hierarchies for this.

Attached is a proof of concept for the PNG tiles from the Witharana et al. (https://doi.org/10.18739/A2KW57K57) ice wedge polygon dataset. This response document is installed on our servers at the following url location:

That URL is all that is needed to load the data layer into QGIS or another software platform.

And here is a screenshot showing the layer loaded in QGIS automatically:

image

TODO:

  • Verify correctness and complete metadata for the initial WMTS GetCapabilities document
  • Plan how multiple layers from one dataset (e.g., in different formats) would be exposed via WMTS
  • Revise one or more capabilities documents for each of our published datasets and publish those on production
  • Determine how to modify viz-workflow to produce appropriate WMTS capabilities document(s) when creating dataset tiles

@julietcohen @robyngit @iannesbitt Feedback and other ideas appreciated. Thanks, and let's discuss.

@mbjones mbjones added the enhancement New feature or request label Nov 14, 2023
@mbjones
Copy link
Member Author

mbjones commented Nov 14, 2023

And here's the same layer viewed in QGIS against the high-res (50cm) RGB imagery form the state of alaska WMTS server (rather than OSM):

image

@mbjones
Copy link
Member Author

mbjones commented Jan 30, 2024

While we can produce a WMTS for the entire globe, another consideration might be to create a subsetted WMTS focused on a particular area of interest (AOI) which the user might specify with a polygon in the MetacatUI tool. This would, for example, generate a derived WMTS document that constrains the data layer to the AOI while providing the metadata needed to load the data at mutliple zoom levels in mapping software. This would be a "virtual" subset of the data layer, and might be useful if people want to focus on a specific region and not default to the entire global layer.

@yvonnesjy
Copy link

Hey Matt! I've read through the WMTSCapabilities document you linked, with the question of defining an area of interest in mind. Here are some questions:

  • I couldn't find much information about a "derived" WMTS. By derived, do you mean just updating the ows:WGS84BoundingBox to an AOI? Or perhaps we update the ows:BoundingBox under TileMatrixSet?
  • I noticed that the ows:WGS84BoundingBox you put in the linked document doesn't really describe the coverage of iwp_high, so maybe I don't fully understand what WGS84BoundingBox is for...
image

@mbjones
Copy link
Member Author

mbjones commented Apr 30, 2024

@yvonnesjy -- yes, by derived, I simply mean another WMTS that is generated from the full dataset WMTS description and only includes a subset of the data -- that can be via changing the extent, reducing the features list, the tile zoom levels supported, and reducing the formats, among other things, which makes the dataset appear smaller than the original, and constrains the choices.

As I generated the original WMTS by hand just as an example of the format, I might not have matched the smallest bounding box for the IWP data. I was hoping we would automate the production of WMTS metadata during our workflow runs and publish them with the tilesets (probably in the root of the tileset directory).

@yvonnesjy
Copy link

yvonnesjy commented May 1, 2024

Thanks Matt- that makes sense! I also downloaded QGIS and have successfully imported iwp_high through the https://arcticdata.io capabilities url.

My next step is to test out some xml changes locally to understand the schema better. You mentioned a local download of WMTSCapabilities.xml should work equally, but I haven't found a way to specify it as a WMTS connection. Can you show me how?

@yvonnesjy
Copy link

Reading QGIS's documentation, I also noticed a potential issue-

WGS 84 Bounding Box — ... Some WMS servers do not set this correctly (e.g., UTM coordinates are used instead). If this is the case, then the initial view of this layer may be rendered with a very ‘zoomed-out’ appearance by QGIS. ...

I wonder if this means that the client (at least QGIS) won't strictly follow a smaller bounding box set by a derived capabilities file, which would explain why I still see the dataset outside of the WGS84BoundingBox you set @mbjones

@mbjones
Copy link
Member Author

mbjones commented May 2, 2024

@yvonnesjy Could be, I'm not sure. But note the quote talks about WMS services, and not WMTS. WMS is an older specification (still in widespread use) and behaves somewhat differently from WMTS, so I wonder if the same limitations apply there. WMS isn't really a tiling standard (requests are specified in geocoordinates, and return a server-provided map image). SO has an overview of the differences beween WMS and WMTS..

Regarding the larger display extent, that could be a simple artifact of the tiling approach. If the bbox requested 1) doesn't exactly match the boundaries of tiles, or 2) is not the same aspect ratio as the viewport being rendered, then I think most WMTS clients will retrieve all of the tiles needed to cover the bounding box and the viewport, which can be a fair bit larger than the bbox itself. Could this account for what you are seeing?

@yvonnesjy
Copy link

yvonnesjy commented May 2, 2024

AH I have a hypothesis! For your bounding box, @mbjones , I think it actually wraps around the world from -179 to 179, instead of crossing the antimeridian like I assumed. So showing the full dataset is expected:) (But then that begs the question: how do I define the bounding box if I do want it to cross the antimeridian?)

I've verified with a modified capabilities file (through url, haven't found a way to use local capabilities.xml yet) that QGIS handles changes to extent (through ows:WGS84BoundingBox), and zoom levels (through TileMatrixSet) correctly. Here are clarifications to the remainder of your comment:

  • "reducing the features list": IIUC, this requires support for WMTS's GetFeatureInfo. Do we have support for it in any of the tilesets right now? If not, is GetFeatureInfo something that requires server side processing? Or would it be as simple as providing a dynamic url like how GetTile is implemented?
  • "reducing the formats": I thought WMTS just has the .png tiles. What does reducing the formats mean?

@ianguerin
Copy link

ianguerin commented May 14, 2024

I would be very curious to see a working example of a GetCapabilities response that works with GeoTIFF image type instead of PNGs. So far I've had no luck loading some from a GitHub search, or trying to write my own. I'd like to be able to visualize it in QGIS, and I'm assuming it will be loaded in much the same way as the WMTSGetCapabilities.xml file you, @mbjones , posted above.

I have gotten to the point in QGIS where there is a logged error message

Returned image is flawed [Content-Type: image/tiff; URL: https://arcticdata.io/data/10.18739/A2KW57K57/iwp_geotiff_high/WGS1984Quad/1/3/0.tif]

Which points to a valid tif file, which I can load into QGIS. So it's clearly trying to load various GeoTIFF tiles, but seems to fail in doing so

@mbjones
Copy link
Member Author

mbjones commented May 14, 2024

@ianguerin The error you cite seems to indicate the TIFF file is not valid. I downloaded 0.tif from the URL you provided at the ADC, and I also have trouble opening it in any application. It is possible the file is not valid, we should explore that with @julietcohen and @robyngit.

I went and looked up a WMTS tileset that supports multiple formats. This example is from SentinelHub (see their API examples). I was able to use QGIS to access their capabilities URL and load a GeoTIFF layer in QGIS, and recolorize it with a palette of my choice.

image

SentinelHub doesn't use the RESTFUL http encoding that we do in our WMTS, and instead use KVP encoding for service access, but it does show how to support multiple formats. The main difference is we need to provide the proper ResourceURL template for our REST approach too. To access SentinelHub, you need an API key to access the service (free, just create an account and a use the SimpleWMS configuration instance id everywhere below where I mention <INSTANCE_ID>).

Here's the capabilities document, which I retrieved with curl but edited out a lot of the details so I could paste it in this issue (there are more layers and TileMatrixSets than I am showing here):

curl -s "https://services.sentinel-hub.com/ogc/wmts/<INSTANCE_ID>?REQUEST=GetCapabilities" > capabilities.xml
capabilties.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:inspire_common="https://inspire.ec.europa.eu/schemas/common/1.0" xmlns:inspire_vs="https://inspire.ec.europa.eu/schemas/inspire_vs_ows11/1.0" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd https://inspire.ec.europa.eu/schemas/inspire_vs_ows11/1.0/inspire_vs_ows_11.xsd">
  <ows:ServiceIdentification>
    <ows:Title>Sentinel Hub WMTS service - Simple WMS template</ows:Title>
    <ows:Abstract><![CDATA[The Copernicus project's Sentinel satellites are revolutionizing earth observation (EO). Its free, full and open access to data with very short revisit times, high spatial resolution, and good spectral resolution are crucial for many applications. The portfolio of possible products is vast - use-cases of such a service range from plant health monitoring, land and water body change, flood monitoring, disaster mapping and more.However the current gap between Sentinel source data and its end-users is large: ESA's complex Scientific Data Hub raster files are compressed with JPEG2000 (13 raster filesfor each product, one per spectral band) terabytes of data per week additional processing requirementsTackling the data in an old-fashioned way - offering individual derivative products simply does not work anymore, the associated time and costs are large and defeat most of the major benefits of the Sentinel project. Our approach combines cloud-based GIS technologies, parallel processing and fully automated procedures. To support the fast developing EO field we provide tools directly to end-users. on-the-fly processing and visualization make it possible to build new products (e.g. vegetation indices and similar) in a matter of minutes.]]></ows:Abstract>
    <ows:ServiceType codeSpace="OGC">WMTS</ows:ServiceType>
    <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
    <ows:Fees>https://www.sentinel-hub.com</ows:Fees>
  </ows:ServiceIdentification>
  <ows:ServiceProvider>
    <ows:ProviderName>Sinergise d.o.o.</ows:ProviderName>
    <ows:ProviderSite xlink:href="https://www.sinergise.com"/>
    <ows:ServiceContact>
      <ows:ContactInfo>
        <ows:Phone>
          <ows:Voice>+386 1 320-61-50</ows:Voice>
          <ows:Facsimile>+386 1 620-22-28</ows:Facsimile>
        </ows:Phone>
        <ows:Address>
          <ows:DeliveryPoint>Cvetkova ulica 29</ows:DeliveryPoint>
          <ows:City>Ljubljana</ows:City>
          <ows:PostalCode>1000</ows:PostalCode>
          <ows:Country>Slovenia</ows:Country>
          <ows:ElectronicMailAddress>[email protected]</ows:ElectronicMailAddress>
        </ows:Address>
      </ows:ContactInfo>
    </ows:ServiceContact>
  </ows:ServiceProvider>
  <ows:OperationsMetadata>
    <ows:Operation name="GetCapabilities">
      <ows:DCP>
        <ows:HTTP>
          <ows:Get xlink:href="https://services.sentinel-hub.com/ogc/wmts/<INSTANCE_ID>?">
            <ows:Constraint name="GetEncoding">
              <ows:AllowedValues>
                <ows:Value>KVP</ows:Value>
              </ows:AllowedValues>
            </ows:Constraint>
          </ows:Get>
        </ows:HTTP>
      </ows:DCP>
    </ows:Operation>
    <ows:Operation name="GetTile">
      <ows:DCP>
        <ows:HTTP>
          <ows:Get xlink:href="https://services.sentinel-hub.com/ogc/wmts/<INSTANCE_ID>?">
            <ows:Constraint name="GetEncoding">
              <ows:AllowedValues>
                <ows:Value>KVP</ows:Value>
              </ows:AllowedValues>
            </ows:Constraint>
          </ows:Get>
        </ows:HTTP>
      </ows:DCP>
    </ows:Operation>
  </ows:OperationsMetadata>
  <Contents>
    <Layer>
      <ows:Title>NDVI</ows:Title>
      <ows:Abstract>NDVI</ows:Abstract>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>-180 -90</ows:LowerCorner>
        <ows:UpperCorner>180 90</ows:UpperCorner>
      </ows:WGS84BoundingBox>
      <ows:Identifier>NDVI</ows:Identifier>
      <Dimension>
        <ows:Identifier>time</ows:Identifier>
        <UOM>ISO8601</UOM>
        <Default>2024-05-14</Default>
        <Current>false</Current>
        <Value>1984-03-01/2024-05-14/P1D</Value>
      </Dimension>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32730">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32633">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32647">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32726">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32736">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32718">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32710">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32605">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32658">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32734">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::27700">
        <ows:LowerCorner>-120000 -20000</ows:LowerCorner>
        <ows:UpperCorner>760000 1280000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32657">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32746">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32706">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32650">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32655">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32737">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32638">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32708">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32745">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32752">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32643">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32635">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::2154">
        <ows:LowerCorner>-378306 6005280</ows:LowerCorner>
        <ows:UpperCorner>1320650 7235613</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32729">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32606">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32627">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32628">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32701">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32622">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32660">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32717">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3765">
        <ows:LowerCorner>200000 4650000</ows:LowerCorner>
        <ows:UpperCorner>800000 5200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32601">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">
        <ows:LowerCorner>-20037508.342789 -20037508.342789</ows:LowerCorner>
        <ows:UpperCorner>20037508.342789 20037508.342789</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32642">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32754">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32702">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32652">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32604">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32619">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32623">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32744">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32727">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32719">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32738">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32742">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32759">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32715">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32749">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32651">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3912">
        <ows:LowerCorner>350000 0</ows:LowerCorner>
        <ows:UpperCorner>650000 200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32656">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32614">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32732">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32649">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32608">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32747">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32704">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32755">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32620">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32607">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32632">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32760">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">
        <ows:LowerCorner>-20037508.342789 -20037508.342789</ows:LowerCorner>
        <ows:UpperCorner>20037508.342789 20037508.342789</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32712">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32603">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32648">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32735">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32625">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32646">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32758">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32756">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32728">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32636">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32753">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32724">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32713">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32703">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32751">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32723">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::5514">
        <ows:LowerCorner>-951600 -1353400</ows:LowerCorner>
        <ows:UpperCorner>-159500 -911100</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32618">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32721">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32609">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32637">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32705">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32640">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32630">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32641">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32714">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32748">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32733">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32740">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32644">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32612">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32624">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32645">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32716">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32731">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32707">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32617">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32720">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32757">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32741">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32613">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32725">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32626">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32629">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32639">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32654">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32611">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3794">
        <ows:LowerCorner>350000 0</ows:LowerCorner>
        <ows:UpperCorner>650000 200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32750">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32722">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32634">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32631">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32610">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32621">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32711">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32739">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32615">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32659">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32602">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32653">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32709">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32743">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32616">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <Style>
        <ows:Title>default</ows:Title>
        <ows:Abstract>Default layer style</ows:Abstract>
        <ows:Identifier>default</ows:Identifier>
      </Style>
      <Format>image/png</Format>
      <Format>image/jpeg</Format>
      <Format>image/jpg</Format>
      <Format>image/tiff</Format>
      <Format>application/vnd.google-earth.kmz+xml</Format>
      <Format>image/tiff;depth=8</Format>
      <Format>image/tiff;depth=16</Format>
      <Format>image/tiff;depth=32f</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/jpeg</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/png</Format>
      <Format>application/x-esri-shape</Format>
      <Format>application/json</Format>
      <TileMatrixSetLink>
        <TileMatrixSet>PopularWebMercator512</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>PopularWebMercator256</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>GBR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>FR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>D48</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>D96</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>CZE</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>HR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM1N</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM1S</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM2N</TileMatrixSet>
      </TileMatrixSetLink>
    </Layer>
    <Layer>
      <ows:Title>False color (vegetation)</ows:Title>
      <ows:Abstract>False color (vegetation)</ows:Abstract>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>-180 -90</ows:LowerCorner>
        <ows:UpperCorner>180 90</ows:UpperCorner>
      </ows:WGS84BoundingBox>
      <ows:Identifier>FALSE-COLOR</ows:Identifier>
      <Dimension>
        <ows:Identifier>time</ows:Identifier>
        <UOM>ISO8601</UOM>
        <Default>2024-05-14</Default>
        <Current>false</Current>
        <Value>1984-03-01/2024-05-14/P1D</Value>
      </Dimension>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32730">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32633">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32647">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32726">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32736">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32718">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32710">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32605">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32658">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32734">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::27700">
        <ows:LowerCorner>-120000 -20000</ows:LowerCorner>
        <ows:UpperCorner>760000 1280000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32657">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32746">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32706">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32650">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32655">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32737">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32638">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32708">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32745">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32752">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32643">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32635">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::2154">
        <ows:LowerCorner>-378306 6005280</ows:LowerCorner>
        <ows:UpperCorner>1320650 7235613</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32729">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32606">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32627">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32628">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32701">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32622">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32660">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32717">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3765">
        <ows:LowerCorner>200000 4650000</ows:LowerCorner>
        <ows:UpperCorner>800000 5200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32601">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">
        <ows:LowerCorner>-20037508.342789 -20037508.342789</ows:LowerCorner>
        <ows:UpperCorner>20037508.342789 20037508.342789</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32642">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32754">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32702">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32652">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32604">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32619">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32623">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32744">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32727">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32719">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32738">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32742">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32759">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32715">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32749">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32651">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3912">
        <ows:LowerCorner>350000 0</ows:LowerCorner>
        <ows:UpperCorner>650000 200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32656">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32614">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32732">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32649">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32608">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32747">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32704">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32755">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32620">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32607">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32632">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32760">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">
        <ows:LowerCorner>-20037508.342789 -20037508.342789</ows:LowerCorner>
        <ows:UpperCorner>20037508.342789 20037508.342789</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32712">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32603">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32648">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32735">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32625">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32646">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32758">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32756">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32728">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32636">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32753">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32724">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32713">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32703">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32751">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32723">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::5514">
        <ows:LowerCorner>-951600 -1353400</ows:LowerCorner>
        <ows:UpperCorner>-159500 -911100</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32618">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32721">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32609">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32637">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32705">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32640">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32630">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32641">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32714">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32748">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32733">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32740">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32644">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32612">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32624">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32645">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32716">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32731">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32707">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32617">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32720">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32757">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32741">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32613">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32725">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32626">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32629">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32639">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32654">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32611">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3794">
        <ows:LowerCorner>350000 0</ows:LowerCorner>
        <ows:UpperCorner>650000 200000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32750">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32722">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32634">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32631">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32610">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32621">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32711">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32739">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32615">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32659">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32602">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32653">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32709">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32743">
        <ows:LowerCorner>150000 1100000</ows:LowerCorner>
        <ows:UpperCorner>850000 10000000</ows:UpperCorner>
      </ows:BoundingBox>
      <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32616">
        <ows:LowerCorner>150000 0</ows:LowerCorner>
        <ows:UpperCorner>850000 9350000</ows:UpperCorner>
      </ows:BoundingBox>
      <Style>
        <ows:Title>default</ows:Title>
        <ows:Abstract>Default layer style</ows:Abstract>
        <ows:Identifier>default</ows:Identifier>
      </Style>
      <Format>image/png</Format>
      <Format>image/jpeg</Format>
      <Format>image/jpg</Format>
      <Format>image/tiff</Format>
      <Format>application/vnd.google-earth.kmz+xml</Format>
      <Format>image/tiff;depth=8</Format>
      <Format>image/tiff;depth=16</Format>
      <Format>image/tiff;depth=32f</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/jpeg</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/png</Format>
      <Format>application/x-esri-shape</Format>
      <Format>application/json</Format>
      <TileMatrixSetLink>
        <TileMatrixSet>PopularWebMercator512</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>PopularWebMercator256</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>GBR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>FR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>D48</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>D96</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>CZE</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>HR</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM1N</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM1S</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM2N</TileMatrixSet>
      </TileMatrixSetLink>
      <TileMatrixSetLink>
        <TileMatrixSet>UTM2S</TileMatrixSet>
      </TileMatrixSetLink>
    </Layer>
    <TileMatrixSet>
      <ows:Identifier>PopularWebMercator512</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::3857</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>1</ows:Identifier>
        <ScaleDenominator>279541132.014359</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>2</ows:Identifier>
        <ScaleDenominator>139770566.007179</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>69885283.00359</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>34942641.501795</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>17471320.750897</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>8735660.375449</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>4367830.187724</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2183915.093862</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1091957.546931</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>545978.773466</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>272989.386733</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1024</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>136494.693366</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2048</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>68247.346683</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>4096</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>34123.673342</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>8192</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>17061.836671</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>16384</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>8530.918335</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>32768</MatrixWidth>
        <MatrixHeight>32768</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>4265.459168</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>65536</MatrixWidth>
        <MatrixHeight>65536</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>18</ows:Identifier>
        <ScaleDenominator>2132.729584</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>131072</MatrixWidth>
        <MatrixHeight>131072</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>19</ows:Identifier>
        <ScaleDenominator>1066.364792</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>262144</MatrixWidth>
        <MatrixHeight>262144</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>20</ows:Identifier>
        <ScaleDenominator>533.182396</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>524288</MatrixWidth>
        <MatrixHeight>524288</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>PopularWebMercator256</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::3857</ows:SupportedCRS>
      <WellKnownScaleSet>urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible</WellKnownScaleSet>
      <TileMatrix>
        <ows:Identifier>0</ows:Identifier>
        <ScaleDenominator>559082264.028718</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>1</ows:Identifier>
        <ScaleDenominator>279541132.014359</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>2</ows:Identifier>
        <ScaleDenominator>139770566.007179</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>69885283.00359</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>34942641.501795</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>17471320.750897</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>8735660.375449</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>4367830.187724</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2183915.093862</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1091957.546931</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>545978.773466</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>1024</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>272989.386733</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>2048</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>136494.693366</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>4096</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>68247.346683</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>8192</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>34123.673342</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>16384</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>17061.836671</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>32768</MatrixWidth>
        <MatrixHeight>32768</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>8530.918335</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>65536</MatrixWidth>
        <MatrixHeight>65536</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>4265.459168</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>131072</MatrixWidth>
        <MatrixHeight>131072</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>18</ows:Identifier>
        <ScaleDenominator>2132.729584</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>262144</MatrixWidth>
        <MatrixHeight>262144</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>19</ows:Identifier>
        <ScaleDenominator>1066.364792</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>524288</MatrixWidth>
        <MatrixHeight>524288</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>20</ows:Identifier>
        <ScaleDenominator>533.182396</ScaleDenominator>
        <TopLeftCorner>-20037508.342789 20037508.342789</TopLeftCorner>
        <TileWidth>256</TileWidth>
        <TileHeight>256</TileHeight>
        <MatrixWidth>1048576</MatrixWidth>
        <MatrixHeight>1048576</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>GBR</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::27700</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>9068080.357143</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>347</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>4534040.178571</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>347</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>2267020.089286</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>463</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>3</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>1133510.044643</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>463</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>6</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>566755.022321</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>505</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>11</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>283377.511161</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>505</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>22</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>141688.75558</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>505</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>44</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>70844.37779</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>87</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>35422.188895</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>174</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>17711.094448</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>347</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>8855.547224</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>694</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>4427.773612</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1387</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>2213.886806</ScaleDenominator>
        <TopLeftCorner>-120000 1280000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2773</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>FR</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::2154</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>11850976.5625</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>371</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>5925488.28125</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>371</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>2962744.140625</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>495</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>3</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>1481372.070313</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>495</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>6</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>740686.035156</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>495</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>12</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>370343.017578</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>495</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>24</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>185171.508789</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>505</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>47</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>92585.754395</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>511</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>93</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>46292.877197</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>511</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>186</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>23146.438599</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>371</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>11573.219299</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1024</MatrixWidth>
        <MatrixHeight>742</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>5786.60965</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2048</MatrixWidth>
        <MatrixHeight>1484</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>2893.304825</ScaleDenominator>
        <TopLeftCorner>-378306 7235613</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>4096</MatrixWidth>
        <MatrixHeight>2967</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>D48</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::3912</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2092633.928571</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>342</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1046316.964286</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>342</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>523158.482143</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>456</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>3</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>261579.241071</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>456</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>6</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>130789.620536</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>497</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>11</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>65394.810268</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>497</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>22</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>32697.405134</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>43</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>16348.702567</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>86</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>8174.351283</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>171</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>4087.175642</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>342</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>D96</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::3794</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2092633.928571</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>342</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1046316.964286</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>342</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>523158.482143</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>456</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>3</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>261579.241071</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>456</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>6</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>130789.620536</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>497</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>11</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>65394.810268</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>497</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>22</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>32697.405134</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>43</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>16348.702567</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>86</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>8174.351283</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>171</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>4087.175642</ScaleDenominator>
        <TopLeftCorner>350000 200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>342</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>CZE</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::5514</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>5525251.116071</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>286</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>2762625.558036</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>286</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>1381312.779018</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>382</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>3</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>690656.389509</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>458</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>5</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>345328.194754</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>9</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>172664.097377</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>18</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>86332.048689</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>36</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>43166.024344</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>509</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>72</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>21583.012172</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>143</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>10791.506086</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>286</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>5395.753043</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1024</MatrixWidth>
        <MatrixHeight>572</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>2697.876522</ScaleDenominator>
        <TopLeftCorner>-951600 -911100</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2048</MatrixWidth>
        <MatrixHeight>1144</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>HR</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::3765</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>4185267.857143</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>470</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2092633.928571</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>470</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1046316.964286</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>470</TileHeight>
        <MatrixWidth>4</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>523158.482143</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>470</TileHeight>
        <MatrixWidth>8</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>261579.241071</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>501</TileHeight>
        <MatrixWidth>16</MatrixWidth>
        <MatrixHeight>15</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>130789.620536</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>501</TileHeight>
        <MatrixWidth>32</MatrixWidth>
        <MatrixHeight>30</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>65394.810268</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>510</TileHeight>
        <MatrixWidth>64</MatrixWidth>
        <MatrixHeight>59</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>32697.405134</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>510</TileHeight>
        <MatrixWidth>128</MatrixWidth>
        <MatrixHeight>118</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>16348.702567</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>256</MatrixWidth>
        <MatrixHeight>235</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>8174.351283</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>512</MatrixWidth>
        <MatrixHeight>470</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>4087.175642</ScaleDenominator>
        <TopLeftCorner>200000 5200000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1024</MatrixWidth>
        <MatrixHeight>939</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>UTM1N</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::32601</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>65220424.107143</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>39</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>32610212.053571</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>77</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>16305106.026786</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>154</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>8152553.013393</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>307</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>4076276.506696</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>307</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2038138.253348</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>409</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>3</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1019069.126674</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>5</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>509534.563337</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>10</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>254767.281669</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>20</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>127383.640834</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>504</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>39</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>63691.820417</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>77</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>31845.910209</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>154</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>15922.955104</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>307</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>7961.477552</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>614</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>3980.738776</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1227</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>UTM1S</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::32701</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>62081473.214286</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>41</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>31040736.607143</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>81</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>15520368.303571</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>162</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>7760184.151786</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>323</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>3880092.075893</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>323</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>1940046.037946</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>430</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>3</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>970023.018973</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>430</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>6</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>485011.509487</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>469</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>11</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>242505.754743</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>21</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>121252.877372</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>503</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>41</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>60626.438686</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>81</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>30313.219343</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>162</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>15156.609671</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>511</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>323</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>7578.304836</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>645</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>3789.152418</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1289</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>UTM2N</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::32602</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>65220424.107143</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>39</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>32610212.053571</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>77</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>16305106.026786</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>154</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>8152553.013393</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>307</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>4076276.506696</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>307</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>2038138.253348</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>409</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>3</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>1019069.126674</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>5</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>509534.563337</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>10</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>254767.281669</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>20</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>127383.640834</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>504</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>39</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>63691.820417</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>77</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>31845.910209</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>154</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>15922.955104</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>307</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>7961.477552</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>614</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>3980.738776</ScaleDenominator>
        <TopLeftCorner>150000 9350000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1227</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
    <TileMatrixSet>
      <ows:Identifier>UTM2S</ows:Identifier>
      <ows:SupportedCRS>urn:ogc:def:crs:EPSG::32702</ows:SupportedCRS>
      <TileMatrix>
        <ows:Identifier>3</ows:Identifier>
        <ScaleDenominator>62081473.214286</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>41</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>1</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>4</ows:Identifier>
        <ScaleDenominator>31040736.607143</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>81</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>2</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>5</ows:Identifier>
        <ScaleDenominator>15520368.303571</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>162</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>4</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>6</ows:Identifier>
        <ScaleDenominator>7760184.151786</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>323</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1</MatrixWidth>
        <MatrixHeight>8</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>7</ows:Identifier>
        <ScaleDenominator>3880092.075893</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>323</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>2</MatrixWidth>
        <MatrixHeight>16</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>8</ows:Identifier>
        <ScaleDenominator>1940046.037946</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>430</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>3</MatrixWidth>
        <MatrixHeight>32</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>9</ows:Identifier>
        <ScaleDenominator>970023.018973</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>430</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>6</MatrixWidth>
        <MatrixHeight>64</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>10</ows:Identifier>
        <ScaleDenominator>485011.509487</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>469</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>11</MatrixWidth>
        <MatrixHeight>128</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>11</ows:Identifier>
        <ScaleDenominator>242505.754743</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>491</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>21</MatrixWidth>
        <MatrixHeight>256</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>12</ows:Identifier>
        <ScaleDenominator>121252.877372</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>503</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>41</MatrixWidth>
        <MatrixHeight>512</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>13</ows:Identifier>
        <ScaleDenominator>60626.438686</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>81</MatrixWidth>
        <MatrixHeight>1024</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>14</ows:Identifier>
        <ScaleDenominator>30313.219343</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>510</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>162</MatrixWidth>
        <MatrixHeight>2048</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>15</ows:Identifier>
        <ScaleDenominator>15156.609671</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>511</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>323</MatrixWidth>
        <MatrixHeight>4096</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>16</ows:Identifier>
        <ScaleDenominator>7578.304836</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>645</MatrixWidth>
        <MatrixHeight>8192</MatrixHeight>
      </TileMatrix>
      <TileMatrix>
        <ows:Identifier>17</ows:Identifier>
        <ScaleDenominator>3789.152418</ScaleDenominator>
        <TopLeftCorner>150000 10000000</TopLeftCorner>
        <TileWidth>512</TileWidth>
        <TileHeight>512</TileHeight>
        <MatrixWidth>1289</MatrixWidth>
        <MatrixHeight>16384</MatrixHeight>
      </TileMatrix>
    </TileMatrixSet>
  </Contents>
</Capabilities>

Note how each Layer has a list of formats that are supported for that Layer:

      <Format>image/png</Format>
      <Format>image/jpeg</Format>
      <Format>image/jpg</Format>
      <Format>image/tiff</Format>
      <Format>application/vnd.google-earth.kmz+xml</Format>
      <Format>image/tiff;depth=8</Format>
      <Format>image/tiff;depth=16</Format>
      <Format>image/tiff;depth=32f</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/jpeg</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/png</Format>
      <Format>application/x-esri-shape</Format>
      <Format>application/json</Format>

You can get a specific tile in a specific format by providing the FORMAT=image/tiff parameter to the GetTile request, like this:

curl -s "https://services.sentinel-hub.com/ogc/wmts/<INSTANCE_ID>?REQUEST=GetTile&BBOX=3238005,5039853,3244050,5045897&RESOLUTION=10&TILEMATRIXSET=PopularWebMercator512&LAYER=FALSE-COLOR&MAXCC=20&TILEMATRIX=14&TILEROW=3065&TILECOL=4758&TIME=2018-03-29/2018-05-29&FORMAT=image/tiff" -o tile.tiff

That command saves a single tile in a file named tile.tiff. You can pick any of the formats from the supported list in the WMTS capabilties document. Again, that works with a KVP service, but for our case of using REST URIs, we'd need to provide format-specific ResourceURL templates for each format.

@ianguerin
Copy link

ianguerin commented May 16, 2024

I may have shared a bad example, another tile mentioned in the QGIS logs is https://arcticdata.io/data/10.18739/A2KW57K57/iwp_geotiff_high/WGS1984Quad/2/0/0.tif which I can load as an independent Raster in QGIS, but doesn't work when trying to load the WMTS layer.

Here's the slimmed down GetCapabilities response I've been working with:

<?xml version="1.0" encoding="UTF-8"?>
<Capabilities
    xmlns="http://www.opengis.net/wmts/1.0"
    xmlns:ows="http://www.opengis.net/ows/1.1"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:gml="http://www.opengis.net/gml"
    xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd"
    version="1.0.0">
    <ows:ServiceIdentification>
        <ows:Title>PDG Ice-wedge polygon high</ows:Title>
        <ows:ServiceType>OGC WMTS</ows:ServiceType>
        <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
    </ows:ServiceIdentification>
    <ows:OperationsMetadata>
        <ows:Operation name="GetCapabilities">
            <ows:DCP>
                <ows:HTTP>
                    <ows:Get
                        xlink:href="file:///home/path/to/file/CAPABILITIES_GEOTIFF.xml">
                        <ows:Constraint name="GetEncoding">
                            <ows:AllowedValues>
                                <ows:Value>RESTful</ows:Value>
                            </ows:AllowedValues>
                        </ows:Constraint>
                    </ows:Get>
                </ows:HTTP>
            </ows:DCP>
        </ows:Operation>
        <ows:Operation name="GetTile">
            <ows:DCP>
                <ows:HTTP>
                    <ows:Get
                        xlink:href="https://arcticdata.io/data/10.18739/A2KW57K57/iwp_geotiff_high">
                        <ows:Constraint name="GetEncoding">
                            <ows:AllowedValues>
                                <ows:Value>RESTful</ows:Value>
                            </ows:AllowedValues>
                        </ows:Constraint>
                    </ows:Get>
                </ows:HTTP>
            </ows:DCP>
        </ows:Operation>
    </ows:OperationsMetadata>
    <Contents>
        <Layer>
            <ows:Title>iwp_high</ows:Title>
            <ows:Identifier>iwp_high</ows:Identifier>
            <ows:WGS84BoundingBox>
                <ows:LowerCorner>-179.91531896747117 50.16996707215903</ows:LowerCorner>
                <ows:UpperCorner>179.91531896747247 80.0978646943821</ows:UpperCorner>
            </ows:WGS84BoundingBox>
            <Style isDefault="true">
                <ows:Title>Default Style</ows:Title>
                <ows:Identifier>default</ows:Identifier>
            </Style>
            <Format>image/tiff</Format>
            <Format>image/png</Format>
            <TileMatrixSetLink>
                <TileMatrixSet>WGS1984Quad</TileMatrixSet>
            </TileMatrixSetLink>
            <ResourceURL format="image/tiff" resourceType="tile"
                template="https://arcticdata.io/data/10.18739/A2KW57K57/iwp_geotiff_high/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.tif" />
            <ResourceURL format="image/png" resourceType="tile"
                template="https://arcticdata.io/data/tiles/10.18739/A2KW57K57/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png" />
        </Layer>

        <TileMatrixSet>
            <ows:Title>CRS84 for the World</ows:Title>
            <!--<ows:Identifier>WorldCRS84Quad</ows:Identifier>--> <!-- These are equivalent, see OGC docs -->
            <ows:Identifier>WGS1984Quad</ows:Identifier>
            <ows:BoundingBox crs="http://www.opengis.net/def/crs/OGC/1.3/CRS84">
                <ows:LowerCorner>-180 -90</ows:LowerCorner>
                <ows:UpperCorner>180 90</ows:UpperCorner>
            </ows:BoundingBox>
            <ows:SupportedCRS>http://www.opengis.net/def/crs/OGC/1.3/CRS84</ows:SupportedCRS>
            <WellKnownScaleSet>http://www.opengis.net/def/wkss/OGC/1.0/GoogleCRS84Quad</WellKnownScaleSet>
            <TileMatrix>
                <ows:Identifier>0</ows:Identifier>
                <ScaleDenominator>279541132.0143589</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>2</MatrixWidth>
                <MatrixHeight>1</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>1</ows:Identifier>
                <ScaleDenominator>139770566.0071794</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>4</MatrixWidth>
                <MatrixHeight>2</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>2</ows:Identifier>
                <ScaleDenominator>69885283.00358972</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>8</MatrixWidth>
                <MatrixHeight>4</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>3</ows:Identifier>
                <ScaleDenominator>34942641.50179486</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>16</MatrixWidth>
                <MatrixHeight>8</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>4</ows:Identifier>
                <ScaleDenominator>17471320.75089743</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>32</MatrixWidth>
                <MatrixHeight>16</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>5</ows:Identifier>
                <ScaleDenominator>8735660.375448715</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>64</MatrixWidth>
                <MatrixHeight>32</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>6</ows:Identifier>
                <ScaleDenominator>4367830.187724357</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>128</MatrixWidth>
                <MatrixHeight>64</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>7</ows:Identifier>
                <ScaleDenominator>2183915.093862179</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>256</MatrixWidth>
                <MatrixHeight>128</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>8</ows:Identifier>
                <ScaleDenominator>1091957.546931089</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>512</MatrixWidth>
                <MatrixHeight>256</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>9</ows:Identifier>
                <ScaleDenominator>545978.7734655447</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>1024</MatrixWidth>
                <MatrixHeight>512</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>10</ows:Identifier>
                <ScaleDenominator>272989.3867327723</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>2048</MatrixWidth>
                <MatrixHeight>1024</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>11</ows:Identifier>
                <ScaleDenominator>136494.6933663862</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>4096</MatrixWidth>
                <MatrixHeight>2048</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>12</ows:Identifier>
                <ScaleDenominator>68247.34668319309</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>8192</MatrixWidth>
                <MatrixHeight>4096</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>13</ows:Identifier>
                <ScaleDenominator>34123.67334159654</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>16384</MatrixWidth>
                <MatrixHeight>8192</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>14</ows:Identifier>
                <ScaleDenominator>17061.83667079827</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>32768</MatrixWidth>
                <MatrixHeight>16384</MatrixHeight>
            </TileMatrix>
            <TileMatrix>
                <ows:Identifier>15</ows:Identifier>
                <ScaleDenominator>8530.918335399136</ScaleDenominator>
                <TopLeftCorner>-180 90</TopLeftCorner>
                <TileWidth>256</TileWidth>
                <TileHeight>256</TileHeight>
                <MatrixWidth>65536</MatrixWidth>
                <MatrixHeight>32768</MatrixHeight>
            </TileMatrix>
        </TileMatrixSet>
    </Contents>
    <ServiceMetadataURL
        xlink:href="file:///home/path/to/file/CAPABILITIES_GEOTIFF.xml" />
</Capabilities>

Where file:///home/path/to/file is the actual filepath

@ianguerin
Copy link

After much trial and error, I think @yvonnesjy and I have figured out the issue.
It seems that GeoTIFFS that has an interleave metadata option of "BAND" are not rendering properly through WMTS in QGIS, but interleave metadata option of "PIXEL" is working fine when loaded as WMS/WMTS.

Here's a link to GDAL docs about creation options.
Notably:

... but some applications only support pixel interleaved TIFF files.

I was able to convert a band-interleaved file to pixel-interleaved and QGIS displayed it when loaded as WMS/WMTS. I think the next step is to run our viz pipeline on a subset of one of our datasets (Ice-wedge polygons is what I've been looking at) and change the GeoTIFF creation to override the default interleave creation option (which is band by default).

@yvonnesjy
Copy link

Today's update:

Interleave turned out to be a correlation, not a cause. By updating the band data type to int32 (instead of float64) (thanks to @ianguerin !), QGIS downloads the tifs successfully. Yesterday when we exported the file as pixel interleaved, it changed the data type to byte, which turned out to also be supported.

This thread suggests there are limitations to the data types WMTS can support. Both that and its linked thread suggest WCS is the way to go. The description of "an open specification for sharing raster datasets on the web" does fit our use case.

@mbjones Is WCS actually what we want, rather than WMTS?

@ianguerin also posted a question to continue exploring the WMTS path.

@mbjones
Copy link
Member Author

mbjones commented May 23, 2024

WCS may be the way to go, but I haven't looked at it in years. It is from the older family of OGC specifications, and would likely require a dedicated WCS server IIRC (whereas WMTS can be served from any web location, no special server needed) -- but we'd need to explore that further.

@mbjones
Copy link
Member Author

mbjones commented May 23, 2024

Reading the threads you linked, I see they are talking about WMS and not about WMTS -- WMS is the older family spec as well, and we've not been using it.

@mbjones
Copy link
Member Author

mbjones commented May 23, 2024

One last comment (sorry for the stream)... WMTS enables serving arbitrary formats, and uses different identifiers for different types. For example, here's the list from SentinelHub for the example I posted the other day:

      <Format>image/png</Format>
      <Format>image/jpeg</Format>
      <Format>image/jpg</Format>
      <Format>image/tiff</Format>
      <Format>application/vnd.google-earth.kmz+xml</Format>
      <Format>image/tiff;depth=8</Format>
      <Format>image/tiff;depth=16</Format>
      <Format>image/tiff;depth=32f</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/jpeg</Format>
      <Format>application/vnd.google-earth.kmz+xml;image_type=image/png</Format>
      <Format>application/x-esri-shape</Format>
      <Format>application/json</Format>

Notice that the tiff formats include a depth parameter. Have you tried setting that to match our file format?

@ianguerin
Copy link

Is there a way to determine what "depth" our GeoTIFFs are? I tried various values, mostly anytime I added ;depth=X to the Format string I started seeing 301 HTTP errors in the network tab in QGIS.

@mbjones
Copy link
Member Author

mbjones commented May 23, 2024

The GDAL GTiff driver (https://gdal.org/drivers/raster/gtiff.html) is the defacto format definition as it is used under the hood for most geo tools, including QGIS it seems. That documentation says:

Currently band types of Byte, UInt16, Int16, UInt32, Int32, Float32, Float64, CInt16, CInt32, CFloat32 and CFloat64 are supported for reading and writing

How that maps to the depth string in WMTS is unknown to me, but I'll bet depth=16 corresponds to a GTiff drive pixel data type of Int16, and depth=32f corresponds to Float32. QGIS should be able to open any file that was created with the GDAL GTiff driver.

Each band in the raster can have its own data type, and gdalinfo will report the actual datatype of each band -- see this example showing a band with type Byte: https://gdal.org/programs/gdalinfo.html#example I'm not sure how those map onto the Format string options in WMTS. Hope some of this is useful to you.

@ianguerin
Copy link

That was my assumption as well. No luck using the depth parameter, though.
QGIS has no problem opening the GeoTIFF; to be clear it is just when I try to load it via WMTS. I'll keep exploring though. The response I got on my stackexchange question seems to think that GeoTIFFs are not the primary use case for WMTS. Quote: "It is recommended that servers offer Tiles in the image/png and image/jpeg file formats"

@yvonnesjy
Copy link

Some thoughts and findings:

image (1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: In Progress
Status: In Progress
Development

No branches or pull requests

3 participants