This repository is about Open Addresses' Ingester software component, including its database (also called "raw database" to distinguish it from the one used for publishing) and APIs. It is named "Ernest", after Ernest Marples who was postmaster general at the time of the introduction of postcodes in the UK. Ernest is part of the solution Open Addresses deployed for the Alpha stage of our services. Read about Ernest here or learn about Open Addresses in general here.
As well as Ruby 2.1.3, you'll also need:
git@github.com:OpenAddressesUK/ernest.git
bundle install
bundle exec rake db:create && bundle exec rake db:migrate
bundle exec rackup
In another Terminal window, run:
bundle exec sidekiq -r ./lib/ernest.rb
Please see our Turbot instance at http://turbot.openaddressesuk.org/
If you want to add addresses to a development instance, you can follow the instructions below
./console
From the console run:
user = User.create(name: "YOUR NAME", email: "YOUR EMAIL")
Still in the console run:
name.api_key
Note this down for future reference.
With the server running, create some JSON in this format. Within the provenance
element, you should record the URL where you obtained the data, as well as the date you executed the code.
You can also optionally pass in geometries for each feature, if you have them. Currently, we only support point data.
{
"addresses": [
{
"address": {
"saon": {
"name": "Flat 1"
},
"paon": {
"name": 3
},
"street": {
"name": "Hobbit Street",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
},
"locality": {
"name": "Hobbiton"
},
"town": {
"name": "The Shire"
},
"postcode": {
"name": "ABC 123",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
}
}
},
"provenance": {
"executed_at": "2014-01-01T13:00:00Z",
"url": "http://www.example.com"
}
}
]
}
The "addresses"
array can contain any number of addresses.
You can then POST
your payload to the app like so (assuming your server is running at http://localhost:9292/)
curl -v -H "Content-Type: application/json" -H "ACCESS_TOKEN: YOUR_API_KEY" -d '{"addresses":[{"address":{"paon":"3","street":"Hobbit Drive","locality":"Hobbitton","town":"The Shire","postcode":"ABC 123"},"provenance":{"executed_at":"2014-01-01T13:00:00Z","url":"http://www.example.com"}}]}' http://localhost:9292/addresses
You should get a 202 Accepted
HTTP response, and your running worker should process the response.
You should provide some information about where your data came from in the provenance
field. You must include a timestamp, and if it came from a URL, you can include the URL:
"provenance": {
"executed_at": "2014-01-01T13:00:00Z",
"url": "http://www.example.com"
}
If it was from user input, use the userInput
field to record the original text:
"provenance": {
"executed_at": "2014-01-01T13:00:00Z",
"userInput": "10 Downing Street, London, SW1A 1AA"
}
You can also provide optional information about who submitted the data, or the code used to create it. processing_script
should refer to a URL that uniquely identifies the code used, for instance a github URL with SHA:
"provenance": {
"executed_at": "2014-01-01T13:00:00Z",
"url": "http://www.example.com",
"processing_script": "https://github.com/OpenAddressesUK/common-ETL/blob/45e73b15815f9ecab75d0513066381dc5ec48a81/CH_Bulk_Extractor.py"
}
Or, you can use a free-text attribution field to give a name or user ID for the submitted, especially in the case of userInput
.
"provenance": {
"executed_at": "2014-01-01T13:00:00Z",
"userInput": "10 Downing Street, London, SW1A 1AA",
"attribution": "Bob Fish <bob@example.com>"
}
You can see your newly added address at http://localhost:9292/addresses
##Licence This code is open source under the MIT license. See the LICENSE.md file for full details.