Procedure features: |
PROC GPROJECT
options:
|
|
POLELAT= |
|
POLELONG= |
|
PROJECT= | | |
|
Sample library member: |
GPJEMPHS
|
This
example uses the gnomonic projection method to
create a map in which the east coast of the United States appears disproportionately
large compared to the west coast.
|
goptions reset=all border; |
|
data us48;
set maps.states;
if state ne 2 and state ne 15 and state ne 72;
if density<4;
run; |
|
proc gproject data=us48
out=skew
project=gnomon
polelong=160
polelat=45;
id state;
run; |
|
title "United States Map";
footnote j=r "GPJEMPHS "; |
|
pattern value=mempty color=blue; |
|
proc gmap map=skew data=skew all;
id state;
choro state / nolegend levels=1;
run;
quit; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.