martes, 26 de abril de 2016

Instalar PostGIS en Linux Ubuntu 16.04 LTS Xenial Xerus

En esta entrada voy a mostrar el proceso de instalación de PostGIS para base de datos PostgreSQL que añade funcionalidad a objetos Geográficos y Espaciales en PostgreSQL facilitando las consultas geográficas para los software tipo GIS (Geographic Information System).


Instalar PostGIS:


  • Paso 1usuario@linux~$ sudo apt-get install postgis

Configurar PostGIS en Base de Datos PostgreSQL:

La documentación oficial de PostGIS dice que no hay que instalar la extensión de sobre la base de datos llamada postgres, se debe instalar en una base de datos diferente en donde se necesite funcionalidades de objetos geográficos espaciales, para facilitar las cosas usamos el programa PgAdmin3.

Base de Datos

Ejecutar el siguiente SQL sobre la base de datos que se ha creado:


-- Enable PostGIS (includes raster)
CREATE EXTENSION postgis;
-- Enable Topology
CREATE EXTENSION postgis_topology;
-- Enable PostGIS Advanced 3D 
-- and other geoprocessing algorithms
-- sfcgal not available with all distributions
CREATE EXTENSION postgis_sfcgal;
-- fuzzy matching needed for Tiger
CREATE EXTENSION fuzzystrmatch;
-- rule based standardizer
CREATE EXTENSION address_standardizer;
-- example rule data set
CREATE EXTENSION address_standardizer_data_us;
-- Enable US Tiger Geocoder
CREATE EXTENSION postgis_tiger_geocoder;


Con esto ya se agregan las extensiones necesarias de PostGIS sobre una Base de Datos para trabajar con objetos Geográficos Espaciales.

postgis
Extensiones PostGIS

postgis
Base de Datos con PostGIS

No hay comentarios.:

Publicar un comentario