Features: |
PLUS4 geocoding method
|
Other features: |
|
Data set: | lookup.zip4 (from SAS MapsOnline) |
Sample library member: | GEOZIP4 |
ZIP+4 - The ZIP and ZIP+4 values were matched. The location is the center of the street segment.
ZIP mean - The ZIP+4 value was not matched and the GEOCODE procedure used the ZIP method where multiple ZIP code matches were averaged.
ZIP - The ZIP+4 value was not matched and the GEOCODE procedure used the ZIP method where a single ZIP code match was found.
City - Neither the ZIP+4 nor the ZIP code were found but the CITY method returned a match.
data customers; infile datalines dlm=','; length name city $32 state $2; input name /* Customer name */ zip /* Customer ZIP Code */ plus4 /* ZIP+4 */ city /* City name */ state; /* State abbreviation */ datalines; J. Cheever Loophole, 27603, 2681, Raleigh, NC Cuthbert J. Twillie, 77450, 3418, Katy, TX Kaspar Gutman, 19808, 1927, Wilmington, DE Dr. Hugo Z. Hackenbush, 19363, 1735, Oxford, PA Charlie Allnut, 28365, 2277, Mount Olive, NC Larson E. Whipsnade, 19963, 1941, Milford, DE Guillermo Ugarte, ., 2208, Bradenton, FL Capt. Geoffrey Spaulding, 19975, 7504, Selbyville, DE Joel Cairo, 19944, 4401, Fenwick Island, DE Charles Blutoski, 19953, 3141, Hartly, DE Rufus T. Firefly, ., ., Wimberley, TX Otis B. Driftwood, 19955, 53, Kenton, , Gordon Miller, 21921, 5335, Elkton, MD ; run;