Transformation to SRID 3857 is not supported

生产环境,v435bp3,使用地理计算时,建表如下:
create table if not exists ods_zw_scene_cell (
id varchar(255),
province_code int,
city_code int,
county_code int,
polygon_geom geometry not null srid 4326,
month_id varchar(30),
spatial index (polygon_geom)
);

执行 select st_transform(polygon_geom, 3857) from ods_zw_scene_cell;
提示:Transformation to SRID 3857 is not supported
是目前不支持坐标系转换吗?4326 转 3857 是很常见的地理转换需求。

@辞霜

不支持,3857不是地理坐标系是平面坐标系

我数据库存的是 4326坐标系,现在需要转成平面坐标系给前端进行展示,这种应该怎么处理呢?
在 postgis 上是转成 3857,然后压缩成 st_asmvt 压成图层发给前端展示。

目前是不支持的