PostGIS SRID不存在的问题处理

本文涉及的产品
云原生数据库 PolarDB MySQL 版,Serverless 5000PCU 100GB
云原生数据库 PolarDB 分布式版,标准版 2核8GB
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介:

标签

PostgreSQL , PostGIS , SRID , spatial_ref_sys


背景

GIS数据有一定的标准来表示它的数据,

The OpenGIS "Simple Features Specification for SQL" defines standard GIS object types, 
the functions required to manipulate them, and a set of meta-data tables. 
In order to ensure that meta-data remain consistent, 
operations such as creating and removing a spatial column are carried out through special procedures defined by OpenGIS.

There are two OpenGIS meta-data tables: 
SPATIAL_REF_SYS and GEOMETRY_COLUMNS. 
The SPATIAL_REF_SYS table holds the numeric IDs and textual descriptions of coordinate systems used in the spatial database.

http://www.sharpgis.net/post/2007/05/05/Spatial-references2c-coordinate-systems2c-projections2c-datums2c-ellipsoids-e28093-confusing

当你使用PostGIS时,如果报这样的错误,说明SRID的信息没有写入spatial_ref_sys表,PostgreSQL无法找到合适的GIS数据表达方法。

ERROR: invalid SRID: 5514 not found in spatial_ref_sys  

http://gis.stackexchange.com/questions/187770/change-srid-of-geometry-column

stackoverflow中也有类似的提问

问题

I have in my table column geom with geometry, data type of this column is geometry(Point,102067).   
I want to change SRID from 102067 to 5514, but if I use this command  
  
select UpdateGeometrySRID('my_schema', 'table', 'geom', 5514) ;  
  
docs say: ERROR: invalid SRID: 5514 not found in spatial_ref_sys CONTEXT:   
SQL statement "SELECT UpdateGeometrySRID('',$1,$2,$3,$4)"  
  
I found, that EPSG:5514 = EPSG:102067 (both is S-JTSK_Krovak_East_North),   
but in second table I have EPSG:5514, and for example comand ST_Contains says: Operation on mixed SRID geometries.  

回答

The error happened because EPSG:5514 is no added in spatal_ref_sys table. So you can add it using the following query.  
  
  
INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 5514, 'EPSG', 5514, '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +units=m +no_defs ', 'PROJCS["S-JTSK / Krovak East North",GEOGCS["S-JTSK",DATUM["System_Jednotne_Trigonometricke_Site_Katastralni",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[589,76,480,0,0,0,0],AUTHORITY["EPSG","6156"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4156"]],PROJECTION["Krovak"],PARAMETER["latitude_of_center",49.5],PARAMETER["longitude_of_center",24.83333333333333],PARAMETER["azimuth",30.28813972222222],PARAMETER["pseudo_standard_parallel_1",78.5],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","5514"]]');  
  
  
Source: https://epsg.io/5514  
  
Click on the side menu under PostGIS to see the insert query.  
  
Check if SRID-5514 is inserted using:  
  
SELECT * FROM spatial_ref_sys WHERE srid = 5514;  
Once you have inserted it, you can then change the SRID of your geometry column using the code:  
  
SELECT UpdateGeometrySRID('your_schema', 'table', 'geom', 5514);  
You can then check the change using:  
  
SELECT ST_SRID(geom) FROM table LIMIT 1;  

解决方法也很简单,插入SRS数据即可,找到postgis对应的版本SQL。

https://raw.githubusercontent.com/greenplum-db/postgis/4fefce57cbd28e006db60070434611228294bef3/spatial_ref_sys.sql

参考

http://spatialreference.org/ref/epsg/4326/

http://gis.stackexchange.com/questions/187770/change-srid-of-geometry-column

相关文章
|
7天前
|
存储 Cloud Native 数据挖掘
Ganos
Ganos
21 3
|
5月前
|
关系型数据库
postgis相关插件介绍
postgis相关插件介绍
|
5月前
|
关系型数据库
测试PostGIS是否安装成功
测试PostGIS是否安装成功
|
11月前
|
存储 SQL 关系型数据库
一篇文章带你玩转PostGIS空间数据库 1
一篇文章带你玩转PostGIS空间数据库
|
11月前
|
SQL 存储 算法
一篇文章带你玩转PostGIS空间数据库 2
一篇文章带你玩转PostGIS空间数据库
|
SQL 关系型数据库 数据库
|
SQL 关系型数据库 Unix
|
弹性计算 关系型数据库 PostgreSQL
PostgreSQL PostGIS 性能提升 - by new GEOS代码
标签 PostgreSQL , PostGIS , geos 背景 http://lin-ear-th-inking.blogspot.com/2019/02/betterfaster-stpointonsurface-for.html 使用GEOS新的代码,提升PostGIS重计算的函数性能。 The improved ST_PointOnSurface runs 13 times
718 0
|
关系型数据库 开发工具 PostgreSQL
安装PostGIS-2.1.8
版本: proj-4.8.0.tar.gz geos-3.4.2.tar.bz2 gdal-2.0.1.tar.gz PostGIS-2.1.82.1.8 前提条件: 安装PostGIS之前必须先安装proj,geos,gdal.
1225 0
|
存储 关系型数据库 PostgreSQL
PostgreSQL PostGIS 空间数据约束使用
标签 PostgreSQL , PostGIS , 空间数据约束 背景 空间数据有一定的规范,例如SRID的规范。空间类型geometry包罗万象,除了能存储POINT,还能存储多边形,线段等。 这就带来一个有意思的烦恼,当我们业务不够规范时,你可以往GEOMETRY里面存储任意SRID的数据,存储任意的空间对象。
1199 0