我在 SAS 中有一个地址字符串。我想找出该地址的确切经度和纬度。SAS中有什么方法可以做到吗?我尝试使用 proc geocode 但它没有给我准确的结果-
proc geocode /* Invoke geocoding procedure */
method=STREET /* Specify geocoding method */
data=WORK.CUSTOMERS /* Input data set of addresses */
out=WORK.GEOCODED /* Output data set with X/Y values */
lookupstreet=SASHELP.GEOEXM /* Primary street lookup data set */
attributevar=(TRACTCE00); /* Assign Census Tract to locations */
run;
大多数情况下,它无法为我提供准确的纬度和经度,并返回地址的邮政编码。