Error HandlingΒΆ
python-geoclient will raise a GeoclientError when the Geoclient API returns an error code. Sometimes there is more
information returned, in which case the exception will have a result dictionary.
from geoclient import GeoclientError
try:
g.address(125, 'wort st', 1)
except GeoclientError as e:
print(e) # 'WORT STREET' NOT RECOGNIZED. THERE ARE 010 SIMILAR NAMES.
print(e.result['streetName1']) # WORTH SQUARE
In this case, you can easily iterate all similar names:
from geoclient import GeoclientError
try:
g.address(125, 'wort st', 1)
except GeoclientError as e:
print(e) # 'WORT STREET' NOT RECOGNIZED. THERE ARE 010 SIMILAR NAMES.
print(e.result['numberOfStreetCodesAndNamesInList']) # 10
# iterate similar names
for x in range(int(e.result['numberOfStreetCodesAndNamesInList'])):
print(e.result['streetName{}'.format(x + 1)])
- Some other things to know:
- The
GeoclientErrorwill not be raised from the results of thesearchmethod. - Even if your geocode succeeds, the
messageormessage2values can still provide useful information pertaining to your results.
- The