文档解释
ORA-13282: failure on initialization of coordinate transformation
Cause: Parsing error on source or destination coordinate system WKT, or incompatible coordinate systems.
Action: Check the validity of the WKT for table entries, and check if the requested transformation is valid.
ORA-13282表示在坐标转换过程中出现了错误。它出现的原因通常是明显的栅格问题,比如尝试将一个没有参考系统定义的栅格转换到已经定义了参考系统的另一个栅格上。
官方解释
常见案例
正常处理方法及步骤
1.确保从源空间中获取的数据中存在参考系统。
2.确保在目标空间及其关联表中有匹配的参考系统。
3.使用SDO_CS.TRANSFORM函数来完成坐标转换。
4.使用SDO_CS.TRANSFORM_THEN_TRANSLATE函数将用户空间坐标转换为数据库空间坐标系统。