<?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 Re: Improving TIFF Export Workflow in ArcGIS Pro with Automatic Map Rotation in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1607162#M8616</link>
    <description>&lt;P&gt;Thanks for the follow-up, and happy to clarify!&lt;/P&gt;&lt;P&gt;Yes, I have a working Map Series in ArcGIS Pro that exports selected pages to PDF, which are then converted to TIFF. The issue isn't with the content of the maps themselves—everything is exporting correctly in terms of data and layout—but the &lt;STRONG&gt;orientation of the final TIFFs&lt;/STRONG&gt; isn’t right for our internal system.&lt;/P&gt;&lt;P&gt;In the manual process, &lt;STRONG&gt;after exporting the TIFFs&lt;/STRONG&gt;, I have to open each one and &lt;STRONG&gt;rotate it 90° counterclockwise&lt;/STRONG&gt; before it's submitted. This is required because our system expects the maps to be stored in that orientation in order to be accepted and eventually published for public view. If the orientation is off, the upload gets flagged and we have to redo it.&lt;/P&gt;&lt;P&gt;So to answer your question:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;What’s being rotated?&lt;/STRONG&gt; Just the final exported &lt;STRONG&gt;TIFF image&lt;/STRONG&gt;, not the map content itself.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;When is it being rotated?&lt;/STRONG&gt; Currently, &lt;STRONG&gt;manually&lt;/STRONG&gt;, after export.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Why?&lt;/STRONG&gt; To meet formatting/orientation requirements for internal submission and public-facing updates.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I tried using map_frame.rotation = -90 before export, but that ended up rotating the whole frame and misaligning the layout, so it’s not the right approach in this case. What I’m looking to do now is &lt;STRONG&gt;automate that final rotation step using PIL (Python Imaging Library)&lt;/STRONG&gt;, right after the export is complete.&lt;/P&gt;&lt;P&gt;Automating this would save me a lot of time and prevent human error—especially since we’re exporting batches of maps regularly.&lt;/P&gt;&lt;P&gt;I can definitely mock up a "wrong" vs "correct" example if that’s helpful. Let me know!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Apr 2025 21:32:23 GMT</pubDate>
    <dc:creator>ChrisRivero</dc:creator>
    <dc:date>2025-04-17T21:32:23Z</dc:date>
    <item>
      <title>Improving TIFF Export Workflow in ArcGIS Pro with Automatic Map Rotation</title>
      <link>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1605761#M8614</link>
      <description>&lt;P&gt;Hello Esri Community,&lt;/P&gt;&lt;P class=""&gt;We're currently working on improving our ArcGIS Pro map production workflows and would love some feedback and best practices from the community.&lt;/P&gt;&lt;P class=""&gt;As part of this effort, I’m enhancing an existing script called &lt;STRONG&gt;"Export2Tiff"&lt;/STRONG&gt;, which automates the export of scanned map pages from a &lt;STRONG&gt;Map Series&lt;/STRONG&gt; in a layout to &lt;STRONG&gt;TIFF format&lt;/STRONG&gt;. This script currently exports selected maps to &lt;STRONG&gt;PDF&lt;/STRONG&gt;, then converts the PDFs to &lt;STRONG&gt;TIFFs&lt;/STRONG&gt;.&lt;/P&gt;&lt;P class=""&gt;At this time, the script does &lt;STRONG&gt;not include any automatic map rotation&lt;/STRONG&gt; before export. We're now trying to incorporate that functionality so that each exported TIFF file is &lt;STRONG&gt;automatically rotated (e.g., 90° counterclockwise)&lt;/STRONG&gt;, eliminating the need for users to manually rotate maps after export.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":direct_hit:"&gt;🎯&lt;/span&gt;Goal&lt;/P&gt;&lt;P class=""&gt;Our objective is to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;Automatically rotate exported maps (TIFFs) to a consistent orientation&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;Ensure uniformity across all scanned map outputs&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;Streamline the workflow and reduce manual post-processing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":wrench:"&gt;🔧&lt;/span&gt;Current Status of the Script&lt;/P&gt;&lt;P class=""&gt;We have a working script that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Uses a map series to export selected map pages to PDF&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Converts those PDFs to TIFF format&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Saves the files to a shared network directory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;STRONG&gt;However, it does not currently apply any map rotation prior to export.&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;We're exploring options for adding rotation to the process.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;:question_mark:&lt;/img&gt;What We're Looking For&lt;/P&gt;&lt;P class=""&gt;We’d appreciate community input on the best way to handle this rotation step:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;🧭 What’s the best practice for &lt;STRONG&gt;rotating maps during export&lt;/STRONG&gt; in ArcGIS Pro using Python?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;span class="lia-unicode-emoji" title=":repeat_button:"&gt;🔁&lt;/span&gt;Should we apply rotation to the &lt;STRONG&gt;map frame before export&lt;/STRONG&gt;, or rotate the &lt;STRONG&gt;TIFF after it's created&lt;/STRONG&gt; using something like arcpy.management.Rotate?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;:package:&lt;/img&gt;How can we implement rotation so it's &lt;STRONG&gt;fully automated&lt;/STRONG&gt; when the script runs — without needing users to adjust anything manually?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;:warning:&lt;/img&gt;Are there any risks or performance issues with programmatically rotating layout elements (like the map frame)?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;🧠 If you've implemented something similar, would you be willing to share how you handled it?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;🧪 Current Environment&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;ArcGIS Pro 3.x&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;Python 3.x&lt;/STRONG&gt; (script tool integrated into ArcGIS Pro toolbox)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;The script already exports PDFs and converts them to TIFFs successfully&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;Thanks in Advance!&lt;/P&gt;&lt;P class=""&gt;We’re hoping to improve this tool for our team and streamline the export process. If you’ve tackled something similar or have ideas for how to approach this rotation functionality, we’d love to hear from you!&lt;/P&gt;&lt;P class=""&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 21:31:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1605761#M8614</guid>
      <dc:creator>ChrisRivero</dc:creator>
      <dc:date>2025-04-17T21:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Improving TIFF Export Workflow in ArcGIS Pro with Automatic Map Rotation</title>
      <link>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1605844#M8615</link>
      <description>&lt;P&gt;I think I'm missing something.&amp;nbsp; You already have a functional Map Series, but some items aren't rotated correctly?&amp;nbsp; Exactly what is being rotated, when is it (currently, in the manual process you're trying to automate) being rotated, and why?&lt;/P&gt;&lt;P&gt;I think this might help to see a mock-up of a "wrong" output and a "correct" output.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 21:25:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1605844#M8615</guid>
      <dc:creator>MErikReedAugusta</dc:creator>
      <dc:date>2025-04-14T21:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Improving TIFF Export Workflow in ArcGIS Pro with Automatic Map Rotation</title>
      <link>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1607162#M8616</link>
      <description>&lt;P&gt;Thanks for the follow-up, and happy to clarify!&lt;/P&gt;&lt;P&gt;Yes, I have a working Map Series in ArcGIS Pro that exports selected pages to PDF, which are then converted to TIFF. The issue isn't with the content of the maps themselves—everything is exporting correctly in terms of data and layout—but the &lt;STRONG&gt;orientation of the final TIFFs&lt;/STRONG&gt; isn’t right for our internal system.&lt;/P&gt;&lt;P&gt;In the manual process, &lt;STRONG&gt;after exporting the TIFFs&lt;/STRONG&gt;, I have to open each one and &lt;STRONG&gt;rotate it 90° counterclockwise&lt;/STRONG&gt; before it's submitted. This is required because our system expects the maps to be stored in that orientation in order to be accepted and eventually published for public view. If the orientation is off, the upload gets flagged and we have to redo it.&lt;/P&gt;&lt;P&gt;So to answer your question:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;What’s being rotated?&lt;/STRONG&gt; Just the final exported &lt;STRONG&gt;TIFF image&lt;/STRONG&gt;, not the map content itself.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;When is it being rotated?&lt;/STRONG&gt; Currently, &lt;STRONG&gt;manually&lt;/STRONG&gt;, after export.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Why?&lt;/STRONG&gt; To meet formatting/orientation requirements for internal submission and public-facing updates.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I tried using map_frame.rotation = -90 before export, but that ended up rotating the whole frame and misaligning the layout, so it’s not the right approach in this case. What I’m looking to do now is &lt;STRONG&gt;automate that final rotation step using PIL (Python Imaging Library)&lt;/STRONG&gt;, right after the export is complete.&lt;/P&gt;&lt;P&gt;Automating this would save me a lot of time and prevent human error—especially since we’re exporting batches of maps regularly.&lt;/P&gt;&lt;P&gt;I can definitely mock up a "wrong" vs "correct" example if that’s helpful. Let me know!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 21:32:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/improving-tiff-export-workflow-in-arcgis-pro-with/m-p/1607162#M8616</guid>
      <dc:creator>ChrisRivero</dc:creator>
      <dc:date>2025-04-17T21:32:23Z</dc:date>
    </item>
  </channel>
</rss>

