与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的主要内容,如果未能解决你的问题,请参考以下文章

超融合时序数据库YMatrixDB与PostGIS案例

PostgreSQL和PostGIS常用命令

Postgis 地理函数使用

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

面试常用的代码片段

IOS开发-OC学习-常用功能代码片段整理