<?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 do I get a street name corrected? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1376473#M44927</link>
    <description>&lt;P&gt;I have a simple Python application to illustrate an issue:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;#!/usr/bin/python3.9&lt;/P&gt;&lt;P&gt;import geocoder&lt;BR /&gt;g = geocoder.arcgis('1286 County Road A, Deer Park, WI 54007')&lt;BR /&gt;print(g.json)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The output is:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;{'address': '1286 County Road a, Deer Park, Wisconsin, 54007', 'bbox': {'northeast': [45.222714980538, -92.423393031944], 'southwest': [45.220714980538, -92.425393031944]}, 'confidence': 9, 'lat': 45.22171498053788, 'lng': -92.42439303194378, 'ok': True, 'quality': 'PointAddress', 'raw': {'name': '1286 County Road a, Deer Park, Wisconsin, 54007', 'extent': {'xmin': -92.425393031944, 'ymin': 45.220714980538, 'xmax': -92.423393031944, 'ymax': 45.222714980538}, 'feature': {'geometry': {'x': -92.42439303194378, 'y': 45.22171498053788}, 'attributes': {'Score': 100, 'Addr_Type': 'PointAddress'}}}, 'score': 100, 'status': 'OK'}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is merely cosmetic, but the 'a' in 'County Road A' is lowercase.&amp;nbsp; It should be uppercase.&amp;nbsp;&amp;nbsp;I have a few others like this.&lt;/P&gt;&lt;P&gt;How can I contact the right person to get this corrected?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2024 15:21:18 GMT</pubDate>
    <dc:creator>JoelBreazeale</dc:creator>
    <dc:date>2024-01-31T15:21:18Z</dc:date>
    <item>
      <title>How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1376473#M44927</link>
      <description>&lt;P&gt;I have a simple Python application to illustrate an issue:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;#!/usr/bin/python3.9&lt;/P&gt;&lt;P&gt;import geocoder&lt;BR /&gt;g = geocoder.arcgis('1286 County Road A, Deer Park, WI 54007')&lt;BR /&gt;print(g.json)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The output is:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;{'address': '1286 County Road a, Deer Park, Wisconsin, 54007', 'bbox': {'northeast': [45.222714980538, -92.423393031944], 'southwest': [45.220714980538, -92.425393031944]}, 'confidence': 9, 'lat': 45.22171498053788, 'lng': -92.42439303194378, 'ok': True, 'quality': 'PointAddress', 'raw': {'name': '1286 County Road a, Deer Park, Wisconsin, 54007', 'extent': {'xmin': -92.425393031944, 'ymin': 45.220714980538, 'xmax': -92.423393031944, 'ymax': 45.222714980538}, 'feature': {'geometry': {'x': -92.42439303194378, 'y': 45.22171498053788}, 'attributes': {'Score': 100, 'Addr_Type': 'PointAddress'}}}, 'score': 100, 'status': 'OK'}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is merely cosmetic, but the 'a' in 'County Road A' is lowercase.&amp;nbsp; It should be uppercase.&amp;nbsp;&amp;nbsp;I have a few others like this.&lt;/P&gt;&lt;P&gt;How can I contact the right person to get this corrected?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 15:21:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1376473#M44927</guid>
      <dc:creator>JoelBreazeale</dc:creator>
      <dc:date>2024-01-31T15:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377026#M44928</link>
      <description>&lt;P&gt;Are you asking how to correct it via Python, or how to correct the underlying data?&amp;nbsp; Because the latter is almost certainly beyond the scope of this forum, but the short version is: It depends on who's responsible for the underlying data.&lt;/P&gt;&lt;P&gt;If you're asking how to fix it via Python, there are a number of ways with regular expressions and the like, but with most of the road names I've seen throughout the country, there's a pretty good likelihood you'll get false positive results of things changing that you didn't intend, unless you're very careful with the script.&lt;/P&gt;&lt;P&gt;When and how you make a correct via Python also depends on your end goal/use of the data.&amp;nbsp; What do you intend to do with the geocode data once you have it?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 14:31:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377026#M44928</guid>
      <dc:creator>MErikReedAugusta</dc:creator>
      <dc:date>2024-02-01T14:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377240#M44929</link>
      <description>&lt;P&gt;I am using ArcGIS as a geocoder.&amp;nbsp; I was asking about correcting the underlying data.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 19:56:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377240#M44929</guid>
      <dc:creator>JoelBreazeale</dc:creator>
      <dc:date>2024-02-01T19:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377267#M44930</link>
      <description>&lt;P&gt;You could use the &lt;A href="https://www.w3schools.com/python/ref_string_title.asp" target="_self"&gt;string.title()&lt;/A&gt; function to assign capitalization to each of the json keys you want.&lt;/P&gt;&lt;P&gt;For example, using&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;data = g.json

data['address'] = data['address'].title()
data['raw']['name'] = data['raw']['name'].title()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yields&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;{'address': '1286 County Road A, Deer Park, Wisconsin, 54007', 'bbox': {'northeast': [45.222714980538, -92.423393031944], 'southwest': [45.220714980538, -92.425393031944]}, 'confidence': 9, 'lat': 45.22171498053788, 'lng': -92.42439303194378, 'ok': True, 'quality': 'PointAddress', 'raw': {'name': '1286 County Road A, Deer Park, Wisconsin, 54007', 'extent': {'xmin': -92.425393031944, 'ymin': 45.220714980538, 'xmax': -92.423393031944, 'ymax': 45.222714980538}, 'feature': {'geometry': {'x': -92.42439303194378, 'y': 45.22171498053788}, 'attributes': {'Score': 100, 'Addr_Type': 'PointAddress'}}}, 'score': 100, 'status': 'OK'}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 01 Feb 2024 20:45:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1377267#M44930</guid>
      <dc:creator>Raul</dc:creator>
      <dc:date>2024-02-01T20:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1381431#M44960</link>
      <description>&lt;P&gt;How I can the data corrected at the source?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 03:27:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1381431#M44960</guid>
      <dc:creator>JoelBreazeale</dc:creator>
      <dc:date>2024-02-13T03:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a street name corrected?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1662519#M45791</link>
      <description>&lt;P&gt;Hi Joel,&amp;nbsp; Did you get any response for your inquiry?&amp;nbsp; &amp;nbsp;If you did, could you post what you found out because I'm curious as well.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 15:27:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-do-i-get-a-street-name-corrected/m-p/1662519#M45791</guid>
      <dc:creator>CharlesShaw</dc:creator>
      <dc:date>2025-10-31T15:27:23Z</dc:date>
    </item>
  </channel>
</rss>

