名称

postgis_srs_codes — 返回与给定机构相关联的 SRS 代码列表。

概要

setof text postgis_srs_codes(text auth_name);

描述

返回给定 auth_name 的所有 auth_srid 的集合。

可用性:3.4.0

Proj 版本 6+

示例

列出与 EPSG 机构相关联的前十个代码。

SELECT * FROM postgis_srs_codes('EPSG') LIMIT 10;

 postgis_srs_codes
-------------------
 2000
 20004
 20005
 20006
 20007
 20008
 20009
 2001
 20010
 20011