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
/// Forces the geometries into a "2-dimensional mode" so that all output representations will only have the X and Y coordinates
19
+
/// </summary>
20
+
/// <remarks>
21
+
/// See https://postgis.net/docs/manual-3.0/ST_Force2D.html
22
+
/// </remarks>
23
+
/// <param name="geometry">Input geometry</param>
24
+
/// <returns>Geometry in XY mode</returns>
25
+
[Sql.Function("ST_Force2D",ServerSideOnly=true)]
26
+
publicstaticNTSGSTForce2D(thisNTSGgeometry)
27
+
{
28
+
thrownewInvalidOperationException();
29
+
}
30
+
31
+
/// <summary>
32
+
/// 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
33
+
/// </summary>
34
+
/// <remarks>
35
+
/// See https://postgis.net/docs/manual-3.0/ST_Force_3D.html
36
+
/// </remarks>
37
+
/// <param name="geometry">Input geometry</param>
38
+
/// <returns>Geometry in XYZ mode</returns>
39
+
[Sql.Function("ST_Force3D",ServerSideOnly=true)]
40
+
publicstaticNTSGSTForce3D(thisNTSGgeometry)
41
+
{
42
+
thrownewInvalidOperationException();
43
+
}
44
+
45
+
/// <summary>
46
+
/// 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
47
+
/// </summary>
48
+
/// <remarks>
49
+
/// See https://postgis.net/docs/manual-3.0/ST_Force_3DZ.html
50
+
/// </remarks>
51
+
/// <param name="geometry">Input geometry</param>
52
+
/// <returns>Geometry in XYZ mode</returns>
53
+
[Sql.Function("ST_Force3DZ",ServerSideOnly=true)]
54
+
publicstaticNTSGSTForce3DZ(thisNTSGgeometry)
55
+
{
56
+
thrownewInvalidOperationException();
57
+
}
58
+
59
+
/// <summary>
60
+
/// 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
61
+
/// </summary>
62
+
/// <remarks>
63
+
/// See https://postgis.net/docs/manual-3.0/ST_Force_3DM.html
64
+
/// </remarks>
65
+
/// <param name="geometry">Input geometry</param>
66
+
/// <returns>Geometry in XYM mode</returns>
67
+
[Sql.Function("ST_Force3DM",ServerSideOnly=true)]
68
+
publicstaticNTSGSTForce3DM(thisNTSGgeometry)
69
+
{
70
+
thrownewInvalidOperationException();
71
+
}
72
+
73
+
/// <summary>
74
+
/// Forces the geometries into XYZM mode. 0 is tacked on for missing Z and M dimensions.
75
+
/// </summary>
76
+
/// <remarks>
77
+
/// See https://postgis.net/docs/manual-3.0/ST_Force_4D.html
78
+
/// </remarks>
79
+
/// <param name="geometry">Input geometry</param>
80
+
/// <returns>Geometry in XYZM mode</returns>
81
+
[Sql.Function("ST_Force4D",ServerSideOnly=true)]
82
+
publicstaticNTSGSTForce4D(thisNTSGgeometry)
83
+
{
84
+
thrownewInvalidOperationException();
85
+
}
86
+
17
87
/// <summary>
18
88
/// Returns geometry in its normalized/canonical form.
0 commit comments