You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/flink/Geometry-Functions.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -221,6 +221,7 @@ These functions compute geometric constructions, or alter geometry size or shape
221
221
|[ST_LabelPoint](Geometry-Processing/ST_LabelPoint.md)| Geometry |`ST_LabelPoint` computes and returns a label point for a given polygon or geometry collection. The label point is chosen to be sufficiently far from boundaries of the geometry. For a regular Polygo... | v1.7.1 |
222
222
|[ST_MinimumBoundingCircle](Geometry-Processing/ST_MinimumBoundingCircle.md)| Geometry | Returns the smallest circle polygon that contains a geometry. The optional quadrantSegments parameter determines how many segments to use per quadrant and the default number of segments is 48. | v1.5.0 |
223
223
|[ST_MinimumBoundingRadius](Geometry-Processing/ST_MinimumBoundingRadius.md)| Struct | Returns a struct containing the center point and radius of the smallest circle that contains a geometry. | v1.5.0 |
224
+
|[ST_OffsetCurve](Geometry-Processing/ST_OffsetCurve.md)| Geometry | Returns a line at a given offset distance from a linear geometry. Positive distance offsets to the left, negative to the right. | v1.9.0 |
224
225
|[ST_OrientedEnvelope](Geometry-Processing/ST_OrientedEnvelope.md)| Geometry | Returns the minimum-area rotated rectangle enclosing a geometry. The rectangle may be rotated relative to the coordinate axes. Degenerate inputs may result in a Point or LineString being returned. | v1.8.1 |
225
226
|[ST_PointOnSurface](Geometry-Processing/ST_PointOnSurface.md)| Geometry | Returns a POINT guaranteed to lie on the surface. | v1.2.1 |
226
227
|[ST_Polygonize](Geometry-Processing/ST_Polygonize.md)| Geometry | Generates a GeometryCollection composed of polygons that are formed from the linework of an input GeometryCollection. When the input does not contain any linework that forms a polygon, the function... | v1.6.0 |
Licensed to the Apache Software Foundation (ASF) under one
3
+
or more contributor license agreements. See the NOTICE file
4
+
distributed with this work for additional information
5
+
regarding copyright ownership. The ASF licenses this file
6
+
to you under the Apache License, Version 2.0 (the
7
+
"License"); you may not use this file except in compliance
8
+
with the License. You may obtain a copy of the License at
9
+
10
+
http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+
Unless required by applicable law or agreed to in writing,
13
+
software distributed under the License is distributed on an
14
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+
KIND, either express or implied. See the License for the
16
+
specific language governing permissions and limitations
17
+
under the License.
18
+
-->
19
+
20
+
# ST_OffsetCurve
21
+
22
+
Introduction: Returns a line at a given offset distance from a linear geometry. If the distance is positive, the offset is on the left side of the input line; if it is negative, it is on the right side. Returns null for empty geometries.
23
+
24
+
The optional third parameter `quadrantSegments` controls the number of line segments used to approximate a quarter circle at round joins. The default value is 8.
Copy file name to clipboardExpand all lines: docs/api/snowflake/vector-data/Geometry-Functions.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,7 @@ These functions compute geometric constructions, or alter geometry size or shape
214
214
|[ST_MaximumInscribedCircle](Geometry-Processing/ST_MaximumInscribedCircle.md)| Finds the largest circle that is contained within a (multi)polygon, or which does not overlap any lines and points. Returns a row with fields: |
215
215
|[ST_MinimumBoundingCircle](Geometry-Processing/ST_MinimumBoundingCircle.md)| Returns the smallest circle polygon that contains a geometry. |
216
216
|[ST_MinimumBoundingRadius](Geometry-Processing/ST_MinimumBoundingRadius.md)| Returns two columns containing the center point and radius of the smallest circle that contains a geometry. |
217
+
|[ST_OffsetCurve](Geometry-Processing/ST_OffsetCurve.md)| Returns a line at a given offset distance from a linear geometry. Positive distance offsets to the left, negative to the right. |
217
218
|[ST_OrientedEnvelope](Geometry-Processing/ST_OrientedEnvelope.md)| Returns the minimum-area rotated rectangle enclosing a geometry. The rectangle may be rotated relative to the coordinate axes. Degenerate inputs may result in a Point or LineString being returned. |
218
219
|[ST_PointOnSurface](Geometry-Processing/ST_PointOnSurface.md)| Returns a POINT guaranteed to lie on the surface. |
219
220
|[ST_Polygonize](Geometry-Processing/ST_Polygonize.md)| Generates a GeometryCollection composed of polygons that are formed from the linework of an input GeometryCollection. When the input does not contain any linework that forms a polygon, the function... |
Licensed to the Apache Software Foundation (ASF) under one
3
+
or more contributor license agreements. See the NOTICE file
4
+
distributed with this work for additional information
5
+
regarding copyright ownership. The ASF licenses this file
6
+
to you under the Apache License, Version 2.0 (the
7
+
"License"); you may not use this file except in compliance
8
+
with the License. You may obtain a copy of the License at
9
+
10
+
http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+
Unless required by applicable law or agreed to in writing,
13
+
software distributed under the License is distributed on an
14
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+
KIND, either express or implied. See the License for the
16
+
specific language governing permissions and limitations
17
+
under the License.
18
+
-->
19
+
20
+
# ST_OffsetCurve
21
+
22
+
Introduction: Returns a line at a given offset distance from a linear geometry. If the distance is positive, the offset is on the left side of the input line; if it is negative, it is on the right side. Returns null for empty geometries.
23
+
24
+
The optional third parameter `quadrantSegments` controls the number of line segments used to approximate a quarter circle at round joins. The default value is 8.
Copy file name to clipboardExpand all lines: docs/api/sql/Geometry-Functions.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,6 +223,7 @@ These functions compute geometric constructions, or alter geometry size or shape
223
223
|[ST_MaximumInscribedCircle](Geometry-Processing/ST_MaximumInscribedCircle.md)| Struct | Finds the largest circle that is contained within a (multi)polygon, or which does not overlap any lines and points. Returns a row with fields: | v1.6.1 |
224
224
|[ST_MinimumBoundingCircle](Geometry-Processing/ST_MinimumBoundingCircle.md)| Geometry | Returns the smallest circle polygon that contains a geometry. The optional quadrantSegments parameter determines how many segments to use per quadrant and the default number of segments has been ch... | v1.0.1 |
225
225
|[ST_MinimumBoundingRadius](Geometry-Processing/ST_MinimumBoundingRadius.md)| Struct | Returns a struct containing the center point and radius of the smallest circle that contains a geometry. | v1.0.1 |
226
+
|[ST_OffsetCurve](Geometry-Processing/ST_OffsetCurve.md)| Geometry | Returns a line at a given offset distance from a linear geometry. Positive distance offsets to the left, negative to the right. | v1.9.0 |
226
227
|[ST_OrientedEnvelope](Geometry-Processing/ST_OrientedEnvelope.md)| Geometry | Returns the minimum-area rotated rectangle enclosing a geometry. The rectangle may be rotated relative to the coordinate axes. Degenerate inputs may result in a Point or LineString being returned. | v1.8.1 |
227
228
|[ST_PointOnSurface](Geometry-Processing/ST_PointOnSurface.md)| Geometry | Returns a POINT guaranteed to lie on the surface. | v1.2.1 |
228
229
|[ST_Polygonize](Geometry-Processing/ST_Polygonize.md)| Geometry | Generates a GeometryCollection composed of polygons that are formed from the linework of an input GeometryCollection. When the input does not contain any linework that forms a polygon, the function... | v1.6.0 |
Introduction: Returns a line at a given offset distance from a linear geometry. If the distance is positive, the offset is on the left side of the input line; if it is negative, it is on the right side. Returns null for empty geometries.
25
+
26
+
The optional third parameter `quadrantSegments` controls the number of line segments used to approximate a quarter circle at round joins. The default value is 8.
0 commit comments