Hi there, I am trying to import all US zip codes as a shapefile into SAS via the Census Buearu Tiger Lines site found here: 2014 TIGER/Line® Shapefiles: Similar to the example by Dr. Allison found here, except for the whole U.S. rather than just North Carolina: http://robslink.com/SAS/democd17/zcta_info.htm However, after using the code below I get the map output that is attached, it appears to partially work but comes out very small and hard to see: proc mapimport out=Map_Zip datafile="/sas/Shape Files/Zip Code Shapefiles/tl_2014_us_zcta510.shp"; run; data Map_Zip; set Map_Zip; rename geoid10 = ZIP; drop aland10 awater10 classfp10 funcstat10 intptlat10 intptlon10 mtfcc10 zcta5ce10; Statecode = zipstate(geoid10); State = zipfips(geoid10); run; proc gproject data=Map_Zip out=Map_Zip eastlong degrees project=robinson; id ZIP; run; ods listing close; goptions reset=all; ods html5 path = '/sas/' (url=none) file='ZIP.html'; goptions hsize=15in vsize=10in; goptions xpixels=250 ypixels=250; proc gmap data=Map_Zip map=Map_Zip all; where Statecode not in ("AK", "HI", "PR"); id ZIP; choro State / nolegend; run; quit; ODS HTML5 CLOSE; ODS LISTING; I have also tried using the TIGER2GIS macro available on SAS Maps online, but I'm not sure if that's needed and I can't seem to get the macro to accept the required variables, even when using the default values included. Any help is greatly appreciated. Thanks!
... View more