The GEOCODE Procedure |
Procedure features: |
| |||
Sample library member: | GEOVARS |
The following example illustrates using the ATTRIBUTEVAR= option to add additional variables (from the lookup data set) to the output data set. The example also illustrates using the DATA= option to specify an input address data set.
The following output from PROC PRINT shows the output data set after running the GEOCODE procedure. Notice that the following variables have been added to the output data set:
location coordinate variables X and Y from the lookup data set (SASHELP.ZIPCODE)
a variable named _MATCHED_ indicating whether the location was found by matching ZIP codes or by matching City and State (or whether no location was found because no match was made)
a variable named STATENAME from the lookup data set (that contains the full name of the state or territory)
a variable named COUNTYNM from the lookup data set (that contains the name of the county or parish)
The attribute variables STATENAME and COUNTYNM are missing where the value for _MATCHED_ is "None." The attribute variables are also missing where _MATCHED_ is "City mean"--these observations were matched with multiple city-and-state observations in the lookup data set, so the correct values for the attribute variables cannot be determined.
The GEOCODED_CUSTOMERS Data Set with Additional Variables
X Y _MATCHED_ STATENAME COUNTYNM address zip -118.398 34.0695 City mean 555 Junk Street 99999 -75.532 39.1500 ZIP Delaware Kent 115 E. Water St 19901 -75.570 39.0953 ZIP Delaware Kent 760 Moose Lodge Road 19934 -75.549 39.7366 ZIP Delaware New Castle 200 S. Madison Str 19801 -75.669 39.7317 ZIP Delaware New Castle 4701 Limestone Road 19808 -75.961 39.7877 ZIP Pennsylvania Chester 2117 N 4th St 19363 . . None 1313 Mockingbird Lane . -75.081 38.7265 ZIP Delaware Sussex 133 Silver Lake Dr 19971 -75.432 38.9035 ZIP Delaware Sussex 11 SE Front Street 19963 -75.611 38.6387 City Delaware Sussex 402 Nylon Boulevard . -75.606 39.2912 City Delaware Kent 363 E Commerce St . -75.150 38.4663 ZIP Delaware Sussex 5595 Polly Branch Rd 19975 -75.053 38.4593 ZIP Delaware Sussex 1209 Coastal Highway 19944 -75.693 39.1509 ZIP Delaware Kent 2899 Arthursville Rd 19953 . . None 41 Bramhall St . -75.574 38.4557 City Delaware Sussex 9320 Old Racetrack Rd . -75.666 39.2282 ZIP Delaware Kent 281 W Commerce Str 19955 -75.850 39.6264 ZIP Maryland Cecil 211 Blue Ball Road 21921 -75.567 39.0695 ZIP Delaware Kent 3893 Turkey Point Rd 19980
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.