Previous Page | Next Page

The GMAP Procedure

Example 10: Rotating and Tilting a Surface Map


Procedure features:

SURFACE statement options:

CONSTANT=

NLINES=

ROTATE=

TILT=

Sample library member: GMPROSUR

[Rotating and Tilting a Surface Map]

This example tilts and rotates the surface map and uses more lines to draw the surface.

 Note about code
goptions reset=all border;
 Note about code
title1 "Population in Europe (2005)";
footnote1 j=r "GMPROSUR";
 Note about code
proc gmap map=maps.europe data=sashelp.demographics;
   id id;
   surface pop / constant=4
                 nlines=100
                 rotate=40
                 tilt=60;
run;
quit;

Previous Page | Next Page | Top of Page