Nella documentazione di PostGIS si dice che ci sono due passaggi per creare una tabella spaziale con SQL:
- Crea una normale tabella non spaziale.
- Aggiungi una colonna spaziale alla tabella usando la funzione "AddGeometryColumn" di OpenGIS.
Se seguissi gli esempi, creerei una tabella chiamata in terrain_points
questo modo:
CREATE TABLE terrain_points (
ogc_fid serial NOT NULL,
elevation double precision,
);
SELECT AddGeometryColumn('terrain_points', 'wkb_geometry', 3725, 'POINT', 3 );
In alternativa, se guardo le tabelle esistenti in pgAdmin III , sembra che potrei creare la stessa tabella in questo modo:
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);
Questi due metodi producono lo stesso risultato? La versione basata su pgAdmin III è semplicemente più dettagliata e fa cose che AddGeometryColumn
farebbero di default?