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
/// Insert a point to a LineString at given position(zero based)
35
35
/// </summary>
36
36
/// <remarks>
37
-
/// See https://postgis.net/docs/manual-3.0/ST_AddPoint.html
37
+
/// See https://postgis.net/docs/ST_AddPoint.html
38
38
/// </remarks>
39
39
/// <param name="lineString">Linestring</param>
40
40
/// <param name="point">Point</param>
@@ -50,7 +50,7 @@ public static NTSG STAddPoint(this NTSG lineString, NTSG point, int position)
50
50
/// Given a (multi)geometry, returns a (multi)geometry consisting only of elements of the specified type. If there are no sub-geometries of the right type, an EMPTY geometry will be returned
51
51
/// </summary>
52
52
/// <remarks>
53
-
/// See https://postgis.net/docs/manual-3.0/ST_CollectionExtract.html
53
+
/// See https://postgis.net/docs/ST_CollectionExtract.html
/// <returns>Simplest" representation of the geometry collection</returns>
@@ -79,7 +79,7 @@ public static NTSG STCollectionHomogenize(this NTSG collection)
79
79
/// Forces the geometries into a "2-dimensional mode" so that all output representations will only have the X and Y coordinates
80
80
/// </summary>
81
81
/// <remarks>
82
-
/// See https://postgis.net/docs/manual-3.0/ST_Force2D.html
82
+
/// See https://postgis.net/docs/ST_Force2D.html
83
83
/// </remarks>
84
84
/// <param name="geometry">Input geometry</param>
85
85
/// <returns>Geometry in XY mode</returns>
@@ -93,7 +93,7 @@ public static NTSG STForce2D(this NTSG geometry)
93
93
/// Forces the geometries into XYZ mode. This is an alias for ST_Force_3DZ. If a geometry has no Z component, then a 0 Z coordinate is tacked on
94
94
/// </summary>
95
95
/// <remarks>
96
-
/// See https://postgis.net/docs/manual-3.0/ST_Force_3D.html
96
+
/// See https://postgis.net/docs/ST_Force_3D.html
97
97
/// </remarks>
98
98
/// <param name="geometry">Input geometry</param>
99
99
/// <returns>Geometry in XYZ mode</returns>
@@ -107,7 +107,7 @@ public static NTSG STForce3D(this NTSG geometry)
107
107
/// Forces the geometries into XYZ mode. This is a synonym for ST_Force3DZ. If a geometry has no Z component, then a 0 Z coordinate is tacked on
108
108
/// </summary>
109
109
/// <remarks>
110
-
/// See https://postgis.net/docs/manual-3.0/ST_Force_3DZ.html
110
+
/// See https://postgis.net/docs/ST_Force_3DZ.html
111
111
/// </remarks>
112
112
/// <param name="geometry">Input geometry</param>
113
113
/// <returns>Geometry in XYZ mode</returns>
@@ -121,7 +121,7 @@ public static NTSG STForce3DZ(this NTSG geometry)
121
121
/// Forces the geometries into XYM mode. If a geometry has no M component, then a 0 M coordinate is tacked on. If it has a Z component, then Z is removed
122
122
/// </summary>
123
123
/// <remarks>
124
-
/// See https://postgis.net/docs/manual-3.0/ST_Force_3DM.html
124
+
/// See https://postgis.net/docs/ST_Force_3DM.html
125
125
/// </remarks>
126
126
/// <param name="geometry">Input geometry</param>
127
127
/// <returns>Geometry in XYM mode</returns>
@@ -135,7 +135,7 @@ public static NTSG STForce3DM(this NTSG geometry)
135
135
/// Forces the geometries into XYZM mode. 0 is tacked on for missing Z and M dimensions.
136
136
/// </summary>
137
137
/// <remarks>
138
-
/// See https://postgis.net/docs/manual-3.0/ST_Force_4D.html
138
+
/// See https://postgis.net/docs/ST_Force_4D.html
139
139
/// </remarks>
140
140
/// <param name="geometry">Input geometry</param>
141
141
/// <returns>Geometry in XYZM mode</returns>
@@ -149,7 +149,7 @@ public static NTSG STForce4D(this NTSG geometry)
149
149
/// Forces (Multi)Polygons to use a counter-clockwise orientation for their exterior ring, and a clockwise orientation for their interior rings.Non-polygonal geometries are returned unchanged
150
150
/// </summary>
151
151
/// <remarks>
152
-
/// See https://postgis.net/docs/manual-3.0/ST_ForcePolygonCCW.html
152
+
/// See https://postgis.net/docs/ST_ForcePolygonCCW.html
153
153
/// </remarks>
154
154
/// <param name="geometry">Input geometry</param>
155
155
/// <returns>Geometry with counter-clockwise/clockwise exterior/interior orientaion ring</returns>
@@ -163,7 +163,7 @@ public static NTSG STForcePolygonCCW(this NTSG geometry)
163
163
/// Converts the geometry into a GEOMETRYCOLLECTION
164
164
/// </summary>
165
165
/// <remarks>
166
-
/// See https://postgis.net/docs/manual-3.0/ST_Force_Collection.html
166
+
/// See https://postgis.net/docs/ST_Force_Collection.html
167
167
/// </remarks>
168
168
/// <param name="geometry">Input geometry</param>
169
169
/// <returns>Geometry Collection</returns>
@@ -177,7 +177,7 @@ public static NTSG STForceCollection(this NTSG geometry)
177
177
/// Forces (Multi)Polygons to use a clockwise orientation for their exterior ring, and a counter-clockwise orientation for their interior rings. Non-polygonal geometries are returned unchanged
178
178
/// </summary>
179
179
/// <remarks>
180
-
/// See https://postgis.net/docs/manual-3.0/ST_ForcePolygonCW.html
180
+
/// See https://postgis.net/docs/ST_ForcePolygonCW.html
181
181
/// </remarks>
182
182
/// <param name="geometry">Input geometry</param>
183
183
/// <returns>Geometry with counter-clockwise/clockwise interior/exterior orientaion ring</returns>
@@ -221,7 +221,7 @@ public static NTSG STForceSFS(string geometry)
221
221
/// Forces the orientation of the vertices in a polygon to follow a Right-Hand-Rule, in which the area that is bounded by the polygon is to the right of the boundary. In particular, the exterior ring is orientated in a clockwise direction and the interior rings in a counter-clockwise direction
222
222
/// </summary>
223
223
/// <remarks>
224
-
/// See https://postgis.net/docs/manual-3.0/ST_ForceRHR.html
224
+
/// See https://postgis.net/docs/ST_ForceRHR.html
225
225
/// </remarks>
226
226
/// <param name="geometry">Input geometry</param>
227
227
/// <returns>Geometry with vertices following a Right-Hand-Rule</returns>
@@ -235,7 +235,7 @@ public static NTSG STForceRHR(this NTSG geometry)
235
235
/// Turns a geometry into its curved representation. Lines become compoundcurves, multilines become multicurves, polygons become curvepolygons, multipolygons become multisurfaces. A curved geometry returns back same as input
236
236
/// </summary>
237
237
/// <remarks>
238
-
/// See https://postgis.net/docs/manual-3.0/ST_ForceCurve.html
238
+
/// See https://postgis.net/docs/ST_ForceCurve.html
239
239
/// </remarks>
240
240
/// <param name="geometry">Input geometry</param>
241
241
/// <returns>Geometry with curved representation</returns>
@@ -249,7 +249,7 @@ public static NTSG STForceCurve(this NTSG geometry)
249
249
/// Returns a (set of) LineString(s) formed by sewing together the constituent line work of a MULTILINESTRING(Only use with MULTILINESTRING/LINESTRINGs. If you feed a polygon or geometry collection into this function, it will return an empty GEOMETRYCOLLECTION)
250
250
/// </summary>
251
251
/// <remarks>
252
-
/// See https://postgis.net/docs/manual-3.0/ST_LineMerge.html
252
+
/// See https://postgis.net/docs/ST_LineMerge.html
0 commit comments