<?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: Convert Lambert to LAT and LONG in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738852#M230532</link>
    <description>&lt;P&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 May 2021 10:53:18 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-05-04T10:53:18Z</dc:date>
    <item>
      <title>Convert Lambert to LAT and LONG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738824#M230517</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to convert Lambert (&lt;SPAN&gt;XY= (521387.001,204215.954)&lt;/SPAN&gt;) to WGS84 ( LAT-LONG).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help plz ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 09:33:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738824#M230517</guid>
      <dc:creator>Betty_sam</dc:creator>
      <dc:date>2021-05-04T09:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Lambert to LAT and LONG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738852#M230532</link>
      <description>&lt;P&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 10:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738852#M230532</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-05-04T10:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Lambert to LAT and LONG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738901#M230550</link>
      <description>&lt;P&gt;Proc GPROJECT can help you with this. See the FROM= and TO= options. The SASHELP.PROJ4DEF contains some common values to be used for the FROM= and TO= options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example on how to convert the swiss coordinate system to WGS84. You will have to lookup the proper values as needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, where is the point you mentioned&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data lv95;
  x = 600000;
  y = 200000;
  id = 1;
run;
proc gproject 
  data=lv95
  out=wgs84
  project=proj4  
  from="EPSG:21781" /* CH1903+ / LV95 */ 
  to="EPSG:4326";  /* WGS 84 */ 
  id id;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 May 2021 13:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-Lambert-to-LAT-and-LONG/m-p/738901#M230550</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2021-05-04T13:40:53Z</dc:date>
    </item>
  </channel>
</rss>

