名称

ST_TransScale — 通过给定的偏移量和因子对几何图形进行平移和缩放。

概要

geometry ST_TransScale(geometry geomA, float deltaX, float deltaY, float XFactor, float YFactor);

描述

使用 deltaX 和 deltaY 参数平移几何图形,然后使用 XFactor 和 YFactor 参数进行缩放,仅在 2D 空间中进行操作。

[Note]

ST_TransScale(geomA, deltaX, deltaY, XFactor, YFactor)ST_Affine(geomA, XFactor, 0, 0, 0, YFactor, 0, 0, 0, 1, deltaX*XFactor, deltaY*YFactor, 0) 的简写形式。

[Note]

在 1.3.4 之前,如果此函数用于包含 CURVES 的几何图形,则会崩溃。此问题在 1.3.4+ 中已修复。

可用性:1.1.0。

此函数支持 3D,不会丢弃 z 轴索引。

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

示例

SELECT ST_AsEWKT(ST_TransScale(ST_GeomFromEWKT('LINESTRING(1 2 3, 1 1 1)'), 0.5, 1, 1, 2));
		  st_asewkt
-----------------------------
 LINESTRING(1.5 6 3,1.5 4 1)


--Buffer a point to get an approximation of a circle, convert to curve and then translate 1,2 and scale it 3,4
  SELECT ST_AsText(ST_Transscale(ST_LineToCurve(ST_Buffer('POINT(234 567)', 3)),1,2,3,4));
														  st_astext
------------------------------------------------------------------------------------------------------------------------------
 CURVEPOLYGON(CIRCULARSTRING(714 2276,711.363961030679 2267.51471862576,705 2264,698.636038969321 2284.48528137424,714 2276))

另请参阅

ST_Affine, ST_Translate