ST_AsGeoJson(geography) returns text ST_Distance(geography, geography) returns double ST_DWithin(geography, geography, float8) returns boolean ST_Area(geography) returns double ST_Length(geography) returns double ST_Covers(geography, geography) returns boolean ST_CoveredBy(geography, geography) returns...
ST_AsGeoJson(geography) returnstext ST_Distance(geography, geography) returnsdouble ST_DWithin(geography, geography, float8) returnsboolean ST_Area(geography) returnsdouble ST_Length(geography) returnsdouble ST_Covers(geography, geography) returnsboolean ST_CoveredBy(geography, geography) returnsboolean S...
ST_AddPoint—将点添加到LineString。 ST_CollectionExtract—给定(多)几何,返回仅由指定类型的元素组成的(多)几何。 ST_CollectionHomogenize—给定几何集合,返回内容的“最简单”表示形式。 ST_CurveToLine—将包含曲线的几何转换为线性几何。 ST_FlipCoordinates—返回X和Y轴已翻转的几何版本。 ST_Force2D—将几何...
ST_Distance —返回两个几何或地理值之间的距离。 ST_3DDistance —以投影单位返回两个几何之间的3D笛卡尔最小距离(基于空间参考)。 ST_DistanceSphere —使用球形地球模型返回两个lon / lat几何之间的最小距离(以米为单位)。 ST_DistanceSpheroid —使用球形地球模型返回两个lon / lat几何之间的最小距离。 ST_Fr...
ST_Covers(geography, geography)returnsboolean ST_CoveredBy(geography, geography)returnsboolean ST_Intersects(geography, geography)returnsboolean ST_Buffer(geography, float8)returnsgeography[1] ST_Intersection(geography, geography)returnsgeography[1]
ST_Collect—从一组几何创建一个GeometryCollection或Multi *几何。 ST_LineFromMultiPoint—从MultiPoint几何图形创建LineString。 ST_MakeEnvelope—从最小和最大坐标创建一个矩形Polygon。 ST_MakeLine—从Point,MultiPoint或LineString几何形状创建线串。
ST_Covers— Returns 1 (TRUE) if no point in Geometry B is outside Geometry A ST_CoveredBy—如果几何/地理A中的任何点都不在几何/地理B之外,则返回1(TRUE) ST_CoveredBy— Returns 1 (TRUE) if no point in Geometry/Geography A is outside Geometry/Geography B ...
这个函数类似于ST_Within(geometry B, geometryA) 不使用索引可以用_ST_Contains. ST_Covers(geometry A, geometry B) 如果几何空间对象B中的所有点都在空间对象A中,则返回 TRUE。 不要使用GeometryCollection作为参数。 不使用索引可以用_ST_Covers.
这个函数类似于ST_Within(geometry B, geometryA) 不使用索引可以用_ST_Contains. ST_Covers(geometry A, geometry B) 如果几何空间对象B中的所有点都在空间对象A中,则返回 TRUE。 不要使用GeometryCollection作为参数。 不使用索引可以用_ST_Covers.
ST_Covers(A, B) 返回 TRUE 如果几何对象 A 覆盖了几何对象 B,即 B 的所有部分都被 A 覆盖,但不要求 A 必须完全包含 B。允许 A 和 B 的边界重合。 A 可以包含 B 的所有部分(包括边界),但是不一定要求 A 完全包含 B,而且 A 和 B 可以共享边界。