Project the ALL data set. The DATA= option specifies the data set to be projected. The OUT= option 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;