<?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: Export/print multiple layouts in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472407#M20807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Xander, this does what I need.&amp;nbsp; Packaged it to make the PDFs and merge them into one as required.&amp;nbsp; Much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2015 01:48:40 GMT</pubDate>
    <dc:creator>MikeLouwrens</dc:creator>
    <dc:date>2015-02-24T01:48:40Z</dc:date>
    <item>
      <title>Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472403#M20803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working on a project which I thought would be perfect for using (learning) ArcGIS Pro.&amp;nbsp; I have multiple map layouts created, but it appears I can only export or print them one at a time.&amp;nbsp; Is there a way to output them all in one go?&amp;nbsp; Particularly exported all into a single PDF?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 00:17:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472403#M20803</guid>
      <dc:creator>MikeLouwrens</dc:creator>
      <dc:date>2015-02-20T00:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472404#M20804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you would like to use some Python code you probably could: &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/getting-started-with-arcpy-mp-tutorial.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/getting-started-with-arcpy-mp-tutorial.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Getting started with the arcpy.mp tutorial—ArcPy | ArcGIS for Professionals&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example to export 1 layout from &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/introduction-to-arcpy-mp.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/introduction-to-arcpy-mp.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Introduction to arcpy.mp—ArcPy | ArcGIS for Professionals&lt;/A&gt; :&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
aprx = arcpy.mp.ArcGISProject(r"C:\Projects\YosemiteNP\Yosemite.aprx")
lyt = aprx.listLayouts("Main Attractions*")[0]
lyt.exportToPDF(r"C:\Project\YosemiteNP\Output\Yosemite.pdf", resolution = 300)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will probably have to loop through the layouts and export it to a pdf and then merge the pdf files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a sample can be found here: &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/pdfdocumentcreate.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/pdfdocumentcreate.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;PDFDocumentCreate—ArcPy | ArcGIS for Professionals&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:53:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472404#M20804</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T20:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472405#M20805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Xander Bakker wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you would like to use some Python code you probably could: &lt;A class="jive-link-external-small" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/getting-started-with-arcpy-mp-tutorial.htm" rel="nofollow" target="_blank"&gt;Getting started with the arcpy.mp tutorial—ArcPy | ArcGIS for Professionals&lt;/A&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt; &lt;SPAN style="font-family: inherit; line-height: 1.5;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You will probably have to loop through the layouts and export it to a pdf and then merge the pdf files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a sample can be found here: &lt;A class="jive-link-external-small" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/pdfdocumentcreate.htm" rel="nofollow" target="_blank"&gt;PDFDocumentCreate—ArcPy | ArcGIS for Professionals&lt;/A&gt; &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;thanks for your reply.&amp;nbsp; I haven't attempted Python in ArcGIS Pro yet, but I will give that a try and see how I get on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 01:01:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472405#M20805</guid>
      <dc:creator>MikeLouwrens</dc:creator>
      <dc:date>2015-02-23T01:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472406#M20806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me know if you run into some problems. I can run some tests here I necessary. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 12:02:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472406#M20806</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-02-23T12:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472407#M20807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Xander, this does what I need.&amp;nbsp; Packaged it to make the PDFs and merge them into one as required.&amp;nbsp; Much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 01:48:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472407#M20807</guid>
      <dc:creator>MikeLouwrens</dc:creator>
      <dc:date>2015-02-24T01:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472408#M20808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to export multiple layouts in one swoop.&amp;nbsp; I don't need them merged.&amp;nbsp; I'm not a coder.&amp;nbsp; Could I get some baby step instructions on what to do?&amp;nbsp; I'm pretty good at modifying code once I have it.&amp;nbsp;&amp;nbsp; I'm brand new to ArcGIS Pro 2.0.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommended courses?&amp;nbsp; The one above no longer works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 21:27:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472408#M20808</guid>
      <dc:creator>DanHofer</dc:creator>
      <dc:date>2017-11-06T21:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472409#M20809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link that did not work should point to a new location:&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/tutorial-getting-started-with-arcpy-mp.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/tutorial-getting-started-with-arcpy-mp.htm"&gt;Tutorial: Getting started with arcpy.mp—ArcPy | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe something on Map Series might be interesting:&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/help/layouts/create-a-map-series.htm" title="http://pro.arcgis.com/en/pro-app/help/layouts/create-a-map-series.htm"&gt;Create a map series—Layouts | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 22:26:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472409#M20809</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-06T22:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472410#M20810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; I did the tutorial: Getting Stated with Arcpy.mp like you suggested.&amp;nbsp; I made it through.&amp;nbsp; whew.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also mistyped, each layout&amp;nbsp;HAS a map series.&amp;nbsp; 25 layouts with unique names and each series is about 50 pages (Our 50 States).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any more suggestions on exporting each layouts map series (not combined).&amp;nbsp; I've googled it and I'm just not seeing anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2017 17:17:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472410#M20810</guid>
      <dc:creator>DanHofer</dc:creator>
      <dc:date>2017-11-07T17:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Export/print multiple layouts</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472411#M20811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just had a look to see if Map Series can be automated with arcpy in ArcGIS Pro, but it appears that it is not possible yet. See this comment:&amp;nbsp;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/thread/197174-export-map-series-pages#comment-704124" title="https://community.esri.com/thread/197174-export-map-series-pages#comment-704124" target="_blank"&gt;https://community.esri.com/thread/197174-export-map-series-pages#comment-704124&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not very recommendable, but if your map is not to complex one could loop through the layouts like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
aprx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"C:\Projects\YosemiteNP\Yosemite.aprx"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyt &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayouts&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# loop through states&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# change the map extent based on the states&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exportToPDF&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"C:\Project\YosemiteNP\Output\SomeUnique.pdf"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; resolution &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;300&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;During the loop loop through the extents of&amp;nbsp;the states and change for instance a title bases on the name of the state.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I published a document a few years ago on how to do this (&lt;EM&gt;but it is in Spanish)&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/docs/DOC-7081" target="_blank"&gt;Python en ArcGIS Pro - CCU2015.pdf&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It starts on page 58.&amp;nbsp;Page 61 shows code on how to loop through extents of features and zoom to&amp;nbsp;them and&amp;nbsp;page 62 shows how to create a PDF and append pages (you could for instance create a PDF per layout or a PDF per map).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:53:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/export-print-multiple-layouts/m-p/472411#M20811</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T20:53:35Z</dc:date>
    </item>
  </channel>
</rss>

