<?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: How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514553#M13142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This&lt;A class="jive-link-external-small" href="http://broux.dominique.free.fr/Silverlight/InteractiveSDK/Default.htm#LinearReferencing" rel="nofollow" target="_blank"&gt; linear referencing sample &lt;/A&gt;might help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2015 14:08:50 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2015-02-02T14:08:50Z</dc:date>
    <item>
      <title>How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514551#M13140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Gurus!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to determine the coordinates of point on the road (on the client side), whose distance from the beginning of the road (the distance is measured along the road, not the shortest distance from point to point)?&lt;/P&gt;&lt;P&gt;P.S. Should I write a service that performs this task, or are there other options?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 13:38:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514551#M13140</guid>
      <dc:creator>AnatoliiTerentiev</dc:creator>
      <dc:date>2015-02-02T13:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514552#M13141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Anatollii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You have to options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Use Roads&amp;amp;Highways extension to ArcGIS For Server. Use the sample below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://roadsandhighwayssample.esri.com/roads/samples/MeasureToGeometry/MeasureToGeometry.html" title="http://roadsandhighwayssample.esri.com/roads/samples/MeasureToGeometry/MeasureToGeometry.html"&gt;http://roadsandhighwayssample.esri.com/roads/samples/MeasureToGeometry/MeasureToGeometry.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Do some azimuth and length calculations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 case) The route is straight (line):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calculate route length (Dpk) using coordinates of starting (P) and ending (K) point of the route. Calculate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deltaXpk = Xk – Xp and delta Ypk = Yk – Yp. Get your known length Dpn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Coordinates of the point are: Xn = Xp + (Dpn x deltaXpk) / Dpk and&amp;nbsp; Yn = Yp +(Dpn x deltaYpk)) / Dpk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2 case) The route is not straight (polyline): &lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;If&amp;nbsp; Dpn &amp;gt; Dpk, change the points. Point P = Point K. Point K equals next vertex on the polyline. Check the distance if Dpn &amp;gt; Dpk + Dpk(of previous sections). If true, go to next section. If false, calculate coordinates.&lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;&lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;&lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;Regards,&lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;&lt;/P&gt;&lt;P style="margin-left: 35.4pt;"&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:05:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514552#M13141</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2015-02-02T14:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514553#M13142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This&lt;A class="jive-link-external-small" href="http://broux.dominique.free.fr/Silverlight/InteractiveSDK/Default.htm#LinearReferencing" rel="nofollow" target="_blank"&gt; linear referencing sample &lt;/A&gt;might help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:08:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514553#M13142</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2015-02-02T14:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514554#M13143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For me I would:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Latitude and departures as long as you are using something like state plane coordinates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) get coordinate of start of road.&lt;/P&gt;&lt;P&gt;2) determine the azimuth of the road 0 - 359.9999 degrees&lt;/P&gt;&lt;P&gt;3) Cos of the azimuth * the distance from beginning of road is what is called the Latitude (algebraic difference in Y).&lt;/P&gt;&lt;P&gt;4) Sin of the Azimuth * the distance from the beginning of the road is what is called the departure (algebraic difference in X)&lt;/P&gt;&lt;P&gt;5 ) Add the latitude (keeping the sign in tact) to original Y coordinate from step 1&lt;/P&gt;&lt;P&gt;6) Add the Departure (keeping the sign in tact) to original X coordinate from step 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note Latitude mentioned above is not a geographic Latitude. &lt;/P&gt;&lt;P&gt;In example above calculator set to Degrees mode and not Radians.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a line feature class.&lt;/P&gt;&lt;P&gt;Go into edit mode and add a line with the first vertex of line being the beginning of the road.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Then moving mouse to a point on centerline of the road somewhere beyond where you think the point will be and then right click and pick direction and just accept the bearing that it shows.&amp;nbsp; Then right lick and pick distance and enter the distance.&amp;nbsp; If you id the end of the line you just drew you will have your coordinate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:33:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514554#M13143</guid>
      <dc:creator>TracyGarrison</dc:creator>
      <dc:date>2015-02-02T14:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the coordinates of an object on the road, if it is known that it is located at a certain distance from the beginning of the road?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514555#M13144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:35:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-determine-the-coordinates-of-an-object-on/m-p/514555#M13144</guid>
      <dc:creator>AnatoliiTerentiev</dc:creator>
      <dc:date>2015-02-02T14:35:58Z</dc:date>
    </item>
  </channel>
</rss>

