Changes between Version 1 and Version 2 of UsersWikiPostGIS21CentOS6pgdg


Ignore:
Timestamp:
Jan 30, 2014, 7:40:18 AM (10 years ago)
Author:
beland
Comment:

More howto on additional extensions

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS21CentOS6pgdg

    v1 v2  
    8080CREATE EXTENSION postgis_topology;
    8181}}}
     82
     83== Additional extensions ==
     84
     85{{{
     86[root@localhost ~]# yum install postgresql93-contrib
     87}}}
     88
     89will allow you to use more extensions.  For example, you can activate the TIGER geocoder with:
     90
     91{{{
     92postgis=# CREATE EXTENSION fuzzystrmatch;
     93CREATE EXTENSION
     94postgis=# CREATE EXTENSION postgis_tiger_geocoder;
     95CREATE EXTENSION
     96}}}