/* prctyan.sas project boundaries in the county annotate boundary file */ /* L. Hoyle */ libname ct '/homed/counties'; data ctrad; set ct.cbndsano; x=x*arcos(-1)/180; y=y*arcos(-1)/180; proc gproject data=ctrad out=ct.canoproj east; id county; run;