<?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: Point to Polygon distance in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571305#M18832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You don't really want a Point To Polygon distance, but a Point To Point distance, with the second point being the polygon vertex furthest removed from the outlet point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;make a loop to cycle through your outlet points. For each:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;create layers of (1) just one outlet and (2) just the corresponding catchment polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use the verticies to point tool (needs ArcInfo, I am afraid) to convert the polygon(s) to vertex points&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use the near table tool to get the distance (and direction, if you want that too) of all these points from the outlet&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;select the point in the near table furthest from the outlet to get the greatest distance (and direction) from that outlet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;blow away the layers and point table; then do the next outlet point.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Oct 2011 11:20:51 GMT</pubDate>
    <dc:creator>markdenil</dc:creator>
    <dc:date>2011-10-27T11:20:51Z</dc:date>
    <item>
      <title>Point to Polygon distance</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571304#M18831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have 2 layers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Point layer of outlets&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;polygon layer of outlet catchment area&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;There is an outlet_ID attribute on both layers.&amp;nbsp; Several polygons in the catchment layer make up the catchment for one outlet, so there will be several polygons with the same outlet_ID.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The outlet point is not necessarily in the middle of the catchment area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to work out the distance from the outlet point to the farthest edge of the catchment?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paula&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2011 23:31:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571304#M18831</guid>
      <dc:creator>PaulaMcNamara</dc:creator>
      <dc:date>2011-10-26T23:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Point to Polygon distance</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571305#M18832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You don't really want a Point To Polygon distance, but a Point To Point distance, with the second point being the polygon vertex furthest removed from the outlet point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;make a loop to cycle through your outlet points. For each:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;create layers of (1) just one outlet and (2) just the corresponding catchment polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use the verticies to point tool (needs ArcInfo, I am afraid) to convert the polygon(s) to vertex points&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use the near table tool to get the distance (and direction, if you want that too) of all these points from the outlet&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;select the point in the near table furthest from the outlet to get the greatest distance (and direction) from that outlet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;blow away the layers and point table; then do the next outlet point.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2011 11:20:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571305#M18832</guid>
      <dc:creator>markdenil</dc:creator>
      <dc:date>2011-10-27T11:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Point to Polygon distance</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571306#M18833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Mark, that makes sense.&amp;nbsp; I have 9.3.1 ArcInfo...phew.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll have to get a python wiz to get a loop sorted for me. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Paula&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2011 23:40:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/point-to-polygon-distance/m-p/571306#M18833</guid>
      <dc:creator>PaulaMcNamara</dc:creator>
      <dc:date>2011-10-27T23:40:56Z</dc:date>
    </item>
  </channel>
</rss>

