The SASHELP.GEOEXM data set is installed with SAS. This data set is a street matching data set for Wake County, N.C. For more information, see Obtaining Street Lookup Data Sets.
The SASHELP.GEOEXS data set is installed with SAS. This data set is a street segment data set for Wake County, N.C. For more information, see Obtaining Street Lookup Data Sets.
The SASHELP.GEOEXP data set is installed with SAS. This data set is a street coordinate data set for Wake County, N.C. For more information, see Obtaining Street Lookup Data Sets.
The SASHELP.GCTYPE data set contains standard U.S. Postal Service street type suffixes, such as Avenue and Drive. SASHELP.GCTYPE includes some suffixes that are not in the USPS table but are found in U.S. Census Bureau TIGER/Line data for various U.S. localities. If addresses in your geocoding input data contain unusual or nonstandard suffixes, then create a custom version of this data set that adds those suffixes. The complete list of USPS street types can be found in Appendix C of the USPS Publication 28, Postal Addressing Standards.
The %TIGER2GEOCODE macro program imports TIGER/Line shapefiles from the US Census Bureau and creates the lookup data sets used by PROC GEOCODE’s STREET method. Download this macro program from SAS Maps Online Web site. For more information see SAS Maps Online Web Site.
Obtain the most recent
street lookup data (including segments and coordinates). The nationwide
U.S. lookup data available on SAS Maps Online is updated when the
U.S. Census Bureau releases new TIGER/Line files.
The %TIGER2GEOCODE macro
program imports TIGER/Line shapefiles from the US Census Bureau and
creates the lookup data sets used by PROC GEOCODE’s STREET
method. Download this macro program from SAS Maps Online Web site.
For more information
see SAS Maps Online Web Site.
|
|
Examine the input address
values for observations that do not get a street match. Here are some
common reasons why street matches are not found:
The address processing
code attempts to strip apartment numbers, suite numbers, floor numbers,
mailbox numbers, P.O. box numbers, and other non-street related address
elements. However, depending on how these elements are interspersed
in the address string, the GEOCODE procedure might not remove them.
You might need to remove them yourself.
|
|
Always include the ZIP
code with the input address, if available. If ZIP is omitted, the
city and state values must be used, and they can be misleading.
The city value of a
street segment from the original TIGER data is not the mailing address
city. Instead, it denotes whether that segment is physically within
the corporate limits of a city. A missing city value means that the
street segment is not within any incorporated city.
For example, a house
with a Leon, Iowa mailing address is in an unincorporated portion
of Decatur County, Iowa. The TIGER data for this house might have
a missing city value despite the house having a valid mailing address.
Also, it is not unusual
for a house to be inside one city’s limits but have its mail
delivered from another city’s post office branch. For example,
there are streets near SAS that are within Apex, North Carolina, but
have a Cary, North Carolina mailing address. Specifying the ZIP code
for all input addresses can prevent geocoding problems that result
from this situation.
|
|