<?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 Bug in ESRI.ArcGIS.Client.Bing Transform.GeographicToWebMercator()? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527831#M13585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Correct. But neither of those two projections are very suitable for displaying data at the poles because of the large distortion they have in those areas.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Apr 2010 04:25:46 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2010-04-11T04:25:46Z</dc:date>
    <item>
      <title>Bug in ESRI.ArcGIS.Client.Bing Transform.GeographicToWebMercator()?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527828#M13582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Our QA found this in testing. If he puts in Longitude of 180 and Latitude of 90, he got an error in runtime. When I look at the code in design time I found the Y after transformation turns out to be Infinity!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code snippets:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;double dblX = 180;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;double dblY = 90;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI.ArcGIS.Client.Geometry.MapPoint mpGeog = new MapPoint(dblX, dblY, new SpatialReference(4326));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI.ArcGIS.Client.Geometry.MapPoint mpGeom = ESRI.ArcGIS.Client.Bing.Transform.GeographicToWebMercator(mpGeog);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the values of &lt;/SPAN&gt;&lt;STRONG&gt;mpGeom &lt;/STRONG&gt;&lt;SPAN&gt;after transformation:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{Point[X=20037508.3427892, Y=Infinity, WKID=102100]}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; base {ESRI.ArcGIS.Client.Geometry.Geometry}: {Point[X=20037508.3427892, Y=Infinity, WKID=102100]}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Extent: {20037508.3427892,Infinity,20037508.3427892,Infinity}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; X: 20037508.342789244&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y: Infinity&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even if I limit the latitude values to 89.99999, the pointed plotted is way off the top of the map. The latitude limit for the map seems to be about 85.05 degree north or south. I guess there is no way to plot a point at north pole!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My questions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- What is the limitation of the ESRI.ArcGIS.Client.Bing.Transform.GeographicToWebMercator?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- What is the limit in terms of WGS84 geodetic coordinates for World Street Map on ArcGISonline (&lt;/SPAN&gt;&lt;A href="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"&gt;http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer&lt;/A&gt;&lt;SPAN&gt; )?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 15:04:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527828#M13582</guid>
      <dc:creator>HubertLo</dc:creator>
      <dc:date>2010-04-09T15:04:25Z</dc:date>
    </item>
    <item>
      <title>Bug in ESRI.ArcGIS.Client.Bing Transform.GeographicToWebMercator()?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527829#M13583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is just how Mercator works. The poles are infinitely far from the top/bottom. That's why most maps cuts off around 85 degrees, because the distortion beyond that point is getting enormous. You are correct there is no way to plot the poles in Mercator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So in other words: This is not a bug but expected behavior.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;See: &lt;/SPAN&gt;&lt;A href="http://en.wikipedia.org/wiki/Mercator_projection"&gt;http://en.wikipedia.org/wiki/Mercator_projection&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;- What is the limitation of the ESRI.ArcGIS.Client.Bing.Transform.GeographicToWebMercator?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;-180,-90 -&amp;gt; 180,90 (but note that large positive or negative Y values will converge towards infinity)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;- What is the limit in terms of WGS84 geodetic coordinates for World Street Map on ArcGISonline (&lt;A href="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"&gt;http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer&lt;/A&gt; )?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;-180,-90 -&amp;gt; 180,90. This goes for all geographic coordinates (well if they use degrees that is &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 17:26:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527829#M13583</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-04-09T17:26:32Z</dc:date>
    </item>
    <item>
      <title>Bug in ESRI.ArcGIS.Client.Bing Transform.GeographicToWebMercator()?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527830#M13584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you Morten for your answers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What if we have to plot features up in the poles (Latitude &amp;gt; 85 degrees)? Do you have to go back to ArcGISonline maps that use the WGS84 as spatial reference (SRID 4326) for that? (suppose they are still available now things are moving to SRID 102100.)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Apr 2010 21:18:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527830#M13584</guid>
      <dc:creator>HubertLo</dc:creator>
      <dc:date>2010-04-10T21:18:24Z</dc:date>
    </item>
    <item>
      <title>Bug in ESRI.ArcGIS.Client.Bing Transform.GeographicToWebMercator()?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527831#M13585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Correct. But neither of those two projections are very suitable for displaying data at the poles because of the large distortion they have in those areas.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Apr 2010 04:25:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-esri-arcgis-client-bing-transform/m-p/527831#M13585</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2010-04-11T04:25:46Z</dc:date>
    </item>
  </channel>
</rss>

