<?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: VA 7.4 geomap using SCF in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397449#M8148</link>
    <description>Am I correct in understanding that you are using the Lat/Long of the first zipcode for the SCF? If you apply some of my logic you can get a more centered Lat/Long for each SCF.</description>
    <pubDate>Wed, 20 Sep 2017 14:01:10 GMT</pubDate>
    <dc:creator>jeninemilum</dc:creator>
    <dc:date>2017-09-20T14:01:10Z</dc:date>
    <item>
      <title>VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/396428#M8133</link>
      <description>&lt;P&gt;I'm creating geomaps in 7.4 VA.&amp;nbsp;&amp;nbsp; I’ve got SCFs I’d like to use&amp;nbsp;and it only takes 5 digit zips.&amp;nbsp; I’ve tried adding zeros to the end but that really didn’t work.&amp;nbsp; They all showed up in Washington DC.&amp;nbsp; &amp;nbsp;Do you have any suggestions?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2017 17:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/396428#M8133</guid>
      <dc:creator>jeninemilum</dc:creator>
      <dc:date>2017-09-15T17:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/396697#M8134</link>
      <description>&lt;P&gt;I'm not too familiar with SCF's but I doubt that just by adding zeros to the end would make it a valid post code? Also, given details on &lt;A href="https://en.wikipedia.org/wiki/Sectional_center_facility" target="_self"&gt;https://en.wikipedia.org/wiki/Sectional_center_facility&lt;/A&gt;&amp;nbsp;some SCF's are served by other state facilities - so just referencing the underlying postcode may give false information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to get this solved would be to download a reference data set such as &lt;A href="http://faculty.baruch.cuny.edu/geoportal/data/esri/usa/census/zip3.zip" target="_self"&gt;http://faculty.baruch.cuny.edu/geoportal/data/esri/usa/census/zip3.zip&lt;/A&gt;&amp;nbsp;(there may be others if you google) which contains the polygonal areas of SCF's. Either follow the &lt;A href="https://support.sas.com/documentation/cdl/en/vaag/69958/HTML/default/viewer.htm#n0g5kjtnbvsrwbn1lxl2wahyc5du.htm" target="_self"&gt;VA admin guide&lt;/A&gt; to import these custom polygons into VA or just use the data to extract the coordinates for each SCF. This way you can merge the coordinates back to your source data and create a custom geographical item instead. Something like this I guess:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mapimport datafile="C:\temp\zip3.shp" out=data.zip3;
	id ZIP3;
run;

proc sql;
	create table work.scf_coordiantes as
	select distinct zip3, avg(x) as longitude, avg(y) as latitude
	from data.zip3 group by zip3;
