<?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: Create curve/arc from points in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584148#M19323</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is an idea:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Run Buffer on inputLine with a distance d (your choice) using the LEFT or RIGHT side type and the FLAT end type. You get an output, bufferOneSide.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Run Feature To Line using both inputLine and bufferOneSide as input. Call the output newLines. You probably get two lines, one straight and one as the side of the buffer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Select the longer one of the two lines from newLines and run Smooth Line tool using the PAEK algorithm with a tolerance (try 4 x d; or find a tolerance you like). The square corners of the selected line (side of the buffer) should be rounded. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could this resulting line be used as a curved offset line?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Dec 2012 22:48:51 GMT</pubDate>
    <dc:creator>DanLee</dc:creator>
    <dc:date>2012-12-03T22:48:51Z</dc:date>
    <item>
      <title>Create curve/arc from points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584145#M19320</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;BR /&gt;&lt;SPAN&gt;I've got a set of links between two location each (A-B) and I'd like to create curved polylines, rather than a straight line from A to B. This is for reasons of legibility as a lot of points sit on similar x or y coordinates and the straight lines overlap too much. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would anyone know how to do automate this process? The straigth A-B line is obviously straight forward, but I can't find any references of how to create an arc between two points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bruno&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 11:57:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584145#M19320</guid>
      <dc:creator>BrunoMoser</dc:creator>
      <dc:date>2012-11-29T11:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create curve/arc from points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584146#M19321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try to create line from points using Points To Line tool (Data Management - Features).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then use Smooth Line tool (Cartography - Generalization) withe BEZIER option to get Bezier curve for the line.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does that work for you?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2012 23:00:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584146#M19321</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2012-12-02T23:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create curve/arc from points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584147#M19322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One needs three non linear points to get a curve with SmoothLine &amp;amp; BEZIER_INTERPOLATION, does one not?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bruno has only the two end points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;He could calculate a point mid-way point on the straight a-b line, and then offset it a certain amount (progressively or randomly).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That would give three points for SmoothLine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It would also be a lot of code, and may be a bit crude.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the lines are very long, one could calculate the lines in a coordinate space where they are straight, densify them, and then project them to the target space where they would be curved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, plot lines A-B, A-C, A-D, A-x in an azimutahal space centered on A.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Densify the lines to 'pin down' the path geographically.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;project to a target space (say, Mercator) for display &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the lines should be curved....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As I said, the lines would have to be long enough for the earth's curvature to matter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:25:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584147#M19322</guid>
      <dc:creator>markdenil</dc:creator>
      <dc:date>2012-12-03T13:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create curve/arc from points</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584148#M19323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is an idea:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Run Buffer on inputLine with a distance d (your choice) using the LEFT or RIGHT side type and the FLAT end type. You get an output, bufferOneSide.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Run Feature To Line using both inputLine and bufferOneSide as input. Call the output newLines. You probably get two lines, one straight and one as the side of the buffer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Select the longer one of the two lines from newLines and run Smooth Line tool using the PAEK algorithm with a tolerance (try 4 x d; or find a tolerance you like). The square corners of the selected line (side of the buffer) should be rounded. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could this resulting line be used as a curved offset line?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 22:48:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/create-curve-arc-from-points/m-p/584148#M19323</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2012-12-03T22:48:51Z</dc:date>
    </item>
  </channel>
</rss>

