<?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 Juletip #4 - Get your coordinate ready for the maps in Visual Analytics with SAS in SAS Community Nordic</title>
    <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/418707#M135</link>
    <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;This juletip covers bought Visual Analytics 7.x and 8.x&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;7.x&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Requires&amp;nbsp;SAS/GRAPH&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want to visualize your data using a m&lt;/SPAN&gt;&lt;SPAN&gt;ap object in Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;with custom coordinates, you better hope that your longitude and latitude coordinates are in WGS84 format, or at least that was what I thought until recently.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I found out that the&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;dataset&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;SASHELP.PROJ4DEF contains 7124 different coordinate definitions and that we can convert between these with the help of PROC GPROJECT.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step one&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;find your coordinate system&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My suggestion would be to search the DESC variable in SASHELP.PROJ4DEF (see code example below). Identify name of the target coordinate system, for WGS&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;84 the name is&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"EPSG:4326"&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc&amp;nbsp;sql;&amp;nbsp;
select&amp;nbsp;*&amp;nbsp;&amp;nbsp;
from&amp;nbsp;SASHELP.PROJ4DEF&amp;nbsp;
where&amp;nbsp;upcase(DESC)&amp;nbsp;like&amp;nbsp;'%SWEREF99 TM%';&amp;nbsp;
quit;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you have found the names for the source and target coordinate systems we can move on to converting the data. In my example below there is one observation containing the coordinates for the city of Malmö in SWEREF99 TM format.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data&amp;nbsp;coordinates;&amp;nbsp;
input&amp;nbsp;City $ Longitude Latitude;&amp;nbsp;
datalines;&amp;nbsp;
Malmö&amp;nbsp;373547&amp;nbsp;6163386&amp;nbsp;
;&amp;nbsp;
run;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step two, convert the data&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To do this you need to rename your longitude and latitude variables to X and Y, specify the output dataset and the names of the from and to coordinate systems.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;You also need to specify City as ID.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Convert SWEREF99 TM&amp;nbsp;to&amp;nbsp;WGS84 */&amp;nbsp;
proc&amp;nbsp;gproject&amp;nbsp;&amp;nbsp;
data=coordinates (rename=(Longitude=X Latitude=Y))&amp;nbsp;&amp;nbsp;
out= coordinates_WGS84&amp;nbsp;
project=proj4&amp;nbsp;&amp;nbsp;
from="EPSG:3006"&amp;nbsp;/* SWEREF99 TM */&amp;nbsp;
to="EPSG:4326";&amp;nbsp;&amp;nbsp;/* WGS 84 */&amp;nbsp;
id&amp;nbsp;City;&amp;nbsp;
run;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step three,&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;visualize and&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;PROFIT!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-12-06 at 09.28.22.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17044i616C9D490021FE31/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-12-06 at 09.28.22.png" alt="Screen Shot 2017-12-06 at 09.28.22.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;8.x&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;are using Visual Analytics 8.x the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;conversion&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;above&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;aren’t necessary! You create your custom geography item like you&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;are&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;used to do in the 7.x version but when you specify the coordinate space you choose Custom and then enter the name of the coordinate system you found in the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SASHELP.PROJ4DEF&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;table. In my case “&lt;/SPAN&gt;&lt;SPAN&gt;EPSG:3006&lt;/SPAN&gt;&lt;SPAN&gt;” for SWEREF99 TM.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-12-06 at 09.27.32.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17043i7C6EF8B103C85871/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-12-06 at 09.27.32.png" alt="Screen Shot 2017-12-06 at 09.27.32.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Dec 2017 08:36:05 GMT</pubDate>
    <dc:creator>JoelJ</dc:creator>
    <dc:date>2017-12-06T08:36:05Z</dc:date>
    <item>
      <title>Juletip #4 - Get your coordinate ready for the maps in Visual Analytics with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/418707#M135</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;This juletip covers bought Visual Analytics 7.x and 8.x&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;7.x&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Requires&amp;nbsp;SAS/GRAPH&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want to visualize your data using a m&lt;/SPAN&gt;&lt;SPAN&gt;ap object in Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;with custom coordinates, you better hope that your longitude and latitude coordinates are in WGS84 format, or at least that was what I thought until recently.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I found out that the&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;dataset&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;SASHELP.PROJ4DEF contains 7124 different coordinate definitions and that we can convert between these with the help of PROC GPROJECT.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step one&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;find your coordinate system&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My suggestion would be to search the DESC variable in SASHELP.PROJ4DEF (see code example below). Identify name of the target coordinate system, for WGS&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;84 the name is&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"EPSG:4326"&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc&amp;nbsp;sql;&amp;nbsp;
