Project the ALL data set. DATA= specifies
the data set to be projected. OUT= specifies the name of the new projected
data set that is created. The ID statement identifies the variable in the
input map data set that defines map areas.
proc gproject data=all
out=allp
project=gnomon
polelong=160
polelat=45;
id state;
run;