<?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: Real size in Buffers in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265863#M6943</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Dominique! I've solved the problem. Just used the Spatial Reference of the sample &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#BufferQuery" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#BufferQuery&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Apr 2013 21:12:18 GMT</pubDate>
    <dc:creator>EnriqueIbarra</dc:creator>
    <dc:date>2013-04-22T21:12:18Z</dc:date>
    <item>
      <title>Real size in Buffers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265861#M6941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm using the Geometry Service to create Buffers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;gmtrySrvcBuffers = new GeometryService("http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gmtrySrvcBuffers.BufferCompleted += gmtrySrvcBuffers_BufferCompleted; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BufferParameters bufferParams = new BufferParameters() { BufferSpatialReference = Variables.Mapa.SpatialReference, OutSpatialReference = Variables.Mapa.SpatialReference, Unit = LinearUnit.Meter };&lt;/PRE&gt;&lt;BR /&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;&lt;SPAN&gt; that the spatial references are defined from the base Map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And the MeasureAction to display the radio of a circle:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;esri:MeasureAction AreaUnit="SquareMeters" DisplayTotals="True" DistanceUnit="Meters" MapUnits="Meters" MeasureMode="Radius" FillSymbol="{StaticResource DefaultFillSymbol}" TargetName="MyMap" /&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in both cases the units are Meters.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once buffer created (with a value of 1000, from a text of a TextBox converted to Double, for the radio), I use the MeasureAction and the result is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]23608[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I'm doing wrong? why the measures aren't equals?'&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 17:06:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265861#M6941</guid>
      <dc:creator>EnriqueIbarra</dc:creator>
      <dc:date>2013-04-18T17:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Real size in Buffers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265862#M6942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;With these buffer params, the geometry service is doing euclidian 2D calculation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So it's not taking care of the Web Mercator distorsion (about cos(latitude)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From 3.1, the Geometry Service has a new &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.BufferParameters~Geodesic.html"&gt;geodesic &lt;/A&gt;&lt;SPAN&gt;parameter&amp;nbsp; in order to generate a buffer polygon using a geodesic distance (but your coordinates have also to be in GCS)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 06:18:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265862#M6942</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-04-22T06:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Real size in Buffers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265863#M6943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Dominique! I've solved the problem. Just used the Spatial Reference of the sample &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#BufferQuery" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#BufferQuery&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 21:12:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/real-size-in-buffers/m-p/265863#M6943</guid>
      <dc:creator>EnriqueIbarra</dc:creator>
      <dc:date>2013-04-22T21:12:18Z</dc:date>
    </item>
  </channel>
</rss>

