当前位置:Gxlcms > 数据库问题 > 与postgis相关的一些常用的sql

与postgis相关的一些常用的sql

时间:2021-07-01 10:21:17 帮助过:10人阅读

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;

  

与postgis相关的一些常用的sql

标签:column   serial   lines   rom   ext   highlight   des   geo   blog   

人气教程排行