<?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: What Do You Recommend: Populate X w/Spatial Layer Data in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/what-do-you-recommend-populate-x-w-spatial-layer/m-p/262122#M2783</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Brian,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think arcpy.mapping would be a very good solution for you.&amp;nbsp; It is a courser grained scripting environment intended for automating your type of workflow.&amp;nbsp; With arcpy.mapping you can export the results of your MXD to PDF with a single line of code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The real issue is where to begin.&amp;nbsp; I'd suggest the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) A �??Python Scripting for Map Automation in ArcGIS 10�?� video presented at the 2010 Developer�??s Summit is an excellent starting point.&amp;nbsp; This presentation not only introduces arcpy.mapping but also demonstrates many of its use cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/video/geoprocessing/details?entryID=B449043B-1422-2418-7F7A-E7EA74EF068E"&gt;http://resources.arcgis.com/gallery/video/geoprocessing/details?entryID=B449043B-1422-2418-7F7A-E7EA74EF068E&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Review the samples in the help system:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_scripts_for_map_document_management_and_output/00s300000032000000/"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_scripts_for_map_document_management_and_output/00s300000032000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) review the blogs and forums, here is just one example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/arcgisdesktop/archive/2010/12/14/Combining-Data-Driven-Pages-with-Python-and-arcpy.mapping.aspx"&gt;http://blogs.esri.com/Dev/blogs/arcgisdesktop/archive/2010/12/14/Combining-Data-Driven-Pages-with-Python-and-arcpy.mapping.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) the Resource Center has some arcpy.mapping/data driven pages sample applications.&amp;nbsp; The following is close to your needs but does not include the overlay / gp analysis part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=8C8E6EB6-1422-2418-A0B8-6AA61BF57894"&gt;http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=8C8E6EB6-1422-2418-A0B8-6AA61BF57894&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also have an arcpy.mapping tutorial that I'm going to make available to the help system.&amp;nbsp; I'd be happy to send you a copy - &lt;/SPAN&gt;&lt;A href="mailto:jbarrette@esri.com"&gt;jbarrette@esri.com&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Aug 2011 15:41:37 GMT</pubDate>
    <dc:creator>JeffBarrette</dc:creator>
    <dc:date>2011-08-23T15:41:37Z</dc:date>
    <item>
      <title>What Do You Recommend: Populate X w/Spatial Layer Data</title>
      <link>https://community.esri.com/t5/mapping-questions/what-do-you-recommend-populate-x-w-spatial-layer/m-p/262121#M2782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have several layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Council District, Parcels, Subdivision, Historical District, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;They all contain certain data concerning everything I need to know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;On an hourly basis a large part of my job is to collect this data for a given address, type up an e-mail and send it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to automate this process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I receive an e-mail for the data for a given address, I would like to select a Parcel of land, and populate a Layout window/PDF with the various bits and pieces of data from the layers that that Parcel resides within.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can VB code something... Build a Model... or setup Data Driven pages...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've done the second two already in ArcView, but other than Calculate Field/Value I haven't done VB(A) in ArcView at all yet. What is the recommendation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;If I have to build a model, how do I output from a Model into something like a PDF/Layout Window?&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;If I have to setup Data Drive pages, can I set it up to display the 'Currently Selected' parcel to check against for the Spatial Layers it resides in? Or would I need to do some Spatial Joins to bring all that data together?&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;If I have to VB code, then where? I would love to start doing VB(A) within ArcView but I haven't had the time to research it yet?!&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;SPAN&gt;If you've done anything like this... If you know of some great online tutorials that would point me in the right direction to learn this stuff... I would appreciate anything you have that might get me moving forward on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I receive and process roughly 20-50 requests per day on your average day. Each request takes up 5-10 minutes. When it's busy with these requests, I have no time to work on generating any new GIS data which means I get farther and farther behind. Help me Mr. Popeil... I'm in trouble!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 12:41:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/what-do-you-recommend-populate-x-w-spatial-layer/m-p/262121#M2782</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2011-08-22T12:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: What Do You Recommend: Populate X w/Spatial Layer Data</title>
      <link>https://community.esri.com/t5/mapping-questions/what-do-you-recommend-populate-x-w-spatial-layer/m-p/262122#M2783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Brian,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think arcpy.mapping would be a very good solution for you.&amp;nbsp; It is a courser grained scripting environment intended for automating your type of workflow.&amp;nbsp; With arcpy.mapping you can export the results of your MXD to PDF with a single line of code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The real issue is where to begin.&amp;nbsp; I'd suggest the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) A �??Python Scripting for Map Automation in ArcGIS 10�?� video presented at the 2010 Developer�??s Summit is an excellent starting point.&amp;nbsp; This presentation not only introduces arcpy.mapping but also demonstrates many of its use cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/video/geoprocessing/details?entryID=B449043B-1422-2418-7F7A-E7EA74EF068E"&gt;http://resources.arcgis.com/gallery/video/geoprocessing/details?entryID=B449043B-1422-2418-7F7A-E7EA74EF068E&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Review the samples in the help system:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_scripts_for_map_document_management_and_output/00s300000032000000/"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_scripts_for_map_document_management_and_output/00s300000032000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) review the blogs and forums, here is just one example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/arcgisdesktop/archive/2010/12/14/Combining-Data-Driven-Pages-with-Python-and-arcpy.mapping.aspx"&gt;http://blogs.esri.com/Dev/blogs/arcgisdesktop/archive/2010/12/14/Combining-Data-Driven-Pages-with-Python-and-arcpy.mapping.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) the Resource Center has some arcpy.mapping/data driven pages sample applications.&amp;nbsp; The following is close to your needs but does not include the overlay / gp analysis part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=8C8E6EB6-1422-2418-A0B8-6AA61BF57894"&gt;http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=8C8E6EB6-1422-2418-A0B8-6AA61BF57894&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also have an arcpy.mapping tutorial that I'm going to make available to the help system.&amp;nbsp; I'd be happy to send you a copy - &lt;/SPAN&gt;&lt;A href="mailto:jbarrette@esri.com"&gt;jbarrette@esri.com&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/what-do-you-recommend-populate-x-w-spatial-layer/m-p/262122#M2783</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2011-08-23T15:41:37Z</dc:date>
    </item>
  </channel>
</rss>

