dataservices-api/client
2016-02-04 20:07:34 +01:00
..
renderer Moved the interface renderer logic to the client 2016-02-04 20:07:34 +01:00
sql Added automatic generated files warning header 2016-02-04 10:38:12 +01:00
test Change the signature name for the geocoder street point function 2016-01-26 16:22:28 +01:00
.gitignore Tests and interfaces versioned 2016-01-22 13:05:33 +01:00
cdb_geocoder_client--0.0.1--0.1.0.sql Change the signature name for the geocoder street point function 2016-01-26 16:22:28 +01:00
cdb_geocoder_client--0.0.1.sql Add schema for the get config function 2016-01-22 16:30:38 +01:00
cdb_geocoder_client--0.1.0--0.0.1.sql Change the signature name for the geocoder street point function 2016-01-26 16:22:28 +01:00
cdb_geocoder_client.control Change client version to 0.1.0 2016-01-22 10:40:44 +01:00
Makefile Moved the interface renderer logic to the client 2016-02-04 20:07:34 +01:00
README.md Update README.md 2015-12-23 16:00:51 +01:00

CartoDB geocoder API client extension

Postgres extension for the CartoDB geocoder API, client side.

Dependencies

This extension is thought to be used on top of CartoDB geocoder extension, for the multiples available geocoders (internal, nokia, etc).

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

Build, install & test

One-liner:

sudo PGUSER=postgres make all install installcheck

Install onto a cartodb user's database

psql -U postgres cartodb_dev_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f_db

and then:

CREATE EXTENSION cdb_geocoder_client;

The extension creation in the user's db requires superuser privileges.