为什么安装Postgis扩展后还是不能使用Postgis功能

Why I still can not use Postgis function after install the Postgis extension

正如标题所言,我的大学建立了数据库,并说已经将 Postgis 扩展添加到数据库中。

但是我还是无法使用Postgis的功能

ERROR: function routing.st_distancesphere(unknown, text) does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 47

您可以运行以下确认您是否安装了postgis

SELECT PostGIS_version();

如果没有安装,您可以使用

安装
CREATE EXTENSION postgis;