Date: Sun, 13 Aug 2006 18:10:09 -0400
Reply-To: Arthur Tabachneck <art297@NETSCAPE.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arthur Tabachneck <art297@NETSCAPE.NET>
Subject: Re: New to GMAP- zip code question
Paula,
The following is a similar example which they use in the SAS Graphic's
course:
goptions reset=all;
proc gmap data=sasdata.summary map=maps.us;
where region='Beaumont';
id state;
block n_jobs / legend=legend1 discrete;
title f=swissl c=orange h=5pct 'Contracts in the Beaumont Region';
legend1 label=('Number of Contracts') frame;
run;
quit;
HTH,
Art
-----------
On Sun, 13 Aug 2006 21:04:33 GMT, Paula Sims <me@HERE.COM> wrote:
>Hello all,
>I am new to PROC GMAP and wanted to find ways to use this "new toy" at
>work. One of the projects I want to do is to find the location of the
>staff (based on their zip codes) and produce a map that would show
>concentrations of staff around the location of the corporate
>headquarters. From what I've begun to read, this is not a simple or
>necessarily accurate distribution. If also, I would also like to add
>distance rings from headquarters out.
>
>Can anyone guide me to any previously written papers that show this type
>of map?
>
>Thanks
>
>Paula
|