<?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 Geographic or Projected in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737109#M16340</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Currently the only way is to use the Spatial Reference guides to see what the WKID stands for.&amp;nbsp; There might be some way to tell based on the number but I have yet to see anything definitive on that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/content/references/coordinate_system_ids.htm"&gt;http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/content/references/coordinate_system_ids.htm&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Apr 2010 14:18:19 GMT</pubDate>
    <dc:creator>JU</dc:creator>
    <dc:date>2010-04-02T14:18:19Z</dc:date>
    <item>
      <title>Geographic or Projected</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737108#M16339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear ArcGIS API Team,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to know using the Flex API if a spatial reference is of type Geographic or Projected?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;José Sousa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI Portugal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 16:48:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737108#M16339</guid>
      <dc:creator>JoseSousa</dc:creator>
      <dc:date>2010-03-24T16:48:05Z</dc:date>
    </item>
    <item>
      <title>Geographic or Projected</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737109#M16340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Currently the only way is to use the Spatial Reference guides to see what the WKID stands for.&amp;nbsp; There might be some way to tell based on the number but I have yet to see anything definitive on that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/content/references/coordinate_system_ids.htm"&gt;http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/content/references/coordinate_system_ids.htm&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 14:18:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737109#M16340</guid>
      <dc:creator>JU</dc:creator>
      <dc:date>2010-04-02T14:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Geographic or Projected</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737110#M16341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;José Sousa,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You could use a simple function like this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;public function GeoOrPro(WKID:Number):String
{
 var retVal:String = "NULL";
 
 if(WKID &amp;gt;= 2000 &amp;amp;&amp;amp; WKID &amp;lt;= 4000){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 4001 &amp;amp;&amp;amp; WKID &amp;lt;= 4904){
&amp;nbsp; retVal= "GEOGRAPHIC";
 }else if(WKID &amp;gt;= 20002 &amp;amp;&amp;amp; WKID &amp;lt;= 32766){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 37001 &amp;amp;&amp;amp; WKID &amp;lt;= 37260){
&amp;nbsp; retVal= "GEOGRAPHIC";
 }else if(WKID &amp;gt;= 53001 &amp;amp;&amp;amp; WKID &amp;lt;= 53049){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 54001 &amp;amp;&amp;amp; WKID &amp;lt;= 54053){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 65061 &amp;amp;&amp;amp; WKID &amp;lt;= 65063){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 102001 &amp;amp;&amp;amp; WKID &amp;lt;= 103971){
&amp;nbsp; retVal= "PROJECTED";
 }else if(WKID &amp;gt;= 104000 &amp;amp;&amp;amp; WKID &amp;lt;= 104970){
&amp;nbsp; retVal= "GEOGRAPHIC";
 }
 return retVal;
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:24:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/geographic-or-projected/m-p/737110#M16341</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T07:24:23Z</dc:date>
    </item>
  </channel>
</rss>

