码迷,mamicode.com
首页 > 数据库 > 详细

与postgis相关的一些常用的sql

时间:2017-05-12 14:55:22      阅读:301      评论:0      收藏:0      [点我收藏+]

标签: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;

  

与postgis相关的一些常用的sql

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

原文地址:http://www.cnblogs.com/lwmp/p/6845509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!