En el PostGIS la documentación dice que hay dos pasos para crear una tabla espacial con SQL:
- Crear una normal de no-espacial de la tabla.
- Agregar una columna espacial a la mesa con el OpenGIS "AddGeometryColumn" de la función.
Si he seguido los ejemplos, me gustaría crear una tabla llamada terrain_points
como este:
CREATE TABLE terrain_points (
ogc_fid serial NOT NULL,
elevation double precision,
);
SELECT AddGeometryColumn('terrain_points', 'wkb_geometry', 3725, 'POINT', 3 );
Alternativamente, si miro las tablas existentes en pgAdmin III, me parece que se podría crear la misma tabla como esta:
CREATE TABLE terrain_points
(
ogc_fid serial NOT NULL,
wkb_geometry geometry,
elevation double precision,
CONSTRAINT terrain_points_pk PRIMARY KEY (ogc_fid),
CONSTRAINT enforce_dims_wkb_geometry CHECK (st_ndims(wkb_geometry) = 3),
CONSTRAINT enforce_geotype_wkb_geometry CHECK (geometrytype(wkb_geometry) = 'POINT'::text OR wkb_geometry IS NULL),
CONSTRAINT enforce_srid_wkb_geometry CHECK (st_srid(wkb_geometry) = 3725)
)
WITH (
OIDS=FALSE
);
ALTER TABLE terrain_points OWNER TO postgres;
-- Index: terrain_points_geom_idx
-- DROP INDEX terrain_points_geom_idx;
CREATE INDEX terrain_points_geom_idx
ON terrain_points
USING gist
(wkb_geometry);
Hacer estos dos métodos producen el mismo resultado? Es la versión basada en pgAdmin III simplemente más detallado, y hacer las cosas que AddGeometryColumn
lo haría por defecto?
Gracias.