名称

ST_RotateZ — 绕 Z 轴旋转几何图形。

概要

geometry ST_RotateZ(geometry geomA, float rotRadians);

描述

绕 Z 轴旋转几何图形 geomA - rotRadians。

[Note]

这是 ST_Rotate 的同义词。

[Note]

ST_RotateZ(geomA, rotRadians)SELECT ST_Affine(geomA, cos(rotRadians), -sin(rotRadians), 0, sin(rotRadians), cos(rotRadians), 0, 0, 0, 1, 0, 0, 0) 的简写形式。

增强功能:2.0.0 版本引入了对多面体表面、三角形和 TIN 的支持。

可用性:1.1.2。在 1.2.2 中将名称从 RotateZ 更改为 ST_RotateZ。

[Note]

在 1.3.4 之前,如果此函数与包含曲线 (CURVES) 的几何图形一起使用,则会崩溃。此问题在 1.3.4+ 中已修复。

此函数支持 3D 且不会删除 z 索引。

此方法支持圆弧字符串和曲线。

此函数支持多面体表面。

此函数支持三角形和三角不规则网络表面 (TIN)。

示例

--Rotate a line 90 degrees along z-axis
SELECT ST_AsEWKT(ST_RotateZ(ST_GeomFromEWKT('LINESTRING(1 2 3, 1 1 1)'), pi()/2));
		 st_asewkt
---------------------------
 LINESTRING(-2 1 3,-1 1 1)

 --Rotate a curved circle around z-axis
SELECT ST_AsEWKT(ST_RotateZ(geom, pi()/2))
FROM (SELECT ST_LineToCurve(ST_Buffer(ST_GeomFromText('POINT(234 567)'), 3)) As geom) As foo;

													   st_asewkt
----------------------------------------------------------------------------------------------------------------------------
 CURVEPOLYGON(CIRCULARSTRING(-567 237,-564.87867965644 236.12132034356,-564 234,-569.12132034356 231.87867965644,-567 237))

另请参阅

ST_Affine, ST_RotateX, ST_RotateY