<?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: How to determine if a line is on the boundary of two polygons in Spatial Data Science Questions</title>
    <link>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450410#M985</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's interesting that you are tackling this - I have a somewhat similar task on my "to do" list at this very moment in trying to update our City's Land Use layer versus the Parcels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some basic ideas that I am toying with (as yet untested for this specific task):&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Convert your parcels from polygons to lines, then do a Spatial Join of your boundary line to the polygon line.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Run a Select By Location to determine the relationships.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Feb 2015 22:34:42 GMT</pubDate>
    <dc:creator>ChrisDonohue__GISP</dc:creator>
    <dc:date>2015-02-26T22:34:42Z</dc:date>
    <item>
      <title>How to determine if a line is on the boundary of two polygons</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450409#M984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to figure out a way to determine if a line is along a boundary of two polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the line is on the boundary, or within a tolerance of the actual boundary line, then I will need to credit each of the polygons by 50% of the length.&amp;nbsp; If the line runs through a polygon then that polygon will get 100% of the credit for the portion of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this in ArcGIS Advanced?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="CreditDetermination.JPG" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/65860_CreditDetermination.JPG" style="width: 620px; height: 511px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 22:21:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450409#M984</guid>
      <dc:creator>MarkVolz</dc:creator>
      <dc:date>2015-02-26T22:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine if a line is on the boundary of two polygons</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450410#M985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's interesting that you are tackling this - I have a somewhat similar task on my "to do" list at this very moment in trying to update our City's Land Use layer versus the Parcels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some basic ideas that I am toying with (as yet untested for this specific task):&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Convert your parcels from polygons to lines, then do a Spatial Join of your boundary line to the polygon line.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Run a Select By Location to determine the relationships.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 22:34:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450410#M985</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2015-02-26T22:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine if a line is on the boundary of two polygons</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450411#M986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris and others,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the topology between the line and polygon features were perfect, that would work.  However, the problem I face is that the data is originating from two different sources.  If the line is off from the polygon boundary by up to 25 feet or so I still want to consider that line as “running along the boundary.”&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first thing that came to mind was that I could buffer polygon boundaries.  The purple line would correctly be located within the buffered 18-028005-0 polygon, and the buffered 18-028004-0 polygon.  However, a fraction of the endpoints  would also be located within the 18-028001-1, and 18-028003-0 polygon.  I am not really sure how to deal with a tolerance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;Mark Volz, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 18:52:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450411#M986</guid>
      <dc:creator>MarkVolz</dc:creator>
      <dc:date>2015-02-27T18:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine if a line is on the boundary of two polygons</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450412#M987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another idea - not a complete solution but may help fill in some pieces to the puzzle. I.e. some food for thought:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Split the line by the Parcels&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Convert the line to point at the center&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Run "Near" with a Searchdistance of 25ft.&amp;nbsp; May have to use the bearing information to avoid capturing a non-participating parcel at a right-angle crossing at a 4-way parcel intersection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Near&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Near/00080000001q000000/" title="http://resources.arcgis.com/en/help/main/10.1/index.html#/Near/00080000001q000000/"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One immediate pitfall, though, is that the line may not be split often enough.&amp;nbsp; For example, if it travels to 20 feet to the "West" side of parcel 18-028005-0 it will not be split enough to capture the two parcels to the "East".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 16:00:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/how-to-determine-if-a-line-is-on-the-boundary-of/m-p/450412#M987</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2015-03-03T16:00:12Z</dc:date>
    </item>
  </channel>
</rss>

