| Features: |
ID statement |
| Sample library member: | GPJDEFLT |
US48 Data Set
OBS STATE SEGMENT DENSITY X Y
1 1 1 3 1.48221 0.56286
2 1 1 3 1.48226 0.56234
3 1 1 3 1.48304 0.56231
.
.
.
US48PROJ Data Set
OBS X Y DENSITY STATE SEGMENT
1 0.16068 -0.073470 3 1 1
2 0.16069 -0.073993 3 1 1
3 0.16004 -0.074097 3 1 1
.
.
.goptions reset=all border;
data us48; set maps.states; if state ne 2 and state ne 15 and state ne 72; run;
title "United States Map";
pattern value=mempty color=blue;
proc gmap map=us48 data=us48 all density=4; id state; choro state / nolegend levels=1; run;
proc gproject data=us48
out=us48proj;
id state;
run;
proc gmap map=us48proj
data=us48proj all density=4;
id state;
choro state / nolegend levels=1;
run;
quit;