标签:column serial lines rom ext highlight des geo blog
create table NODES (ID SERIAL not null,geometry geography(POINTZ, 4326) null); create table EDGES (ID SERIAL not null,geometry geography(LINESTRINGZ, 4326) null); insert into nodes(geometry) values(ST_GeographyFromText(‘SRID=4326; POINT(-110 30 40)‘)); insert into edges(geometry) values(ST_GeographyFromText(‘SRID=4326; LINESTRING(-110 30 40,11 22 33)‘)); alter table public.nodes alter column geometry set data type geography(PointZ,4326); select ST_AsText(geometry) from nodes; select ST_AsText(geometry) from edges;
标签:column serial lines rom ext highlight des geo blog
原文地址:http://www.cnblogs.com/lwmp/p/6845509.html