<?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 Creating points at a specific distance from other points along a line in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630813#M35622</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a network file (polyline) and I have a separate point file. The point file FIELDS include coordinates of the starting point and "LENGTH" which is distance along the line from the starting point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I want to create or locate points along the line which are at "LENGTH" distances from the starting points in the point file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, I created a route from the transportation network file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, I added the starting points as events along the route.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I am not able to figure out how to create a new set of route events which are at specific distance from the first set of route events along the route.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ArcGIS 10.2.2 Desktop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Mar 2015 23:36:13 GMT</pubDate>
    <dc:creator>RajeshPaleti</dc:creator>
    <dc:date>2015-03-24T23:36:13Z</dc:date>
    <item>
      <title>Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630813#M35622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a network file (polyline) and I have a separate point file. The point file FIELDS include coordinates of the starting point and "LENGTH" which is distance along the line from the starting point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I want to create or locate points along the line which are at "LENGTH" distances from the starting points in the point file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, I created a route from the transportation network file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, I added the starting points as events along the route.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I am not able to figure out how to create a new set of route events which are at specific distance from the first set of route events along the route.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ArcGIS 10.2.2 Desktop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Mar 2015 23:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630813#M35622</guid>
      <dc:creator>RajeshPaleti</dc:creator>
      <dc:date>2015-03-24T23:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630814#M35623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normally you would use the &lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/linear-referencing/make-route-event-layer.htm"&gt;Make Route Event Layer tool&lt;/A&gt; to convert a table with "events" to for instance points. Do you have the route identifier in the point file attribute table? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read more on dynamic segmentation here: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//003900000026000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//003900000026000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way to go would be the use of some python code. No need to have a network, just polylines will do: &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Loop through the points&lt;/LI&gt;&lt;LI&gt;For each point define which line (route) belongs to it&lt;/LI&gt;&lt;LI&gt;Use the arcpy.Polyline.positionAlongLine(value, {use_percentage}) to get the point&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 01:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630814#M35623</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-03-25T01:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630815#M35624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply Xander. In fact, I used the Make Route Event Layer tool to create a table with events. I also have the RID in the event table. But, now I need to create a second set of events which are at a specific distance from the first set of events along the polyline. Is there no way to do this without the python script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 01:38:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630815#M35624</guid>
      <dc:creator>RajeshPaleti</dc:creator>
      <dc:date>2015-03-25T01:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630816#M35625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's odd. I would expect this tool to create a layer from the events.&lt;/P&gt;&lt;P&gt;Could you attach a small sample of your data (some lines and corresponding points)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 01:45:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630816#M35625</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-03-25T01:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630817#M35626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, so I created a few lines, added some points near the start of the line and created routes from the lines.&lt;/P&gt;&lt;P&gt;I created a field "DistFromStart" with some values of the distance from the start (or actually the point).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My steps were as follows:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Locate Features Along Routes (this creates the event table shown below)&lt;/LI&gt;&lt;LI&gt;I added a field "newMeasure" which is the measure of the input point from the start of the line and I added the DistFromStart to this value to create a measure from the start of the line&lt;/LI&gt;&lt;LI&gt;Then I used the Make Route Event Layer to create the event points (blue squares) which is what you are looking for (as far as I understand)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;IMG alt="DynaSeg.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/78363_DynaSeg.png" style="width: 620px; height: 476px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 02:43:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630817#M35626</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-03-25T02:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630818#M35627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Bakker! I could replicate your steps in my case. Thank again for the splendid example and please excuse me for the delayed response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 19:25:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630818#M35627</guid>
      <dc:creator>RajeshPaleti</dc:creator>
      <dc:date>2015-03-26T19:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating points at a specific distance from other points along a line</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630819#M35628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You´re welcome! BTW my first name is Xander....&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 22:51:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-points-at-a-specific-distance-from-other/m-p/630819#M35628</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-03-26T22:51:38Z</dc:date>
    </item>
  </channel>
</rss>

