<?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 Map Tile Export in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29645#M2302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Does any know know good tutorial for exporting map as tiles? I can not find any, and I have problems. I assume the only way to do so is to use Data Driven Pages. I have 3 layers on the map, and I want to export each on as large 10000x10000 tiles. One of the layers is dem&amp;nbsp;map which uses 32bit float, and for Data Drive Pages all I can export are 8bit images.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is data driven pages really the only way to export map layers as large tiles?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Oct 2016 17:47:27 GMT</pubDate>
    <dc:creator>KonstantinGorskov</dc:creator>
    <dc:date>2016-10-27T17:47:27Z</dc:date>
    <item>
      <title>Map Tile Export</title>
      <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29645#M2302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Does any know know good tutorial for exporting map as tiles? I can not find any, and I have problems. I assume the only way to do so is to use Data Driven Pages. I have 3 layers on the map, and I want to export each on as large 10000x10000 tiles. One of the layers is dem&amp;nbsp;map which uses 32bit float, and for Data Drive Pages all I can export are 8bit images.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is data driven pages really the only way to export map layers as large tiles?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2016 17:47:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29645#M2302</guid>
      <dc:creator>KonstantinGorskov</dc:creator>
      <dc:date>2016-10-27T17:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Map Tile Export</title>
      <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29646#M2303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tired using this code to export:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&lt;BR /&gt;for pageNum in range(7014, 7016):&lt;BR /&gt; mxd.dataDrivenPages.currentPageID = pageNum&lt;BR /&gt; arcpy.mapping.ExportToJPEG(mxd, r"C:\Temp\ParcelAtlas_Page" + str(pageNum) + ".jpg", '', 10000, 10000, 1000) &lt;BR /&gt;del mxd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But that is crazy, final result comes up in random sizes with white marghin around the map, I noticed that for some reason 'Page and Print Setup' influences how the final image looks, but it has no suqre options, only stuff like A4/A5 paper. Did I forgot some important step before enabling data driven, to make sure it properly renders all pages as squares? I need to render every page at 1:1890 resolution, which is its original&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2016 21:14:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29646#M2303</guid>
      <dc:creator>KonstantinGorskov</dc:creator>
      <dc:date>2016-10-27T21:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Map Tile Export</title>
      <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29647#M2304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Konstantin, there is a lot to read and no quick fix that will suit all requirements&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-mapping/introduction-to-arcpy-mapping.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-mapping/introduction-to-arcpy-mapping.htm"&gt;Introduction to arcpy.mapping—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-mapping/datadrivenpages-class.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-mapping/datadrivenpages-class.htm"&gt;DataDrivenPages—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2016 21:19:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29647#M2304</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-10-27T21:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Map Tile Export</title>
      <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29648#M2305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, thank you! Will solve it little by little.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2016 07:44:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29648#M2305</guid>
      <dc:creator>KonstantinGorskov</dc:creator>
      <dc:date>2016-10-28T07:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Map Tile Export</title>
      <link>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29649#M2306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by "tiles"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you building a tile cache for web services? &amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/tools/data-management-toolbox/an-overview-of-the-tile-cache-toolset.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/data-management-toolbox/an-overview-of-the-tile-cache-toolset.htm"&gt;An overview of the Tile Cache toolset—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to cut up your data into more manageable sections retaining the same format and datatype?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to create a series of map images from your data ?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2016 06:37:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/map-tile-export/m-p/29649#M2306</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-10-30T06:37:00Z</dc:date>
    </item>
  </channel>
</rss>