quit;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Falko&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2017 21:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/396697#M8134</guid>
      <dc:creator>FalkoSchulz</dc:creator>
      <dc:date>2017-09-17T21:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397018#M8139</link>
      <description>&lt;P&gt;Hi Falko,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I saw your post about SCFs and yesterday &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;wrote about SCFs in a zip code blog post he wrote. Thought I'd share it in the thread as he&amp;nbsp;has code on how to create the SCFs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2017/09/18/path-of-zip-codes.html" target="_blank"&gt;http://blogs.sas.com/content/iml/2017/09/18/path-of-zip-codes.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards,&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 06:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397018#M8139</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2017-09-19T06:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397107#M8140</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fusion POS Sig Blue Map.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15285i040802C76CF9BD91/image-size/large?v=v2&amp;amp;px=999" role="button" title="Fusion POS Sig Blue Map.jpg" alt="Fusion POS Sig Blue Map.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks everyone.&amp;nbsp; You all have inspired me to the following solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An SCF is the first 3 digits of a zip code.&amp;nbsp;&amp;nbsp;I needed to get a Latitude/Longitude for an SCF.&amp;nbsp; So I took the first and last coordinates of each zipcode in an SCF, divided by 2 and "close enough for my needs" got the geographical center for an SCF and it's associated Lat/Long.&amp;nbsp; These coordinates are used in SAS VA to create a bubble map of the US.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf_zip; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; sashelp.zipcode(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;where&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=(StateCode&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1"&gt;NOT IN (&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"PR"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"FM"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"GU"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"MH"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"MP"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"PW"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;"VI"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;) &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1"&gt;AND ZIP_Class = &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="1"&gt;" "&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1"&gt;scf = substr(put(zip,&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;z5.&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;),&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="1"&gt;,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;3&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf zip x y;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;sort&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="1"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=scf_zip; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;rename&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=(newx=x newy=y)); &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf_zip;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;retain&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; x1 y1 &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; first.scf &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="1"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;x1 = x;&lt;/P&gt;&lt;P&gt;y1 = y;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; last.scf &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="1"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;x2 = x;&lt;/P&gt;&lt;P&gt;y2 = y;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; last.scf &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="1"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1"&gt;newx = sum(x1,x2)/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1"&gt;newy = sum(y1,y2)/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="1"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="1"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; scf newx newy;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 13:24:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397107#M8140</guid>
      <dc:creator>jeninemilum</dc:creator>
      <dc:date>2017-09-19T13:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397271#M8141</link>
      <description>&lt;P&gt;Nice! Glad you got this sorted!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also got inspired and couldn't resist trying out the SCF paths&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;wrote about in the blog shared by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19750"&gt;@MichelleHomes&lt;/a&gt;&amp;nbsp;using SAS Visual Analytics 8.x. After running the code shared in the blog - I submitted the following to create the final network data set for VA:&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 sql;
	create table geo.scf_paths as
	select scf,xx as longitude, yy as latitude, count(zip) as zipcount, statecode,path
	from work.state
	group by scf;
quit;run;

data geo.scf_paths;
	set geo.scf_paths(where=(path ne .)) end=last;

	length scf_source $5 longitude_source 8. latitude_source 8.;
	length scf_target $5 longitude_target 8. latitude_target 8.;
 
	by scf;

	if first.SCF and _n_ gt 1 then do;
	  scf_target = scf;
	  longitude_target = longitude;
	  latitude_target = latitude;
	  output;
	end;

	scf_source = scf;
	longitude_source = longitude;
	latitude_source = latitude;

	if last then do;
   	  scf_target = "";
	  longitude_target = .;
	  latitude_target = .;
	  output;
	end;

   	retain scf_source longitude_source latitude_source;

   	drop scf longitude latitude; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In VA 8.x it renders like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Colored by network community / node size is number of ZIPs" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15302i25B59B6D57BF0AE8/image-size/large?v=v2&amp;amp;px=999" role="button" title="va_us_scf_paths_1.png" alt="Colored by network community / node size is number of ZIPs" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Colored by network community / node size is number of ZIPs&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Colored by US State" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15303i667713BA86A0059E/image-size/large?v=v2&amp;amp;px=999" role="button" title="va_us_scf_paths_2.png" alt="Colored by US State" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Colored by US State&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess once we know the coordinates for SCF's we have a few more options for interesting visualizations!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Falko&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 21:15:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397271#M8141</guid>
      <dc:creator>FalkoSchulz</dc:creator>
      <dc:date>2017-09-19T21:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397285#M8143</link>
      <description>&lt;P&gt;Great to see and thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/48603"&gt;@jeninemilum&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/2917"&gt;@FalkoSchulz&lt;/a&gt; for sharing your visualizations!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Falko - I knew you couldn't resist the temptation once you knew what SCFs were &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 23:02:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397285#M8143</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2017-09-19T23:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397449#M8148</link>
      <description>Am I correct in understanding that you are using the Lat/Long of the first zipcode for the SCF? If you apply some of my logic you can get a more centered Lat/Long for each SCF.</description>
      <pubDate>Wed, 20 Sep 2017 14:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397449#M8148</guid>
      <dc:creator>jeninemilum</dc:creator>
      <dc:date>2017-09-20T14:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: VA 7.4 geomap using SCF</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397613#M8155</link>
      <description>&lt;P&gt;Thanks! Yes, I believe the code at&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;blog &lt;A href="https://blogs.sas.com/content/iml/2017/09/18/path-of-zip-codes.html" target="_self"&gt;post &lt;/A&gt;is pretty basic and just grabs the first ZIP coordinate but probalby sufficient for this small excercise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess if you want to properly determine the SCF's location you probably need to get the boundary data set as per link in my first reply and determine the centroid for each polygon. After all - a SCF is an area not a location. There are various ways to do this including the official SAS/GRAPH&amp;nbsp;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/65389/HTML/default/viewer.htm#p10hx3f0vlu6q3n1k29xnhm1bflx.htm" target="_self"&gt;%CENTROID&lt;/A&gt; macro, one &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15276"&gt;@SanjayM&lt;/a&gt; &lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2015/08/24/a-macro-for-polygon-area-and-center/" target="_self"&gt;wrote &lt;/A&gt;or via SAS/IML as outlined in another &lt;A href="https://blogs.sas.com/content/iml/2016/01/13/compute-centroid-polygon-sas.html" target="_self"&gt;post &lt;/A&gt;from Rick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since VA 7.4 and upcoming VA 8.2 &lt;A href="https://support.sas.com/documentation/cdl/en/vaag/69958/HTML/default/viewer.htm#n0g5kjtnbvsrwbn1lxl2wahyc5du.htm" target="_self"&gt;support custom polygons&lt;/A&gt; - the best solution may however to import the boundary data set and render a regional map &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Falko&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2017 21:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-7-4-geomap-using-SCF/m-p/397613#M8155</guid>
      <dc:creator>FalkoSchulz</dc:creator>
      <dc:date>2017-09-20T21:06:06Z</dc:date>
    </item>
  </channel>
</rss>

