Features: |
OPTIONS statement MAPS= required argument referring to traditional map data DATA= required argument referring to response data FORMAT statement ID statement CHORO statement option STAT= |
Other features: |
SQL procedure |
Data sets: | MAPS.WORLD (map data)
MYDATA (table with subsetted map data) |
Format: | GLCNSM |
Sample library member: | GMPCOUNT |
Note: | This example cannot be run with a GfK map data set. The glc codes are replaced by ISO codes and are not supported for GfK mapping. |
goptions reset=all border;
options fmtsearch=(sashelp.mapfmts);
proc sql; create table mymap as select * from maps.world where put(id,glcnsm.) eq "Bahamas" ; run;
proc gmap map=mymap data=mymap; format id glcnsm.; id id; choro id / stat=first; run; quit;