Subset the U.S. map data set by omitting Alaska and Hawaii.
data lower48; set maps.us; if state ne stfips('AK'); if state ne stfips('HI'); run;