<?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 How to automatically create PDF reports at scale using the Esri Suite? in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-automatically-create-pdf-reports-at-scale/m-p/168465#M6693</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a system that will allow me to create PDF reports at scale if a user enters a specific address. I'm looking to achieve a result very similar to this example:&lt;BR /&gt;&lt;A class="link-titled" href="https://www.water.vic.gov.au/groundwater/groundwater-resource-reports" title="https://www.water.vic.gov.au/groundwater/groundwater-resource-reports"&gt;https://www.water.vic.gov.au/groundwater/groundwater-resource-reports&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where a user can just type in an address, and a PDF report will be generated for that location.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm looking for is for someone to help point me in the right direction regarding how to achieve this. I have experience working with ArcMap, ArcGIS Pro and some experience with ArcGIS Web App Builder, Python, and Javascript, but not much experience with server technologies like ArcGIS Server or AWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw from the link in a sample report via the link above that Geocortex was used. Ideally, I'd like to achieve a similar result using only tools from ESRI (I have access to all of their tools including ArcGIS Server) and perhaps AWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help and apologies if this question is too vague. Please feel free to ask any clarifying questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Mar 2020 00:14:41 GMT</pubDate>
    <dc:creator>JeremyHerbert</dc:creator>
    <dc:date>2020-03-16T00:14:41Z</dc:date>
    <item>
      <title>How to automatically create PDF reports at scale using the Esri Suite?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-automatically-create-pdf-reports-at-scale/m-p/168465#M6693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a system that will allow me to create PDF reports at scale if a user enters a specific address. I'm looking to achieve a result very similar to this example:&lt;BR /&gt;&lt;A class="link-titled" href="https://www.water.vic.gov.au/groundwater/groundwater-resource-reports" title="https://www.water.vic.gov.au/groundwater/groundwater-resource-reports"&gt;https://www.water.vic.gov.au/groundwater/groundwater-resource-reports&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where a user can just type in an address, and a PDF report will be generated for that location.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm looking for is for someone to help point me in the right direction regarding how to achieve this. I have experience working with ArcMap, ArcGIS Pro and some experience with ArcGIS Web App Builder, Python, and Javascript, but not much experience with server technologies like ArcGIS Server or AWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw from the link in a sample report via the link above that Geocortex was used. Ideally, I'd like to achieve a similar result using only tools from ESRI (I have access to all of their tools including ArcGIS Server) and perhaps AWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help and apologies if this question is too vague. Please feel free to ask any clarifying questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2020 00:14:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-automatically-create-pdf-reports-at-scale/m-p/168465#M6693</guid>
      <dc:creator>JeremyHerbert</dc:creator>
      <dc:date>2020-03-16T00:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically create PDF reports at scale using the Esri Suite?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-automatically-create-pdf-reports-at-scale/m-p/168466#M6694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the desktop environment (written as code to run as a script or script tool) one way this could be implemented is to set up you mxd at the required scale, including all the data and labelling you would expect/like to see if you manually zoomed or panned around the map.&lt;/P&gt;&lt;P&gt;In the code I would use a query to select your address feature and grab its SHAPE@ geometry token.&amp;nbsp; Using this I would then use the pantoextent method of your current dataframe with arcpy.Mapping.&amp;nbsp; Hopefully this would&amp;nbsp; then centre your dataframe on the address whilst keeping the required scale.&amp;nbsp; Then an ExporttoPDF to create your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a server environment, this could be published as a geoprocessing task, allowing users to open up a Wep Mapping Application you have designed, then type the address into a geoprocessing widget which spits out the pdf.&lt;/P&gt;&lt;P&gt;Another implementation might be to let the user zoom to the address using a geocoding service (address locator etc), then set up their own bespoke labelling and use a custom print service to export what's on the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2020 10:10:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-automatically-create-pdf-reports-at-scale/m-p/168466#M6694</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-03-16T10:10:38Z</dc:date>
    </item>
  </channel>
</rss>

