<?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: Problem of calculating distance between Point Geometries. in New to GIS Questions</title>
    <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102939#M2000</link>
    <description>&lt;P&gt;just to confirm: PointGeometry.buffer() creates a planar buffer (circle in the flat plane defined by the spatial reference), not a geodesic one.&lt;/P&gt;&lt;P&gt;For correct distance measurement at this map scale, I recommend using either the Buffer geoprocessing tool with geodesic method, or repeated application of pointFromAngleAndDistance with the geodesic method.&lt;/P&gt;&lt;P&gt;Jim TenBrink&lt;/P&gt;&lt;P&gt;spatial analyst team&lt;/P&gt;</description>
    <pubDate>Wed, 29 Sep 2021 01:23:03 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2021-09-29T01:23:03Z</dc:date>
    <item>
      <title>Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102390#M1993</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I passed the same distance as a parameter into two different methods of the same&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/classes/pointgeometry.htm" target="_blank" rel="noopener"&gt;Point Geometry&lt;/A&gt;, Buffer() and&amp;nbsp;pointFromAngleAndDistance(), but the results shows different distance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaesikChun_2-1632794284397.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/23952i4F5C5D4DBB5F9C2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JaesikChun_2-1632794284397.png" alt="JaesikChun_2-1632794284397.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;a. Point Geometry / b. point from the method&amp;nbsp;pointFromAngleAndDistance() / c. buffered polygon from&amp;nbsp;Buffer()&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;1. distance from&amp;nbsp;pointFromAngleAndDistance()&amp;nbsp; /&amp;nbsp; 2. distance(radius) from Buffer()&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The spatial reference of Point Geometry is EPSG 4326. (The point geometry objects for two methods is the same so, those methods are assumed to use the same distance measurement&lt;SPAN&gt;&amp;nbsp;units of the same geometry's spatial reference.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I also add a line of code to make the process. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JaesikChun_2-1632794903480.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/23960iA3AAF431A7CB2ACC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JaesikChun_2-1632794903480.png" alt="JaesikChun_2-1632794903480.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My question is how to match two distances(1,2 in the image above). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for any help.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 02:10:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102390#M1993</guid>
      <dc:creator>Jae_Jeon</dc:creator>
      <dc:date>2021-09-28T02:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102392#M1994</link>
      <description>&lt;P&gt;it is the coordinate system of your map. probably web mercator? if so, don't use web mercator to do any distance and direction measure, use a compromise (eg UTM ) or equadistant coordinate system&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 02:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102392#M1994</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-09-28T02:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102414#M1995</link>
      <description>&lt;P&gt;Dan, if you look at the code, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/120030"&gt;@Jae_Jeon&lt;/a&gt;&amp;nbsp; is using &lt;EM&gt;geodesic distance,&lt;/EM&gt; which avoids the coordinate system issue, but something weird is happening and it appears the buffer is not the size he's looking for.&lt;/P&gt;&lt;P&gt;On reading the help for arcpy.PointGeometry I'm wondering if what you need to use is not the default &lt;EM&gt;GEODESIC&lt;/EM&gt; but, instead,&amp;nbsp;&lt;EM&gt;GREAT_ELLIPTIC&lt;/EM&gt; for your distance-angle method.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 03:36:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102414#M1995</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-09-28T03:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102451#M1996</link>
      <description>&lt;P&gt;Thanks for your answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested it with '&lt;EM&gt;GREAT_ELLIPTIC' &lt;/EM&gt;and the result was not differnet from the one from &lt;EM&gt;GEODESIC&lt;/EM&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also checked the output buffer geometry's spatial reference follows point geometry(epsg: 4326)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 07:34:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102451#M1996</guid>
      <dc:creator>Jae_Jeon</dc:creator>
      <dc:date>2021-09-28T07:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102462#M1997</link>
      <description>&lt;P&gt;I still think it is a display thing since a buffer can only create one radius,&amp;nbsp; I am thinking a Tissot's Indicatrix related issue since the SR is 4326&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 08:29:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102462#M1997</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-09-28T08:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102560#M1998</link>
      <description>Oh I get it. Change the CS of the map to equidistant and the point may line up with the buffer better.&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Sep 2021 14:13:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102560#M1998</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-09-28T14:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102925#M1999</link>
      <description>&lt;P&gt;It works properly after I changed SR to both UTM and equidistant one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 01:07:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102925#M1999</guid>
      <dc:creator>Jae_Jeon</dc:creator>
      <dc:date>2021-09-29T01:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102939#M2000</link>
      <description>&lt;P&gt;just to confirm: PointGeometry.buffer() creates a planar buffer (circle in the flat plane defined by the spatial reference), not a geodesic one.&lt;/P&gt;&lt;P&gt;For correct distance measurement at this map scale, I recommend using either the Buffer geoprocessing tool with geodesic method, or repeated application of pointFromAngleAndDistance with the geodesic method.&lt;/P&gt;&lt;P&gt;Jim TenBrink&lt;/P&gt;&lt;P&gt;spatial analyst team&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 01:23:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102939#M2000</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-09-29T01:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem of calculating distance between Point Geometries.</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102940#M2001</link>
      <description>&lt;P&gt;It's good to know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Jim.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 01:28:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/problem-of-calculating-distance-between-point/m-p/1102940#M2001</guid>
      <dc:creator>Jae_Jeon</dc:creator>
      <dc:date>2021-09-29T01:28:14Z</dc:date>
    </item>
  </channel>
</rss>

