Introduction
In collaboration with Treasurer/Tax Collector and the Department of Public Health, we have written a restful street address geocoding service available. This page describes the service. We try to follow the OGC geocoding standard which is described here. The service uses EAS addresses. While EAS addresses are bound to the street network, the results will differ significantly from a street network geocoding service. For example, if you try to geocode "100 Main St" using this service, you will get zero candidates. That's because (at the time of this writing) there is no "100 Main St" in EAS. Although there is a street segment that supports "100 Main St" there is no building or proposed building that has that address. Why use EAS geocoding? If you want units or parcels that are associated with an address, this is probably your best bet. EAS addresses are curated and maintained (not mined) and we synchronize the streets and parcels with Dept. of Public Works on a daily basis. To see what EAS address look like, check out the web interface which is here (internal).
Contacts
Contact | Department |
---|---|
Richard Hagner | Treasurer/Tax Collector |
Darrell Ascano | Treasurer/Tax Collector |
Stephanie Cowles | Department of Public Health |
The Request
Here is the URL (DEV) with an example address of "100 Main St":
http://10.250.60.189/geocode/findAddressCandidates/?f=json&Address=115%20Main%20St&Zip=94105
The the URL is case sensitive.
The Response
We currently support JSON. Here is an example.
{ "spatialReference": { "wkid": 4326 }, "candidates": [ { "address": "115 MAIN ST", "location": { "y": 37.79152826999239, "x": -122.39400753158013 }, "score": 100, "attributes": { "base_address_num": 115, "base_address_suffix": null, "street_name": "MAIN", "street_type": "ST", "zipcode": "94105", "parcels": [ { "address_base_flg": true, "blk_lot": "3717012", "unit_num": null }, { "address_base_flg": true, "blk_lot": "3717013", "unit_num": null } ], "units": [] } } ] }
Results and Performance
We are still waiting for results and comments from Stephanie - thanks Stephanie!
The service will geocode about 1000 addresses per minute.
Technical Details
The tests are over here.
Example URLs and Response
A simple case:
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=115 Main St&Zip=94105
You can leave out the zip code if you want
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=115 Main St
This one has lots of parcels...
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=2655 Hyde
This one has lots of parcels and lots of units...
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=1000 Pine
Example Client
Here is an example client written in python.
Add Comment