Chapter Contents |
Previous |
Next |
The GMAP Procedure |
Procedure features: |
| |||||||||||
Other features: |
| |||||||||||
Data set: | REFLIB.SITES | |||||||||||
Sample library member: | GR19N02 |
A single PATTERN statement uses the REPEAT= option to define an empty map/plot pattern outlined in black for all the map areas.
The example also changes the viewpoint by rotating the map to provide a better view of the northeast states. As a result, the blocks appear shorter.
libname reflib 'SAS-data-library'; libname maps 'SAS-data-library'; goptions reset=global gunit=pct border cback=white colors=(black blue green red) ctext=black ftext=swiss htitle=6 htext=3; |
title1 'Hazardous Waste Site Installations (1997)'; footnote1 j=r 'GR19N02 '; |
pattern9 value=mempty color=black repeat=50; |
legend1 value=(justify=left) label=('Number' justify=left 'of Sites:' position=(middle left)) frame; |
proc gmap map=maps.us data=reflib.sites; id state; block sites / levels=8 shape=cylinder xview=0.75 zview=5 legend=legend1; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.