与postgis相关的一些常用的sql
Posted 斜月三星一太阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了与postgis相关的一些常用的sql相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章