<?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 Table with Anonymized Addresses &amp;amp; Lat/Lon in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275832#M67629</link>
    <description>&lt;P&gt;Yes, I did have specific categories selected, mainly removing StreetName as that is problematic.&amp;nbsp; Including StreetMidBlock as a category would definitely be my recommendation.&amp;nbsp; You also lose the ability to search by 'StreetMidBlock' when you disable categories in the coordinates too.&lt;/P&gt;&lt;P&gt;I hope to see this added in the very near future.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 05 Apr 2023 15:23:38 GMT</pubDate>
    <dc:creator>WalidAlmasri1</dc:creator>
    <dc:date>2023-04-05T15:23:38Z</dc:date>
    <item>
      <title>Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235537#M62726</link>
      <description>&lt;P&gt;Hello, I am trying to set up a process to map locations to a street centerline by either an address or or by lat/lon if no address exists or if the address cannot be found.&amp;nbsp; I have created a geocoder that only uses the Street Address Role and have a process set up to change addresses from 1234 N Main to 1200 N Main in an effort to anonymize them.&amp;nbsp; &lt;EM&gt;All locations have a lat/lon even if no address exists&lt;/EM&gt;.&amp;nbsp; The geocoder is configured properly and geocodes the events to the street centerline with the address.&amp;nbsp; The issue I am having is that the geocoder will not locate events by lat/lon where no addresses match can be found.&amp;nbsp; Even if I only specify the geocoder to use the Coordinate System Category in the Geocode Table dialogue box, it will return zero matches.&lt;/P&gt;&lt;P&gt;Just wondering if anyone has any input on how I can geocode based on lat/lon.&amp;nbsp; Everything I've tried seems to not work.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:31:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235537#M62726</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-11-28T18:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235541#M62729</link>
      <description>&lt;P&gt;You should be able to use X/Y in the &lt;STRONG&gt;Rematch Addresses&lt;/STRONG&gt; tool. Have you tried that?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:35:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235541#M62729</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-11-28T18:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235546#M62732</link>
      <description>&lt;P&gt;Yes, but unfortunately, this will become an automated process that will run daily, so there will be no interaction for manual matching.&amp;nbsp; We already map the data internally by lat/lon and locations that do not have a lat/lon from creation get moved to a fixed location depending on the district they are assigned.&lt;/P&gt;&lt;P&gt;I'm looking publish the data publicly, which is why I am altering the addresses and hoping to use lat/lon where no address exists.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:40:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235546#M62732</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-11-28T18:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235560#M62739</link>
      <description>&lt;P&gt;Perhaps there is a way with the ArcGIS Python API? &lt;STRONG&gt;arcgis.features.GeoAccessor.from_df()&lt;/STRONG&gt; will geocode the input table, and you can specify the geocoder used. There is also &lt;STRONG&gt;from_xy()&lt;/STRONG&gt;, which would handle the lat/lon input.&lt;/P&gt;&lt;P&gt;So perhaps something like this? Haven't tested this out, but it might be a starting point.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcgis
import pandas as pd

# load your address table as a DataFrame; this will depend on its format, location, etc

# get the blank addresses
no_addrs = df[df['address_field'].isna() == True]

# get addresses
addrs = df[df['address_field'].isna() == False]

sdf_addrs = arcgis.features.GeoAccessor.from_df(addrs, 'address column', 'your geocoder')

sdf_noaddrs = arcgis.features.GeoAccessor.from_xy(no_addrs, 'lon', 'lat')

# merge into one dataframe
geocoded = pd.concat([sdf_addrs, sdf_noaddrs], ignore_index=True)

