A GetCapabilities request to a WMTS service returns three types of information: service-level metadata that describes the WMTS service, operations metadata that describes the operations and the encoding that is supported for each operation, and a list of layers and tile matrix sets that a client can request in a GetTile request.
Service-level metadata is the information that describes the WMTS server. This information includes the URL endpoint that clients use to access the server, a description of what the service provides, who owns the service, search keywords, and access restrictions or limitations.
A GetCapabilities request to the server returns the information in XML format.
Request Format
The possible request depends on the type of encoding used - Key Value Pair (KVP) or REST.
Using KVP Encoding:
The capabilities can be requested by using this URL:
https://api.cloud.precisely.com/v1/spatial/wmts?SERVICE=WMTS&REQUEST=GetCapabilities&ACCEPTVERSIONS={version}Using RESTful Encoding:
The capabilities can be requested by using this URL:
https://api.cloud.precisely.com/v1/spatial/wmts/1.0.0/WMTSCapabilities.xmlInput Parameters
The request parameters are always sent as an HTTP query string.
| Parameter | Type | Required | Description |
|---|---|---|---|
| VERSION=version | String | No | Request version. Currently version 1.0.0 is supported. |
| SERVICE=WMTS | String | Yes | Service type. The SERVICE attribute is always set to WMTS. |
| REQUEST=GetCapabilities | String | Yes | Request name. |
Response
After a successful GetCapabilities request, the service returns a GetCapabilities response which is a descriptive XML file. The GetCapabilities.xml file contains the information on the services metadata, capabilities, and contents (layers and tile matrix sets).
Example
Request
https://api.cloud.precisely.com/v1/spatial/wmts?SERVICE=WMTS&REQUEST=GetCapabilities&ACCEPTVERSIONS=1.0.0https://api.cloud.precisely.com/v1/spatial/wmts/1.0.0/WMTSCapabilities.xmlResponse
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Capabilities xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.opengis.net/wmts/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:ns5="http://www.w3.org/2001/SMIL20/" xmlns:ns6="http://www.w3.org/2001/SMIL20/Language" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd">
<ows:ServiceIdentification>
<ows:Title>Precisely WMTS</ows:Title>
<ows:Abstract>Access to Precisely enrich data via a web API that conforms to the OGC WMTS specification</ows:Abstract>
<ows:Keywords>
<ows:Keyword>map</ows:Keyword>
<ows:Keyword>geographic</ows:Keyword>
<ows:Keyword>wmts</ows:Keyword>
</ows:Keywords>
<ows:ServiceType>OGC WMTS</ows:ServiceType>
<ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
<ows:Profile>http://www.opengis.net/spec/wmts-simple/1.0/conf/simple-profile</ows:Profile>
<ows:AccessConstraints>none</ows:AccessConstraints>
</ows:ServiceIdentification>
<ows:ServiceProvider>
<ows:ProviderName>Precisely</ows:ProviderName>
<ows:ProviderSite xlink:type="simple" xlink:href="https://www.precisely.com/"/>
</ows:ServiceProvider>
<ows:OperationsMetadata>
<ows:Operation name="GetCapabilities">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/WMTSCapabilities.xml">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>RESTful</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
<ows:Get xlink:href="https://api-dev.cloud.precisely.services/v1/spatial/wmts?">
<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://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>RESTful</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
<ows:Get xlink:href="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>RESTful</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
<ows:Get xlink:href="https://api-dev.cloud.precisely.services/v1/spatial/wmts?">
<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>Address Fabric USA</ows:Title>
<ows:Identifier>adf-usa</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/adf-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/adf-usa/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/adf-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/adf-usa/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Residential USA</ows:Title>
<ows:Identifier>nhb-usa</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/nhb-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/nhb-usa/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/nhb-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/nhb-usa/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Parcel Boundaries USA</ows:Title>
<ows:Identifier>par-usa</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/par-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/par-usa/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/par-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/par-usa/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Buildings USA</ows:Title>
<ows:Identifier>pbb-usa</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/pbb-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/pbb-usa/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/pbb-usa/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/pbb-usa/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Fire Risk Pro</ows:Title>
<ows:Identifier>fireriskpro</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/fireriskpro/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/fireriskpro/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/fireriskpro/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/fireriskpro/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Fire Risk Pro USA</ows:Title>
<ows:Identifier>wfr-usa-fireriskpro-mv</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/wfr-usa-fireriskpro-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/wfr-usa-fireriskpro-mv/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/wfr-usa-fireriskpro-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/wfr-usa-fireriskpro-mv/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Crime Index USA</ows:Title>
<ows:Identifier>crp-usa-mv</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/crp-usa-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/crp-usa-mv/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/crp-usa-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/crp-usa-mv/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<Layer>
<ows:Title>Psyte USA</ows:Title>
<ows:Identifier>psyte-usa-mv</ows:Identifier>
<Style isDefault="true">
<ows:Title>default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<Format>application/vnd.mapbox-vector-tile</Format>
<TileMatrixSetLink>
<TileMatrixSet>WorldWebMercatorQuad_0_to_19</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/psyte-usa-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="image/png" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/psyte-usa-mv/{TileMatrix}/{TileCol}/{TileRow}.png"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="tile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/default/tiles/psyte-usa-mv/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
<ResourceURL format="application/vnd.mapbox-vector-tile" resourceType="simpleProfileTile" template="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/simpleProfileTile/tiles/psyte-usa-mv/{TileMatrix}/{TileCol}/{TileRow}.mvt"/>
</Layer>
<TileMatrixSet>
<ows:Title>WorldWebMercatorQuad_0_to_19</ows:Title>
<ows:Identifier>WorldWebMercatorQuad_0_to_19</ows:Identifier>
<ows:BoundingBox crs="urn:ogc:def:crs:EPSG::3857">
<ows:LowerCorner>-2.003750834E7 -2.003750834E7</ows:LowerCorner>
<ows:UpperCorner>2.003750834E7 2.003750834E7</ows:UpperCorner>
</ows:BoundingBox>
<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>5.590822639508929E8</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>1</ows:Identifier>
<ScaleDenominator>2.7954113197544646E8</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>2</MatrixWidth>
<MatrixHeight>2</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>2</ows:Identifier>
<ScaleDenominator>1.3977056598772323E8</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>4</MatrixWidth>
<MatrixHeight>4</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>3</ows:Identifier>
<ScaleDenominator>6.988528299386162E7</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>8</MatrixWidth>
<MatrixHeight>8</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>4</ows:Identifier>
<ScaleDenominator>3.494264149693081E7</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>16</MatrixWidth>
<MatrixHeight>16</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>5</ows:Identifier>
<ScaleDenominator>1.7471320748465404E7</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>32</MatrixWidth>
<MatrixHeight>32</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>6</ows:Identifier>
<ScaleDenominator>8735660.374232702</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>64</MatrixWidth>
<MatrixHeight>64</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>7</ows:Identifier>
<ScaleDenominator>4367830.187116351</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>128</MatrixWidth>
<MatrixHeight>128</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>8</ows:Identifier>
<ScaleDenominator>2183915.0935581755</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>256</MatrixWidth>
<MatrixHeight>256</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>9</ows:Identifier>
<ScaleDenominator>1091957.5467790877</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>512</MatrixWidth>
<MatrixHeight>512</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>10</ows:Identifier>
<ScaleDenominator>545978.7733895439</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>1024</MatrixWidth>
<MatrixHeight>1024</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>11</ows:Identifier>
<ScaleDenominator>272989.38669477194</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>2048</MatrixWidth>
<MatrixHeight>2048</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>12</ows:Identifier>
<ScaleDenominator>136494.69334738597</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>4096</MatrixWidth>
<MatrixHeight>4096</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>13</ows:Identifier>
<ScaleDenominator>68247.34667369298</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>8192</MatrixWidth>
<MatrixHeight>8192</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>14</ows:Identifier>
<ScaleDenominator>34123.67333684649</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>16384</MatrixWidth>
<MatrixHeight>16384</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>15</ows:Identifier>
<ScaleDenominator>17061.836668423246</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>32768</MatrixWidth>
<MatrixHeight>32768</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>16</ows:Identifier>
<ScaleDenominator>8530.918334211623</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>65536</MatrixWidth>
<MatrixHeight>65536</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>17</ows:Identifier>
<ScaleDenominator>4265.4591671058115</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>131072</MatrixWidth>
<MatrixHeight>131072</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>18</ows:Identifier>
<ScaleDenominator>2132.7295835529058</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>262144</MatrixWidth>
<MatrixHeight>262144</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>19</ows:Identifier>
<ScaleDenominator>1066.3647917764529</ScaleDenominator>
<TopLeftCorner>-2.003750834E7 2.003750834E7</TopLeftCorner>
<TileWidth>256</TileWidth>
<TileHeight>256</TileHeight>
<MatrixWidth>524288</MatrixWidth>
<MatrixHeight>524288</MatrixHeight>
</TileMatrix>
</TileMatrixSet>
</Contents>
<ServiceMetadataURL xlink:href="https://api-dev.cloud.precisely.services/v1/spatial/wmts/1.0.0/WMTSCapabilities.xml"/>
</Capabilities>