<?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: Geocoding in Pro Jupyter notebook with Street Map Premium in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709541#M75300</link>
    <description>&lt;P&gt;The issue might be the extra "&amp;lt;None&amp;gt;" in your field mapping. for example, Address2 &amp;lt;None&amp;gt; VISIBLE NONE,&amp;nbsp;ZIP ZIP &amp;lt;None&amp;gt; VISIBLE NONE, I think it should be&amp;nbsp;ZIP ZIP VISIBLE NONE, etc.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jun 2026 13:53:51 GMT</pubDate>
    <dc:creator>TonyAlmeida</dc:creator>
    <dc:date>2026-06-24T13:53:51Z</dc:date>
    <item>
      <title>Geocoding in Pro Jupyter notebook with Street Map Premium</title>
      <link>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709406#M75297</link>
      <description>&lt;P&gt;I'm trying to geocode a csv file in an ArcGIS Pro Jupyter notebook, using our Street Map Premium locator. No matter what I do, it returns 'RunTimeError: Object: Error in executing tool'. I'm following the &lt;A href="https://pro.arcgis.com/en/pro-app/3.5/tool-reference/geocoding/geocode-addresses.htm" target="_self"&gt;ESRI documentation here&lt;/A&gt;. I have an SMP license.&lt;/P&gt;&lt;P&gt;I don't really understand the sample field map at "&lt;FONT face="trebuchet ms,geneva"&gt;\'Address or Place\' Address&lt;/FONT&gt;" or "ZIP ZIP &amp;lt;None&amp;gt;", since that doesn't follow the pattern of the rest of the fields. I've also tried adding the field names from the csv - address1, address2, city, state, zip - in the &amp;lt;None&amp;gt; spots, but it doesn't appear to make a difference.&lt;/P&gt;&lt;P&gt;Any ideas on what's going wrong? Thanks.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Geocode csv
cwd = Path(os.getcwd())
csv_path = cwd / r"Data\Recruitment_2026-06-23.csv"
smp_locator = r'&amp;lt;path to locator&amp;gt;\My_2026_Q1.loc'
output_fc = cwd / r'Recruitment'

field_map = ("\'Address or Place\' Address VISIBLE NONE;Address2 &amp;lt;None&amp;gt; VISIBLE NONE;Address3 &amp;lt;None&amp;gt; VISIBLE NONE;" +
             "Neighborhood &amp;lt;None&amp;gt; VISIBLE NONE;City &amp;lt;None&amp;gt; VISIBLE NONE;Subregion &amp;lt;None&amp;gt; VISIBLE NONE;" +
             "Region &amp;lt;None&amp;gt; VISIBLE NONE;ZIP ZIP &amp;lt;None&amp;gt; VISIBLE NONE;ZIP4 &amp;lt;None&amp;gt; VISIBLE NONE;" +
             "Country &amp;lt;None&amp;gt; VISIBLE NONE")
try:
    # Error occurs here
    arcpy.geocoding.GeocodeAddresses(csv_path, smp_locator, field_map, output_fc)
except RuntimeError as e: 
    import traceback
    print(f"Exception message: {str(e)}")
    error_stack = traceback.format_exc()
    print(error_stack)
else: 
    print(f"Geocoding complete: {output_fc}")&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 23 Jun 2026 21:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709406#M75297</guid>
      <dc:creator>ZenMasterZeke</dc:creator>
      <dc:date>2026-06-23T21:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding in Pro Jupyter notebook with Street Map Premium</title>
      <link>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709541#M75300</link>
      <description>&lt;P&gt;The issue might be the extra "&amp;lt;None&amp;gt;" in your field mapping. for example, Address2 &amp;lt;None&amp;gt; VISIBLE NONE,&amp;nbsp;ZIP ZIP &amp;lt;None&amp;gt; VISIBLE NONE, I think it should be&amp;nbsp;ZIP ZIP VISIBLE NONE, etc.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 13:53:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709541#M75300</guid>
      <dc:creator>TonyAlmeida</dc:creator>
      <dc:date>2026-06-24T13:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding in Pro Jupyter notebook with Street Map Premium</title>
      <link>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709601#M75302</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/3265"&gt;@TonyAlmeida&lt;/a&gt;, working now. I'd wondered about that and had tried deleting it before, but something else must've been wrong then. ESRI has it in the documentation this way for at least two Pro releases I saw, 3.5 &amp;amp; 3.5.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":snake:"&gt;🐍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 16:11:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/geocoding-in-pro-jupyter-notebook-with-street-map/m-p/1709601#M75302</guid>
      <dc:creator>ZenMasterZeke</dc:creator>
      <dc:date>2026-06-24T16:11:46Z</dc:date>
    </item>
  </channel>
</rss>

