This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def cleanAddresses(): | |
print(' * Cleaning Addresses') | |
def IsProblem(value): | |
ex = ['NO.', 'ST. JOSEPH', 'NORTH WAY'] | |
return any(value.find(e) > -1 for e in ex) | |
def SkipName(value): | |
skipNameList = ['RIVER BEND WAY', 'CANYON CREST', 'WATER MILL WAY', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Utah Street Address Locator (Geocoding) Service | |
# AGRC, 20130329 | |
# WHAT? | |
# Geocodes an input table in one of the arcgis-compatible file formats and produces | |
# an new output .csv table with the geocoded results | |
# IMPORTANT NOTES: | |
# | |
# individualized api key will be required in near future, here's how to get one: |