Changes between Version 1 and Version 2 of UsersWikiPostGIS21CentOS6pgdg
- Timestamp:
- 01/30/14 07:40:18 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiPostGIS21CentOS6pgdg
v1 v2 80 80 CREATE EXTENSION postgis_topology; 81 81 }}} 82 83 == Additional extensions == 84 85 {{{ 86 [root@localhost ~]# yum install postgresql93-contrib 87 }}} 88 89 will allow you to use more extensions. For example, you can activate the TIGER geocoder with: 90 91 {{{ 92 postgis=# CREATE EXTENSION fuzzystrmatch; 93 CREATE EXTENSION 94 postgis=# CREATE EXTENSION postgis_tiger_geocoder; 95 CREATE EXTENSION 96 }}}