生产环境,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 是很常见的地理转换需求。