<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Wayback not honoring identifier/tilematrix set when zooming in in ArcGIS Image Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-image-server-questions/wayback-not-honoring-identifier-tilematrix-set/m-p/1006773#M1359</link>
    <description>&lt;P&gt;In the HTML example below the tileMatrixSet and identifier are set to display the imagery from Wayback on 2017-03-15. Zooming in once will correctly get data from 3-15-2017. But zooming in again will switch to 4-20-2014 data See figures 1-3&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3-15-2017.png" style="width: 624px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1448i7481FF507C149332/image-size/large?v=v2&amp;amp;px=999" role="button" title="3-15-2017.png" alt="3-15-2017.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="compare 2014 vs 2017.png" style="width: 624px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1449iAB3E1D4404A96A03/image-size/large?v=v2&amp;amp;px=999" role="button" title="compare 2014 vs 2017.png" alt="compare 2014 vs 2017.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4-20-2014.png" style="width: 689px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1450i40012F3F17164055/image-size/large?v=v2&amp;amp;px=999" role="button" title="4-20-2014.png" alt="4-20-2014.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;What does it switch, and how can I determine when it will switch and to what date.&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;___________________&lt;/P&gt;&lt;P&gt;The following html code will display the issue&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;&lt;BR /&gt;&amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Wayback Issue&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;link rel="stylesheet" href="&lt;A href="https://js.arcgis.com/3.32/esri/css/esri.css" target="_blank" rel="noopener"&gt;https://js.arcgis.com/3.32/esri/css/esri.css&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;html, body, #map {&lt;BR /&gt;height: 100%;&lt;BR /&gt;width: 100%;&lt;BR /&gt;margin: 0;&lt;BR /&gt;padding: 0;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;script src="&lt;A target="_blank" rel="noopener"&gt;https://js.arcgis.com/3.32/"&amp;gt;&amp;lt;/script&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;require([&lt;BR /&gt;"dojo/dom-construct",&lt;BR /&gt;"esri/map",&lt;BR /&gt;"esri/geometry/Extent",&lt;BR /&gt;"esri/layers/WMTSLayerInfo",&lt;BR /&gt;"esri/layers/WMTSLayer",&lt;BR /&gt;"dojo/domReady!"&lt;BR /&gt;], function(&lt;BR /&gt;domConstruct,&lt;BR /&gt;Map,&lt;BR /&gt;Extent,&lt;BR /&gt;WMTSLayerInfo,&lt;BR /&gt;WMTSLayer&lt;BR /&gt;) {&lt;BR /&gt;&lt;BR /&gt;var bounds = new Extent({&lt;BR /&gt;'xmin':4488937.02310209,&lt;BR /&gt;'ymin':-1222356.1703367431,&lt;BR /&gt;'xmax':4555437.237710103,&lt;BR /&gt;'ymax':-1191781.359022714,&lt;BR /&gt;'spatialReference':{'wkid':102100}&lt;BR /&gt;});&lt;BR /&gt;&lt;BR /&gt;var layerInfo = new WMTSLayerInfo({&lt;BR /&gt;identifier: 'WB_2015_R23', format: 'jpeg',&lt;BR /&gt;tileMatrixSet: 'default028mm'});&lt;/P&gt;&lt;P&gt;var options = {layerInfo : layerInfo, serviceMode: 'KVP' };&lt;BR /&gt;url = '&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer&lt;/A&gt;';&lt;BR /&gt;&lt;A href="https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer" target="_blank" rel="noopener"&gt;https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer&lt;/A&gt;&lt;BR /&gt;var wmtsLayer = new WMTSLayer(url, options);&lt;BR /&gt;&lt;BR /&gt;self.map = new Map('map',&lt;BR /&gt;{&lt;BR /&gt;basemap: 'topo-vector',&lt;BR /&gt;extent: bounds,&lt;BR /&gt;sliderPosition: 'top-right',&lt;BR /&gt;logo: false&lt;BR /&gt;});&lt;BR /&gt;&lt;BR /&gt;self.map.addLayer(wmtsLayer);&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;);&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;---------------------end of code _________________________&lt;/P&gt;&lt;P&gt;Note the following urls may be of help&lt;/P&gt;&lt;P&gt;(cf &lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer?request=GetCapabilities&amp;amp;service=WMTS&amp;amp;version=1.0.0" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer?request=GetCapabilities&amp;amp;service=WMTS&amp;amp;version=1.0.0&lt;/A&gt; to verify that &amp;nbsp; "WB_2017_R05" correlated to 2017-03-15&lt;/P&gt;&lt;P&gt;&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/14/8687/10044" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/14/8687/10044&lt;/A&gt;&lt;/P&gt;&lt;P&gt;was captured via fiddler for the 2017 data&lt;/P&gt;&lt;P&gt;&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/world_imagery/wmts/1.0.0/default028mm/mapserver/tile/30195/14/8687/10044" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/world_imagery/wmts/1.0.0/default028mm/mapserver/tile/30195/14/8687/10044&lt;/A&gt;&lt;/P&gt;&lt;P&gt;was captured via fiddler for the 2014 data. Note the value after tile changed.&lt;/P&gt;&lt;P&gt;The following code suggest that the LODs exist for zoom level much lower than the 1:20,000 in question&lt;/P&gt;&lt;P&gt;&lt;A href="https://csagss.maps.arcgis.com/sharing/rest/content/items/0494f3f9f47e4f81817b4196da330da5/data/?f=json&amp;amp;token=CGhvE72VpXg8ThdW4UfuDF9FWWZLInnOtVxpnIHynYBe_ENdZ_j2eykisGGfgIqg0mhZyBjKncy4fkHPuCzJzTuovQ5A0v13-GS4Ftdar9JNOruzZmCCHyGgH3ToCjWOHZJdk0-4geQBJ6Lj7C0N5dEqI9k8uf_wUJgKNaAG7nHYTOBqHZaiYUjiRBrOGrlspfVu9L3njia_R3cqjR5_zw." target="_blank" rel="noopener"&gt;https://csagss.maps.arcgis.com/sharing/rest/content/items/0494f3f9f47e4f81817b4196da330da5/data/?f=json&amp;amp;token=CGhvE72VpXg8ThdW4UfuDF9FWWZLInnOtVxpnIHynYBe_ENdZ_j2eykisGGfgIqg0mhZyBjKncy4fkHPuCzJzTuovQ5A0v13-GS4Ftdar9JNOruzZmCCHyGgH3ToCjWOHZJdk0-4geQBJ6Lj7C0N5dEqI9k8uf_wUJgKNaAG7nHYTOBqHZaiYUjiRBrOGrlspfVu9L3njia_R3cqjR5_zw.&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{"templateUrl":"https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/{level}/{row}/{col}","copyright":"","fullExtent":{"xmin":-20037507.229594,"ymin":-20037508.626927227,"xmax":20037507.229594,"ymax":20037508.626927227,"spatialReference":{"wkid":102100}},"tileInfo":{"rows":256,"cols":256,"dpi":96,"origin":{"x":-20037508.342787,"y":20037508.342787,"spatialReference":{"wkid":102100}},"spatialReference":{"wkid":102100},"lods":[{"level":0,"levelValue":"0","resolution":156543.03392798046,"scale":591658710.9089025},{"level":1,"levelValue":"1","resolution":78271.5169639901,"scale":295829355.4544507},{"level":2,"levelValue":"2","resolution":39135.75848199517,"scale":147914677.72722584},{"level":3,"levelValue":"3","resolution":19567.879240997456,"scale":73957338.86361243},{"level":4,"levelValue":"4","resolution":9783.939620498726,"scale":36978669.43180621},{"level":5,"levelValue":"5","resolution":4891.969810249364,"scale":18489334.715903107},{"level":6,"levelValue":"6","resolution":2445.984905124682,"scale":9244667.357951554},{"level":7,"levelValue":"7","resolution":1222.992452562341,"scale":4622333.678975777},{"level":8,"levelValue":"8","resolution":611.4962262813027,"scale":2311166.8394883885},{"level":9,"levelValue":"9","resolution":305.74811314051914,"scale":1155583.4197436941},{"level":10,"levelValue":"10","resolution":152.87405657039182,"scale":577791.7098723471},{"level":11,"levelValue":"11","resolution":76.43702828506362,"scale":288895.85493567353},{"level":12,"levelValue":"12","resolution":38.21851414253181,"scale":144447.92746783677},{"level":13,"levelValue":"13","resolution":19.109257071265905,"scale":72223.96373391838},{"level":14,"levelValue":"14","resolution":9.554628535632952,"scale":36111.98186695919},{"level":15,"levelValue":"15","resolution":4.7773142679487695,"scale":18055.9909339796},{"level":16,"levelValue":"16","resolution":2.3886571339743847,"scale":9027.9954669898},{"level":17,"levelValue":"17","resolution":1.1943285668549,"scale":4513.997732994898},{"level":18,"levelValue":"18","resolution":0.597164283559742,"scale":2256.99886699745},{"level":19,"levelValue":"19","resolution":0.2985821416475791,"scale":1128.4994329987242},{"level":20,"levelValue":"20","resolution":0.14929107082378956,"scale":564.2497164993621},{"level":21,"levelValue":"21","resolution":0.07464553541189478,"scale":282.12485824968104},{"level":22,"levelValue":"22","resolution":0.03732276770594739,"scale":141.06242912484052},{"level":23,"levelValue":"23","resolution":0.018661383852973695,"scale":70.53121456242026}]},"wmtsInfo":{"url":"https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer","layerIdentifier":"WB_2015_R23","tileMatrixSet":"default028mm"}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Dec 2020 20:14:27 GMT</pubDate>
    <dc:creator>CSAAdministrator</dc:creator>
    <dc:date>2020-12-03T20:14:27Z</dc:date>
    <item>
      <title>Wayback not honoring identifier/tilematrix set when zooming in</title>
      <link>https://community.esri.com/t5/arcgis-image-server-questions/wayback-not-honoring-identifier-tilematrix-set/m-p/1006773#M1359</link>
      <description>&lt;P&gt;In the HTML example below the tileMatrixSet and identifier are set to display the imagery from Wayback on 2017-03-15. Zooming in once will correctly get data from 3-15-2017. But zooming in again will switch to 4-20-2014 data See figures 1-3&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3-15-2017.png" style="width: 624px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1448i7481FF507C149332/image-size/large?v=v2&amp;amp;px=999" role="button" title="3-15-2017.png" alt="3-15-2017.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="compare 2014 vs 2017.png" style="width: 624px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1449iAB3E1D4404A96A03/image-size/large?v=v2&amp;amp;px=999" role="button" title="compare 2014 vs 2017.png" alt="compare 2014 vs 2017.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4-20-2014.png" style="width: 689px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1450i40012F3F17164055/image-size/large?v=v2&amp;amp;px=999" role="button" title="4-20-2014.png" alt="4-20-2014.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;What does it switch, and how can I determine when it will switch and to what date.&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;___________________&lt;/P&gt;&lt;P&gt;The following html code will display the issue&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;&lt;BR /&gt;&amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Wayback Issue&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;link rel="stylesheet" href="&lt;A href="https://js.arcgis.com/3.32/esri/css/esri.css" target="_blank" rel="noopener"&gt;https://js.arcgis.com/3.32/esri/css/esri.css&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;html, body, #map {&lt;BR /&gt;height: 100%;&lt;BR /&gt;width: 100%;&lt;BR /&gt;margin: 0;&lt;BR /&gt;padding: 0;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;script src="&lt;A target="_blank" rel="noopener"&gt;https://js.arcgis.com/3.32/"&amp;gt;&amp;lt;/script&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;require([&lt;BR /&gt;"dojo/dom-construct",&lt;BR /&gt;"esri/map",&lt;BR /&gt;"esri/geometry/Extent",&lt;BR /&gt;"esri/layers/WMTSLayerInfo",&lt;BR /&gt;"esri/layers/WMTSLayer",&lt;BR /&gt;"dojo/domReady!"&lt;BR /&gt;], function(&lt;BR /&gt;domConstruct,&lt;BR /&gt;Map,&lt;BR /&gt;Extent,&lt;BR /&gt;WMTSLayerInfo,&lt;BR /&gt;WMTSLayer&lt;BR /&gt;) {&lt;BR /&gt;&lt;BR /&gt;var bounds = new Extent({&lt;BR /&gt;'xmin':4488937.02310209,&lt;BR /&gt;'ymin':-1222356.1703367431,&lt;BR /&gt;'xmax':4555437.237710103,&lt;BR /&gt;'ymax':-1191781.359022714,&lt;BR /&gt;'spatialReference':{'wkid':102100}&lt;BR /&gt;});&lt;BR /&gt;&lt;BR /&gt;var layerInfo = new WMTSLayerInfo({&lt;BR /&gt;identifier: 'WB_2015_R23', format: 'jpeg',&lt;BR /&gt;tileMatrixSet: 'default028mm'});&lt;/P&gt;&lt;P&gt;var options = {layerInfo : layerInfo, serviceMode: 'KVP' };&lt;BR /&gt;url = '&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer&lt;/A&gt;';&lt;BR /&gt;&lt;A href="https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer" target="_blank" rel="noopener"&gt;https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer&lt;/A&gt;&lt;BR /&gt;var wmtsLayer = new WMTSLayer(url, options);&lt;BR /&gt;&lt;BR /&gt;self.map = new Map('map',&lt;BR /&gt;{&lt;BR /&gt;basemap: 'topo-vector',&lt;BR /&gt;extent: bounds,&lt;BR /&gt;sliderPosition: 'top-right',&lt;BR /&gt;logo: false&lt;BR /&gt;});&lt;BR /&gt;&lt;BR /&gt;self.map.addLayer(wmtsLayer);&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;);&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;---------------------end of code _________________________&lt;/P&gt;&lt;P&gt;Note the following urls may be of help&lt;/P&gt;&lt;P&gt;(cf &lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer?request=GetCapabilities&amp;amp;service=WMTS&amp;amp;version=1.0.0" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer?request=GetCapabilities&amp;amp;service=WMTS&amp;amp;version=1.0.0&lt;/A&gt; to verify that &amp;nbsp; "WB_2017_R05" correlated to 2017-03-15&lt;/P&gt;&lt;P&gt;&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/14/8687/10044" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/14/8687/10044&lt;/A&gt;&lt;/P&gt;&lt;P&gt;was captured via fiddler for the 2017 data&lt;/P&gt;&lt;P&gt;&lt;A href="https://wayback.maptiles.arcgis.com/arcgis/rest/services/world_imagery/wmts/1.0.0/default028mm/mapserver/tile/30195/14/8687/10044" target="_blank" rel="noopener"&gt;https://wayback.maptiles.arcgis.com/arcgis/rest/services/world_imagery/wmts/1.0.0/default028mm/mapserver/tile/30195/14/8687/10044&lt;/A&gt;&lt;/P&gt;&lt;P&gt;was captured via fiddler for the 2014 data. Note the value after tile changed.&lt;/P&gt;&lt;P&gt;The following code suggest that the LODs exist for zoom level much lower than the 1:20,000 in question&lt;/P&gt;&lt;P&gt;&lt;A href="https://csagss.maps.arcgis.com/sharing/rest/content/items/0494f3f9f47e4f81817b4196da330da5/data/?f=json&amp;amp;token=CGhvE72VpXg8ThdW4UfuDF9FWWZLInnOtVxpnIHynYBe_ENdZ_j2eykisGGfgIqg0mhZyBjKncy4fkHPuCzJzTuovQ5A0v13-GS4Ftdar9JNOruzZmCCHyGgH3ToCjWOHZJdk0-4geQBJ6Lj7C0N5dEqI9k8uf_wUJgKNaAG7nHYTOBqHZaiYUjiRBrOGrlspfVu9L3njia_R3cqjR5_zw." target="_blank" rel="noopener"&gt;https://csagss.maps.arcgis.com/sharing/rest/content/items/0494f3f9f47e4f81817b4196da330da5/data/?f=json&amp;amp;token=CGhvE72VpXg8ThdW4UfuDF9FWWZLInnOtVxpnIHynYBe_ENdZ_j2eykisGGfgIqg0mhZyBjKncy4fkHPuCzJzTuovQ5A0v13-GS4Ftdar9JNOruzZmCCHyGgH3ToCjWOHZJdk0-4geQBJ6Lj7C0N5dEqI9k8uf_wUJgKNaAG7nHYTOBqHZaiYUjiRBrOGrlspfVu9L3njia_R3cqjR5_zw.&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{"templateUrl":"https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/WMTS/1.0.0/default028mm/MapServer/tile/28163/{level}/{row}/{col}","copyright":"","fullExtent":{"xmin":-20037507.229594,"ymin":-20037508.626927227,"xmax":20037507.229594,"ymax":20037508.626927227,"spatialReference":{"wkid":102100}},"tileInfo":{"rows":256,"cols":256,"dpi":96,"origin":{"x":-20037508.342787,"y":20037508.342787,"spatialReference":{"wkid":102100}},"spatialReference":{"wkid":102100},"lods":[{"level":0,"levelValue":"0","resolution":156543.03392798046,"scale":591658710.9089025},{"level":1,"levelValue":"1","resolution":78271.5169639901,"scale":295829355.4544507},{"level":2,"levelValue":"2","resolution":39135.75848199517,"scale":147914677.72722584},{"level":3,"levelValue":"3","resolution":19567.879240997456,"scale":73957338.86361243},{"level":4,"levelValue":"4","resolution":9783.939620498726,"scale":36978669.43180621},{"level":5,"levelValue":"5","resolution":4891.969810249364,"scale":18489334.715903107},{"level":6,"levelValue":"6","resolution":2445.984905124682,"scale":9244667.357951554},{"level":7,"levelValue":"7","resolution":1222.992452562341,"scale":4622333.678975777},{"level":8,"levelValue":"8","resolution":611.4962262813027,"scale":2311166.8394883885},{"level":9,"levelValue":"9","resolution":305.74811314051914,"scale":1155583.4197436941},{"level":10,"levelValue":"10","resolution":152.87405657039182,"scale":577791.7098723471},{"level":11,"levelValue":"11","resolution":76.43702828506362,"scale":288895.85493567353},{"level":12,"levelValue":"12","resolution":38.21851414253181,"scale":144447.92746783677},{"level":13,"levelValue":"13","resolution":19.109257071265905,"scale":72223.96373391838},{"level":14,"levelValue":"14","resolution":9.554628535632952,"scale":36111.98186695919},{"level":15,"levelValue":"15","resolution":4.7773142679487695,"scale":18055.9909339796},{"level":16,"levelValue":"16","resolution":2.3886571339743847,"scale":9027.9954669898},{"level":17,"levelValue":"17","resolution":1.1943285668549,"scale":4513.997732994898},{"level":18,"levelValue":"18","resolution":0.597164283559742,"scale":2256.99886699745},{"level":19,"levelValue":"19","resolution":0.2985821416475791,"scale":1128.4994329987242},{"level":20,"levelValue":"20","resolution":0.14929107082378956,"scale":564.2497164993621},{"level":21,"levelValue":"21","resolution":0.07464553541189478,"scale":282.12485824968104},{"level":22,"levelValue":"22","resolution":0.03732276770594739,"scale":141.06242912484052},{"level":23,"levelValue":"23","resolution":0.018661383852973695,"scale":70.53121456242026}]},"wmtsInfo":{"url":"https://wayback.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer","layerIdentifier":"WB_2015_R23","tileMatrixSet":"default028mm"}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 20:14:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-image-server-questions/wayback-not-honoring-identifier-tilematrix-set/m-p/1006773#M1359</guid>
      <dc:creator>CSAAdministrator</dc:creator>
      <dc:date>2020-12-03T20:14:27Z</dc:date>
    </item>
  </channel>
</rss>

