<?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: Looking to create a geo-processing service tool to check a Single Address in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1364599#M76769</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/689600"&gt;@CQuick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/python-questions/test-for-xy-inside-polygon/m-p/579153" target="_blank"&gt;Solved: Test for XY inside Polygon - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Dec 2023 20:41:49 GMT</pubDate>
    <dc:creator>JoseSanchez</dc:creator>
    <dc:date>2023-12-27T20:41:49Z</dc:date>
    <item>
      <title>Looking to create a geo-processing service tool to check a Single Address</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1363361#M76610</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;Looking to create a geo-processing&amp;nbsp; service to check (geocode) a Single Address entered as parameter, then the next step is an intersect to check if the address (point) falls inside a specific service area. The code will be in Python&lt;/P&gt;&lt;P&gt;Any sample code available for geocoding an address passed as parameter?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 23:11:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1363361#M76610</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2023-12-20T23:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to create a geo-processing service tool to check a Single Address</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1364264#M76712</link>
      <description>&lt;P&gt;Hi Jose, here is an example of how you could do the geocoding if you want to use ESRI's Geocoder which uses credits. You start by creating a string parameter in a script tool paired with the following code. Once you have the geocoding result point (geocodedAddress), you can program your service area check.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CQuick_0-1703547143735.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/89948i103504E1BAEA047D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CQuick_0-1703547143735.png" alt="CQuick_0-1703547143735.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
addressToGeocode = arcpy.GetParameterAsText(0)
arcpy.management.CreateTable(arcpy.env.scratchWorkspace, "AddressTable")
arcpy.management.AddField("AddressTable", "Address", "TEXT")
with arcpy.da.InsertCursor('AddressTable', ["Address"]) as icursor:
    icursor.insertRow([addressToGeocode])
field_map = "Address Address"
locator = "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/ArcGIS World Geocoding Service"
arcpy.geocoding.GeocodeAddresses("AddressTable", locator, field_map, "geocodedAddress")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2023 23:33:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1364264#M76712</guid>
      <dc:creator>CQuick</dc:creator>
      <dc:date>2023-12-25T23:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to create a geo-processing service tool to check a Single Address</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1364599#M76769</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/689600"&gt;@CQuick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/python-questions/test-for-xy-inside-polygon/m-p/579153" target="_blank"&gt;Solved: Test for XY inside Polygon - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 20:41:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/looking-to-create-a-geo-processing-service-tool-to/m-p/1364599#M76769</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2023-12-27T20:41:49Z</dc:date>
    </item>
  </channel>
</rss>

