Hi @mduarte, When you plot a buble map do you actually see those bubles inside the region, i mean can you see state / county map as background or bubles are plotted to a gray background? If you are getting bulbes in a gray background, I suggest you to check the coodirnate system that your original shape file is using. SAS VA works with WSG8. If you need to convert to it, you can use the GPROJECT procedure. proc gproject data=[PROC MAPIMPORT OUTPUT] out=NEW_TABLE from="EPSG:2157" to="EPSG:4326"; id COLUMN_A; run; OR proc gproject data=[PROC MAPIMPORT OUTPUT] out=NEW_TABLE from="+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=0.99982 +x_0=600000 +y_0=750000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs" to="EPSG:4326"; id COLUMN_A; run; * EPSG:4326 = WSG84 Cheers, Marcel
... View more