<?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: Labeling Address Ranges on Map Book in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637998#M36072</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a field that has address already in, just not rounded to the block number? If you do you could use a label expression like below.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def FindLabel ( [FROMLEFT] ):
&amp;nbsp; a = float([FROMLEFT] )
&amp;nbsp; return int(round(a,-2))&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 03:07:31 GMT</pubDate>
    <dc:creator>WesMiller</dc:creator>
    <dc:date>2021-12-12T03:07:31Z</dc:date>
    <item>
      <title>Labeling Address Ranges on Map Book</title>
      <link>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637997#M36071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to place labels along roads showing the range of the addresses.&amp;nbsp; I don't want to label the range values at intersections but to use a preset value.&amp;nbsp; Such as 500, 1000, 1500, etc.&amp;nbsp; So if you were following "Smith Rd" along on the map you could see the range you were in. I need to do this for multiple jurisdictions thus several map books for which an automated process would be most valuable.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since many addresses are milepoint based I had considered using various tools to create points along a line this but it doesn't work in part because many ranges don't start at zero and it won't handle block style address ranges.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other option I considered is to use a table with the address ranges of each road and create fake addresses for each value I want. Eg. 500 Smith Rd, 1000 Smith Rd, 1500 Smith Rd etc. until the ranges available are exhausted.&amp;nbsp; This table could then be geocoded and would create the point shp file I could use to label with. As you could imagine this is a very time consuming process doing a lot of sorting and cutting and pasting in Excel for each jurisdiction set I want to create.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A method to create points of pre-selected values along a line based on standard address range coding (Left From, Left To, Right From, Right To) would be most helpful.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any guidance is very appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Example Cartographic Result Desired.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/legacyfs/online/122060_pastedImage_0.png"&gt;&lt;IMG alt="" class="image-1 jive-image" height="727" src="https://community.esri.com/legacyfs/online/122060_pastedImage_0.png" style="max-width:988px; max-;" width="988" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 17:24:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637997#M36071</guid>
      <dc:creator>MichaelRobinson1</dc:creator>
      <dc:date>2015-08-12T17:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Labeling Address Ranges on Map Book</title>
      <link>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637998#M36072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a field that has address already in, just not rounded to the block number? If you do you could use a label expression like below.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def FindLabel ( [FROMLEFT] ):
&amp;nbsp; a = float([FROMLEFT] )
&amp;nbsp; return int(round(a,-2))&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:07:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637998#M36072</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2021-12-12T03:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Labeling Address Ranges on Map Book</title>
      <link>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637999#M36073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the quick response Wes.&lt;/P&gt;&lt;P&gt;I think that would work if I only needed a label. However I don't believe it will place the Label in the correct position along the road.&amp;nbsp; It will only label as to were I define that file to place labels relative the the line it is an attribute to.&lt;/P&gt;&lt;P&gt;I need something to generate a point file that will the specific labels to be placed in the correct location.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 18:16:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/labeling-address-ranges-on-map-book/m-p/637999#M36073</guid>
      <dc:creator>MichaelRobinson1</dc:creator>
      <dc:date>2015-08-12T18:16:35Z</dc:date>
    </item>
  </channel>
</rss>