select&amp;nbsp;*&amp;nbsp;&amp;nbsp;
from&amp;nbsp;SASHELP.PROJ4DEF&amp;nbsp;
where&amp;nbsp;upcase(DESC)&amp;nbsp;like&amp;nbsp;'%SWEREF99 TM%';&amp;nbsp;
quit;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you have found the names for the source and target coordinate systems we can move on to converting the data. In my example below there is one observation containing the coordinates for the city of Malmö in SWEREF99 TM format.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data&amp;nbsp;coordinates;&amp;nbsp;
input&amp;nbsp;City $ Longitude Latitude;&amp;nbsp;
datalines;&amp;nbsp;
Malmö&amp;nbsp;373547&amp;nbsp;6163386&amp;nbsp;
;&amp;nbsp;
run;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step two, convert the data&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To do this you need to rename your longitude and latitude variables to X and Y, specify the output dataset and the names of the from and to coordinate systems.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;You also need to specify City as ID.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Convert SWEREF99 TM&amp;nbsp;to&amp;nbsp;WGS84 */&amp;nbsp;
proc&amp;nbsp;gproject&amp;nbsp;&amp;nbsp;
data=coordinates (rename=(Longitude=X Latitude=Y))&amp;nbsp;&amp;nbsp;
out= coordinates_WGS84&amp;nbsp;
project=proj4&amp;nbsp;&amp;nbsp;
from="EPSG:3006"&amp;nbsp;/* SWEREF99 TM */&amp;nbsp;
to="EPSG:4326";&amp;nbsp;&amp;nbsp;/* WGS 84 */&amp;nbsp;
id&amp;nbsp;City;&amp;nbsp;
run;&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Step three,&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;visualize and&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;PROFIT!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-12-06 at 09.28.22.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17044i616C9D490021FE31/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-12-06 at 09.28.22.png" alt="Screen Shot 2017-12-06 at 09.28.22.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Visual Analytics&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;8.x&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;are using Visual Analytics 8.x the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;conversion&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;above&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;aren’t necessary! You create your custom geography item like you&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;are&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;used to do in the 7.x version but when you specify the coordinate space you choose Custom and then enter the name of the coordinate system you found in the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SASHELP.PROJ4DEF&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;table. In my case “&lt;/SPAN&gt;&lt;SPAN&gt;EPSG:3006&lt;/SPAN&gt;&lt;SPAN&gt;” for SWEREF99 TM.&lt;/SPAN&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-12-06 at 09.27.32.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17043i7C6EF8B103C85871/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-12-06 at 09.27.32.png" alt="Screen Shot 2017-12-06 at 09.27.32.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-ccp-props="{&amp;quot;201341983&amp;quot;:0,&amp;quot;335559739&amp;quot;:160,&amp;quot;335559740&amp;quot;:259}"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 08:36:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/418707#M135</guid>
      <dc:creator>JoelJ</dc:creator>
      <dc:date>2017-12-06T08:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Juletip #4 - Get your coordinate ready for the maps in Visual Analytics with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/418714#M137</link>
      <description>&lt;P&gt;Very good.&lt;/P&gt;
&lt;P&gt;Please tell SAS support and Consultants about this. They have tell us there is no solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/Anders&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 09:14:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/418714#M137</guid>
      <dc:creator>AndersBergquist</dc:creator>
      <dc:date>2017-12-06T09:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Juletip #4 - Get your coordinate ready for the maps in Visual Analytics with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/419505#M140</link>
      <description>&lt;P&gt;hi Joel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the tip, helped me find the right information for coordinates used in Switzerland. Should have have this tip a year ago;-)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some websites with additional information:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://epsg.io/" target="_blank"&gt;https://epsg.io/&lt;/A&gt; and &lt;A href="http://spatialreference.org/" target="_blank"&gt;http://spatialreference.org/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So for Switzerland I have found &lt;A href="https://epsg.io/21781" target="_blank"&gt;https://epsg.io/21781&lt;/A&gt; or in GPROJECT from="EPSG:21781"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2017 09:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-4-Get-your-coordinate-ready-for-the-maps-in-Visual/m-p/419505#M140</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2017-12-08T09:19:03Z</dc:date>
    </item>
  </channel>
</rss>

