<?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: Which sides of a parcel have road frontage. in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389018#M30752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you figure this out? I'm also at a PA office and they want to know water frontage of parcels.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Oct 2019 19:08:36 GMT</pubDate>
    <dc:creator>HeatherHanson</dc:creator>
    <dc:date>2019-10-18T19:08:36Z</dc:date>
    <item>
      <title>Which sides of a parcel have road frontage.</title>
      <link>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389017#M30751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Im trying to figure out how to find which 'side' of a land parcel has road frontage. The matter is complicated by our PA not storing true curves when they draw the parcels. Any cul-de-sac is made of hundreds of tiny lines each technically a side of the polygon. Ive converted polygons to lines and split at vertex but I cant figure out of the line fronts a road. I was thinking that if I can flag the segments as road front I could delete the other lines and merger the remaining back into longer lines by parcel ID. Any ideas on how to check this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 17:27:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389017#M30751</guid>
      <dc:creator>ChrisMathers</dc:creator>
      <dc:date>2013-04-10T17:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Which sides of a parcel have road frontage.</title>
      <link>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389018#M30752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you figure this out? I'm also at a PA office and they want to know water frontage of parcels.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2019 19:08:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389018#M30752</guid>
      <dc:creator>HeatherHanson</dc:creator>
      <dc:date>2019-10-18T19:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Which sides of a parcel have road frontage.</title>
      <link>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389019#M30753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe python isn't needed much?&amp;nbsp; Explode your parcels to individual segments, spatial join parcel segments to your roads.&amp;nbsp; Now the shortest distance segment would be your frontage.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2019 15:38:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389019#M30753</guid>
      <dc:creator>KevinBell1</dc:creator>
      <dc:date>2019-10-21T15:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Which sides of a parcel have road frontage.</title>
      <link>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389020#M30754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ive done something similar using the approach below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp;Simplify every parcel, to just 4 vertices&amp;nbsp; &amp;nbsp; &amp;nbsp;A quick and dirty method is to use minimum rectangle - by area.&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/minimum-bounding-geometry.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/minimum-bounding-geometry.htm"&gt;Minimum Bounding Geometry—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Use&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/feature-vertices-to-points.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/feature-vertices-to-points.htm"&gt;Feature Vertices To Points—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; to get a point for each vertex.&lt;/LI&gt;&lt;LI&gt;Use&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/split-line-at-point.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/split-line-at-point.htm"&gt;Split Line at Point—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; to convert each parcel, into 4 "Side" line features.&lt;/LI&gt;&lt;LI&gt;Spatial join the sides to the roads, for each parcel, the side with the smallest distance, is the frontage on the road.&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Oct 2019 11:42:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/which-sides-of-a-parcel-have-road-frontage/m-p/389020#M30754</guid>
      <dc:creator>LukeWebb</dc:creator>
      <dc:date>2019-10-28T11:42:46Z</dc:date>
    </item>
  </channel>
</rss>