# then export / upload as needed&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 18:55:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235560#M62739</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-11-28T18:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235618#M62748</link>
      <description>&lt;P&gt;Thanks, I will look into this option!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 21:17:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1235618#M62748</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-11-28T21:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1236452#M62863</link>
      <description>&lt;P&gt;Maybe I should simplify the question.&amp;nbsp; Can a geocoder geocode lat/lon or XY's?&amp;nbsp; Because the geocoders I create seem to not be able to perform that function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 17:39:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1236452#M62863</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-11-30T17:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1242731#M63632</link>
      <description>&lt;P&gt;Building a locator with the Create Locator or Create Feature Locator tools&amp;nbsp;&lt;SPAN&gt;suppors global search for coordinates (latitude/longitude, MGRS, DD, or USNG). Support for coordinate searching is disabled or enabled under&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/3.0/help/data/geocoding/tips-for-improving-geocoding-quality.htm#ESRI_SECTION1_1CC5777CE25A4D048FCC518AEC549DC6" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;Categories to support&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;on the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Geocoding options&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;page of the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Locator Properties&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;dialog box for the locator. What is the format of the coordinates you are using? Can you enter the same coordinates into the Locate pane and get results returned by the StreetAddress role locator you created? What is the coordinate&amp;nbsp;system of the locator (the reference data)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Also, are you not able to use Make XY Event Layer to generate points from the coordinates?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Shana&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 17:01:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1242731#M63632</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2022-12-20T17:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243007#M63671</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1499"&gt;@ShanaBritt&lt;/a&gt;&amp;nbsp; Making an event layer works out fine, but that's not what I am trying to do.&amp;nbsp; We have many records that map an exact location and I am trying to geocode masked addresses (to hundred block - EX: 2352 = 2300) back to the street centerline.&amp;nbsp; Most of the locations do geocode back to the centerline, but many that do not have an address, but have Lat/Lon, to do not get processed by the geocoder even with coordinate category selected.&amp;nbsp; I have investigated other methods like reverse geocoding the layer, which yields better results (sort of), but also causes issues when the reverse geocode goes to the wrong street since it was closer than where the address specifies.&lt;/P&gt;&lt;P&gt;I'm really trying to find how precise data is anonymized and I'm not having very good luck it seems.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 17:43:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243007#M63671</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-12-21T17:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243066#M63680</link>
      <description>&lt;P&gt;It's possible to search for Street blocks, which is described here for StreetAddress role,&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/3.0/help/data/geocoding/introduction-to-locator-roles.htm#ESRI_SECTION2_6D3D70C9F7AA4871ABDBCD7F98D363D1" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.0/help/data/geocoding/introduction-to-locator-roles.htm#ESRI_SECTION2_6D3D70C9F7AA4871ABDBCD7F98D363D1&lt;/A&gt;. You will need ArcGIS Pro 2.7 or later to build a locator that supports searching for street blocks,&amp;nbsp;for example "100 block of New York St, Redlands, CA". How do you have the block address formatted in your input address table? You will need to modify your address table to&amp;nbsp;&lt;SPAN&gt;change addresses from "1234 N Main" to &lt;EM&gt;'1200 block of N Main'&amp;nbsp;&lt;/EM&gt;in order to get the matches you are looking for. You can also test this out using the following tutorial and the test addresses at the bottom of the tutorial.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geocoding/tutorial-create-a-locator.htm#" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geocoding/tutorial-create-a-locator.htm#&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 20:00:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243066#M63680</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2022-12-21T20:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243160#M63701</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1499"&gt;@ShanaBritt&lt;/a&gt;&amp;nbsp;Correct, I do have the addresses as "700 Block E Olive Ave" for example.&amp;nbsp; Those will geocode to the centerline, but if there is no address (null) the locator does not resort to plotting the lat/lon of the data:&lt;BR /&gt;&lt;BR /&gt;See below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WalidAlmasri1_0-1671667996562.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/59075i3D1521A74004F5BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WalidAlmasri1_0-1671667996562.png" alt="WalidAlmasri1_0-1671667996562.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can create an event layer just fine with this test layer.&lt;BR /&gt;&lt;BR /&gt;Also, my geocoding settings:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WalidAlmasri1_1-1671669290750.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/59076i585DCBBE5B3F1A9F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WalidAlmasri1_1-1671669290750.png" alt="WalidAlmasri1_1-1671669290750.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 00:35:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1243160#M63701</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2022-12-22T00:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1244794#M63898</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/333805"&gt;@WalidAlmasri1&lt;/a&gt;&amp;nbsp;If the Address field is the input address field and it contains 'Null' values for the record, there is no input that is geocoded, so the record with a 'Null' value will be unmatched. I would suggest moving the coordinate pair to the address field, by selecting all of the records that have 'Null' values, the using Calculate Field concatenate the Lat and Lon fields into the Address field. [Lon] + ","+ [Lat] Then geocode the table with the locator that has the Coordinates category enabled.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 05:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1244794#M63898</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2023-01-03T05:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1244949#M63928</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1499"&gt;@ShanaBritt&lt;/a&gt;&amp;nbsp;THANK YOU, this is exactly the information I was looking for.&amp;nbsp; Why I was unable to find this answer is beyond me.&amp;nbsp; I guess it makes sense now because that's how you have to type it in the Locate box in Pro...&lt;BR /&gt;&lt;BR /&gt;It is now matching my coordinates &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WalidAlmasri1_0-1672764589765.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/59633i0AE8F4F40563985A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WalidAlmasri1_0-1672764589765.png" alt="WalidAlmasri1_0-1672764589765.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 16:51:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1244949#M63928</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2023-01-03T16:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271275#M67125</link>
      <description>&lt;P&gt;Hi! I'm trying to do something similar. Do you geocode to the centerline using 1234 N Main or to 1200 N Main? Would you mind sharing your process for anonymizing the addresses to the block level? Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 09:29:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271275#M67125</guid>
      <dc:creator>ShelbyZelonisRoberson</dc:creator>
      <dc:date>2023-03-24T09:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271356#M67142</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/129394"&gt;@ShelbyZelonisRoberson&lt;/a&gt;, exactly correct.&amp;nbsp; Build a geocoder using only centerlines with Street Address Role.&amp;nbsp; You need to have address ranges in the centerline though in order for this to work.&lt;/P&gt;&lt;P&gt;On the backend, the data is converted into a new table.&amp;nbsp; So addresses like 1264 N Main St, are converted to 1300 Block of N Main St and if the address is 1231 N Main St, we convert it to 1200 Block of N Main St. You don't need to have 'block of' text in your address, but the geocoder will understand it if it's there.&amp;nbsp; Then run those new addresses through the geocoder to get the new location.&amp;nbsp; I'm not certain how having block information in the centerline would affect geocoding accuracy since we don't have that, but let's assume the street had an address range of 1000-3000, addresses that get converted to 1000 Block are placed on the beginning point of the line, addresses that are 2000 block would be placed on the center of the line, and addresses on the 3000 block will be placed on the other end of the line.&lt;/P&gt;&lt;P&gt;The only downside I'm seeing here is if you have multiple addresses on one street that get converted with the same block information, they will stack.&amp;nbsp; One way around that would be to geocode the actual address but only display the 'block of' address, but then that could potentially place the address close to where you are trying to mask.&amp;nbsp; Or limit the data by date range.&lt;/P&gt;&lt;P&gt;I hope this helps, let me know if you have any questions.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 15:23:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271356#M67142</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2023-03-24T15:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271509#M67165</link>
      <description>&lt;P&gt;For stacked addresses, you could cartographically disperse them using&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/disperse-markers.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/disperse-markers.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Shana&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 19:22:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1271509#M67165</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2023-03-24T19:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275328#M67597</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1499"&gt;@ShanaBritt&lt;/a&gt;&amp;nbsp;is there a particular way the data needs to be in order to return the "Addr_type" output field to equal "StreetMidBlock"?&lt;/P&gt;&lt;P&gt;I've actually removed our "Block of" information from the address and now only do the full hundred block address and am having good results, but in areas where ranges are limited, mapping to StreetMidBlock would be helpful as some get missed, but I'm not sure how to return that result from the geocoder.&amp;nbsp; Everything I return is LatLon, StreetAddress or StreetAddressExt no matter how I type using the examples ESRI provides.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;100 block of New York St&lt;/STRONG&gt;, Redlands, CA&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;1600 blk E Cliff Dr&lt;/STRONG&gt;, El Paso&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;200-500 block Taylor St&lt;/STRONG&gt;, San Francisco&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;1700-1900 blk of Locust St&lt;/STRONG&gt;, Philadelphia, Pennsylvania&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 16:03:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275328#M67597</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2023-04-04T16:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275537#M67610</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/333805"&gt;@WalidAlmasri1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Just to clarify, are you saying that whenever you try to search for an address in one of the following street block formats that the Addr_type value returned is &lt;STRONG&gt;not&lt;/STRONG&gt; "StreetMidBlock"?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;100 block of New York St&lt;/STRONG&gt;, Redlands, CA&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;1600 blk E Cliff Dr&lt;/STRONG&gt;, El Paso&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;200-500 block Taylor St&lt;/STRONG&gt;, San Francisco&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;1700-1900 blk of Locust St&lt;/STRONG&gt;, Philadelphia, Pennsylvania&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or are you asking about the reference data to build the StreetAddress role locator?&lt;/P&gt;&lt;P&gt;-Shana&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 21:34:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275537#M67610</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2023-04-04T21:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275561#M67612</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1499"&gt;@ShanaBritt&lt;/a&gt;&amp;nbsp;That is correct, but I just figured out why.&amp;nbsp; Under Locator Properties &amp;gt; Geocoding Options, once alter the Categories to support from "All categories supported by the Locator" to "Only categories selected here", the ability to search with any of the block formats above is unsupported.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 22:06:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275561#M67612</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2023-04-04T22:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275823#M67628</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/333805"&gt;@WalidAlmasri1&lt;/a&gt;&amp;nbsp;, did you have specific categories selected and not the default of all supported categories? In the current released versions of ArcGIS Pro, StreetMidBlock is not listed as a category you can select in the 'Categories to support' property; however, it is something we are looking into for a future release.&lt;/P&gt;&lt;P&gt;Thanks for the update on your situation.&lt;/P&gt;&lt;P&gt;-Shana&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 15:09:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275823#M67628</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2023-04-05T15:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Geocoding Table with Anonymized Addresses &amp; Lat/Lon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275832#M67629</link>
      <description>&lt;P&gt;Yes, I did have specific categories selected, mainly removing StreetName as that is problematic.&amp;nbsp; Including StreetMidBlock as a category would definitely be my recommendation.&amp;nbsp; You also lose the ability to search by 'StreetMidBlock' when you disable categories in the coordinates too.&lt;/P&gt;&lt;P&gt;I hope to see this added in the very near future.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 15:23:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/geocoding-table-with-anonymized-addresses-amp-lat/m-p/1275832#M67629</guid>
      <dc:creator>WalidAlmasri1</dc:creator>
      <dc:date>2023-04-05T15:23:38Z</dc:date>
    </item>
  </channel>
</rss>

