data-services/geocoder/extension
2015-11-03 12:35:16 +01:00
..
expected Moving admin0 to common extension dir (WIP) 2015-11-03 11:33:48 +01:00
sql Split into header and admin0 2015-11-03 11:31:47 +00:00
.gitignore First version of viable Makefile 2015-11-03 11:15:19 +00:00
cdb_geocoder.control First version of viable Makefile 2015-11-03 11:15:19 +00:00
Makefile Split into header and admin0 2015-11-03 11:31:47 +00:00
README.md Removing admin0 mentions in README 2015-11-03 12:35:16 +01:00

CartoDB geocoder extension

Postgres extension for the CartoDB geocoder. It is meant to contain the functions and related objects needed to provide a geocoding service for administrative areas of level 0, administrative areas of level 1, postal codes, IP addresses and city names. It is not meant to contain the actual data used to geocode them.

Dependencies

This extension is thought to be used on top of CartoDB platform. Therefore a cartodb user is required to install the extension onto it.

The following is a non-comprehensive list of dependencies:

  • Postgres 9.3+
  • Postgis extension
  • Schema triggers extension
  • CartoDB extension

Installation into the db cluster

This requires root privileges

sudo make all install

Execute tests

PGUSER=postgres make installcheck

Install onto a user's database

psql -U development_cartodb_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f cartodb_dev_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f_db

and then:

CREATE EXTENSION cdb_geocoder;

The extension creation in the user's db does not require special privileges. It can be even created from the sql api.