2

我尝试使用此查询从我的几何表中获取 MVT 格式

SELECT ST_AsMVT(q)
FROM (
        SELECT
                id_kelurahan,
                nama_kelurahan,
                ST_AsMVTGeom(
                        feature,
                        TileBBox(11, 1150, 1724, 3857),
                        4096,
                        0,
                        false
                ) geom
        FROM kelurahan
        WHERE ST_Intersects(feature, (SELECT ST_Transform(ST_MakeEnvelope(22.1484375, -76.72022329036133, 22.32421875, -76.6797849031069, 4326), 3857)))
) q

如您所见,我使用 Postgis 扩展函数ST_AsMVT()将我的内部查询结果转换为 MVT,但它没有得到预期的结果 (MVT),而是生成了缺少的 libprotobuf-c 错误。我使用的是 MacOSX High Sierra 10.13.1,Postgis 版本 2.4.0。

我已经研究了错误并尝试了一些解决方案

brew install protobuf
brew install protobuf-c

这两个过程都成功结束,没有错误。已经重新启动我的设备,但missing libprotobuf-c错误仍然发生。

4

2 回答 2

2

尝试使用以下命令安装 postgis:

brew install postgis --with-protobuf-c

我上次遇到过这个问题,这在 mac high sierra 上修复了它。

于 2018-02-08T12:29:02.003 回答
1

尝试重新安装 postgis:

brew reinstall postgis --with-protobuf-c
于 2018-09-18T02:10:57.143 回答