BookmarkSubscribeRSS Feed
sasquatch
Calcite | Level 5

Hello,

 

I am trying to create a map of the US showing only state and MSA (metropolitan statistical area) boundaries, using county-level data (maps.uscounty). I am currently using a guide to help me, but am still having difficulty (see link below) http://www2.sas.com/proceedings/sugi29/251-29.pdf

 

I was able to create an MSA variable (which combines several counties) and merge it with the map file based on county ID. In concert with the GREMOVE procedure, this should remove the barriers between counties within MSAs. However, when I invoke GMAP, it looks distorted. 

 

So then I try GPROJECT, which should correct the distortion, but then it tells me that I have data on both sides of the equator (see error message below).

 

NOTE: PARALLEL1 = -4.960619304.
NOTE: PARALLEL2 = 8.0288480358.
ERROR: Standard parallels lie on opposite sides of the equator.
ERROR: Equator is too close to the median latitude of the map data set for default parallel calculation. Try specifying PARALLEL1
and PARALLEL2 values explicitly.

 

However, that can't be the case, because I am only using US data. Oddly, when I look at the SAS projected latitude in the SAS provided map files, there are negative latitude values. I am not sure what to think. 

 

I am able to graph the data just fine (at the county level) before GREMOVE, but after that it all becomes distorted. Any ideas? 

See code below:

 

 

proc sort data=MSA_MAP;
by msa;
run;
proc gremove
data=MSA_MAP
out=MSA_MAP_1;
by msa;
id county;
run;
proc gproject
data=MSA_MAP_1
out=MSA_MAP_2;
id msa;
run;
pattern v=e;
proc gmap
data=MSA_MAP_2
map=MSA_MAP_2
all;
id msa;
choro Phys_Den_Tot_MD / discrete coutline=black;
format Phys_Den_Tot_MD Phys_Den_Tot_MD_.;
run;
 

 

 

 

 

6 REPLIES 6
PGStats
Opal | Level 21

maps.uscounty X and Y positions are already projected coordinates, you cannot project them again. Try using the mapsgfk.us_counties dataset which has LAT and LONG (unprojected) coordinates instead.

PG
sasquatch
Calcite | Level 5

Okay, so I tried this approach but the gproject function apparently only works for radian coordinates. The mapsgfk.us_counties has clyndrical coordinates, which doesn't project with gproject (as it is an experimental procedure). If there was a county-level map with un-projected radian coordinates, I think I could do it successfully. Alternatively, I did map the mapsgfk.us_counties data and got a correct map without the lines, but it was distorted. If there were someway to project it (as it has clyndrical coordinates) I think it would work. 

 

I also tried proc greduce, per recommendation from another SAS community forum, but that didn't work either. 

 

When I use the projected uscounties data, I get the following image (see attached). You will note in a few areas there are lines between counties/MSAs. They are not even adjacent counties/MSAs, often several states away. I used the proc gremove to remove the county boundaries within MSAs - converting counties to MSAs where possible. These lines seem to appear only after this procedure is done. 

 

I may not have all the terminology down, so hopefully I am explaining this correctly. 

 

Other possible ways to get this to work? Any advice would be greatly appreciated! Thanks!

GraphGuy
Meteorite | Level 14

Probably the quickest/easiest most direct replacement would be using the unprojected maps.counties, rather than the projected maps.uscounty.

 

One problem though, when projecting the map on your own, is that Alaska and Hawaii will be in their 'proper' location, rather than moved & re-sized to fit in the bottom/left corner of the map.

 

I'm thinking this "should" work ok using already-projected maps.uscounty (without re-projecting it). Could you provide some more info about how it looks 'distorted'?

sasquatch
Calcite | Level 5
Hi Robert, please see my post above. Thanks!
sasquatch
Calcite | Level 5
The lines I am referring to are a bit hard to see unless you zoom in. The most noticeable is the line on the far right.
GraphGuy
Meteorite | Level 14

Perhaps rather than trying to create a MSA map from the counties map, you could re-use this example:

http://robslink.com/SAS/democd94/us_msa_robots_info.htm

 

Which I used in this blog:

https://blogs.sas.com/content/sastraining/2017/08/17/mapping-out-the-next-robot-invasion/

 

 

robots_msa.png

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1298 views
  • 1 like
  • 3 in conversation