Separate the projected data set into the CITIESP Annotate data set and the US48P map data set. The annotate observations have STATE values that are greater than 100.


data citiesp us48p;
   set allp;
   if state > 100 then output citiesp;
   else output us48p;
run;