Date: Fri, 14 Nov 1997 22:38:16 GMT
Reply-To: David West <DavidAWest@WORLDNET.ATT.NET>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: David West <DavidAWest@WORLDNET.ATT.NET>
Organization: SAS Institute, Inc.
Subject: Re: Formats for FIPS codes
Susanne,
Are you familiar with the ZIPFIPS function? Granted, it isn't a format,
but it will convert a five-character zipcode to its corresponding FIPS
code:
For example:
7 data _null_;
8
9 zipfip=zipfips('32207');
10 put zipfip=;
11 run;
ZIPFIP=12
NOTE: The DATA statement used 0.17 seconds.
Sincerely,
David West <davidawest@worldnet.att.net>
Daood, Susanne L. (Susanne Daood) <daood@MAYO.EDU> wrote in article
<199711142216.QAA29724@vertigo.Mayo.edu>...
> A colleague of mine is trying to use some map data and he
> found a file with FIPS codes for state and county. He would
> like to be able to use the text equivalent of the state and
> county codes on his graphs. I suspect that there is such a file
> or that a format exists to do the conversion. WE have not
> been able to locate one, however. Any help for us????
>
> Susanne Daood
>
> ***********************************************
> * Susanne L. Daood *
> * Lead Analyst/Programmer *
> * Information Services/Statistical Systems *
> * Mayo Clinic *
> * Rochester, MN *
> * daood@mayo.edu *
> * (507) 284-5582 *
> ***********************************************
>
|