日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

關(guān)系函數(shù)

本文介紹時空函數(shù)中的關(guān)系函數(shù)。

引擎與版本

關(guān)系函數(shù)僅適用于寬表引擎。無版本要求。

函數(shù)列表

Lindorm Ganos支持的關(guān)系函數(shù)如下表所示。

函數(shù)

說明

ST_Contains

如果Geometry對象A包含Geometry對象B,ST_Contains函數(shù)則返回true。

ST_DWithin

如果兩個Geometry對象的二維平面距離在指定范圍內(nèi),ST_DWithin函數(shù)則返回true。

ST_DWithinSphere

如果兩個Geometry對象的球面距離在指定范圍內(nèi),ST_DWithinSphere函數(shù)則返回true。

ST_Intersects

判斷兩個Geometry對象是否相交。如果兩個Geometry對象有任意共享空間的部分,那么兩個Geometry對象相交,ST_Intersects函數(shù)則返回true。

ST_Overlaps

如果兩個Geometry對象在空間上有重疊的部分,但不存在其中一個完全包含另一個的情況,ST_Overlaps函數(shù)則返回true。

ST_Within

如果Geometry對象A完全在Geometry對象B內(nèi),ST_Within函數(shù)則返回true。

ST_Contains

如果Geometry對象A包含Geometry對象B,ST_Contains函數(shù)則返回true。

語法

  • 判斷對象geomA是否包含對象geomB

    boolean ST_Contains(geometry geomA,geometry geomB)
  • 判斷對象geom和點坐標(x,y)的包含關(guān)系

    boolean ST_Contains(geometry geom,double x,double y)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明
  • geomB對象的所有點均在geomA對象的內(nèi)部或者邊界上,則geomA對象包含geomB對象。

  • ST_Contains函數(shù)是ST_Within的反函數(shù),即ST_Contains(A,B)=ST_Within(B,A)

示例

  • 示例1

    SELECT ST_Contains(ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))'), ST_GeomFromText('POINT(5 5)')) AS iscontain;

    返回結(jié)果:

    +-----------+
    | iscontain |
    +-----------+
    | true      |
    +-----------+
  • 示例2

    SELECT ST_Contains(ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))'),5,5) AS iscontain;

    返回結(jié)果:

    +-----------+
    | iscontain |
    +-----------+
    | true      |
    +-----------+
  • 示例3

    SELECT ST_Contains(ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))'), ST_GeomFromText('POINT(180 23)')) AS iscontain;

    返回結(jié)果:

    +-----------+
    | iscontain |
    +-----------+
    | false     |
    +-----------+
  • 示例4

    SELECT ST_Contains(ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))'),180,23) AS iscontain;

    返回結(jié)果:

    +-----------+
    | iscontain |
    +-----------+
    | false     |
    +-----------+

ST_DWithin

如果兩個Geometry對象的二維平面距離在指定范圍內(nèi),ST_DWithin函數(shù)則返回true。

語法

  • 判斷對象geomA和對象geomB的二維平面距離是否在指定范圍內(nèi)

    boolean ST_DWithin(geometry geomA, geometry geomB, double distanceOfSrid)
  • 判斷對象geom和點坐標(x,y)的二維平面距離是否在指定范圍內(nèi)

    boolean ST_DWithin(geometry geom, double x, double y, double distanceOfSrid)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

distanceOfSrid

在SRID 4326下的距離,單位為degree。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明

Geometry對象支持Point、LineString、Polygon、MultiPoint、MultiLineString、MultiPolygon和GeometryCollection類型。

示例

  • 示例1

    SELECT ST_DWithin(ST_GeomFromText('POINT(5 5)'), ST_GeomFromText('POINT(6 6)'), 10) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+
  • 示例2

    SELECT ST_DWithin(ST_GeomFromText('POINT(5 5)'),6,6,10) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+

ST_DWithinSphere

如果兩個Geometry對象的球面距離在指定范圍內(nèi),ST_DWithinSphere函數(shù)則返回true。

語法

  • 判斷對象geomA和對象geomB的球面距離是否在指定范圍內(nèi)

    boolean ST_DWithinSphere(geometry geomA, geometry geomB, double distance)
  • 判斷對象geom和點坐標(x,y)的球面距離是否在指定范圍內(nèi)

    boolean ST_DWithinSPhere(geometry geom, double x, double y, double distance)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

distance

球面距離,單位為米。球面距離的判斷存在一定的誤差,誤差為厘米級別。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明

Geometry對象支持Point、LineString、Polygon、MultiPoint、MultiLineString、MultiPolygon和GeometryCollection類型。

示例

  • 示例1:球面上POINT(120 36)和POINT(116 40)之間的距離為566034.7930717631米,距離在指定的范圍內(nèi),ST_DWithinSphere函數(shù)則返回true。

    SELECT ST_DWithinSphere(ST_GeomFromText('POINT(120 36)'), ST_GeomFromText('POINT(116 40)'), 570000) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+
  • 示例2

    SELECT ST_DWithinSphere(ST_GeomFromText('POINT(120 36)'),116,40,570000) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+

ST_Intersects

判斷兩個Geometry對象是否相交。如果兩個Geometry對象有任意共享空間的部分,那么兩個Geometry對象相交,ST_Intersects函數(shù)則返回true。

語法

  • 判斷對象geomA和對象geomB的是否相交

    boolean ST_Intersects(geometry geomA, geometry geomB)
  • 判斷對象geom和點坐標(x,y)是否相交

    boolean ST_Intersects(geometry geom, double x, double y)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明

Geometry對象支持Point、LineString、Polygon、MultiPoint、MultiLineString、MultiPolygon和GeometryCollection類型。

示例

  • 示例1

    SELECT ST_Intersects(ST_GeomFromText('POINT(0 0)'), ST_GeomFromText('LINESTRING ( 2 0, 0 2 )')) AS isinter;

    返回結(jié)果:

    +---------+
    | isinter |
    +---------+
    | false   |
    +---------+
  • 示例2

    SELECT ST_Intersects(ST_GeomFromText('LINESTRING ( 2 0, 0 2 )'), 0, 0) AS isinter;

    返回結(jié)果:

    +---------+
    | isinter |
    +---------+
    | false   |
    +---------+
  • 示例3

    SELECT ST_Intersects(ST_GeomFromText('POINT(0 0)'), ST_GeomFromText('LINESTRING ( 0 0, 0 2 )')) AS isinter;

    返回結(jié)果:

    +---------+
    | isinter |
    +---------+
    | true    |
    +---------+
  • 示例4

    SELECT ST_Intersects(ST_GeomFromText('LINESTRING ( 0 0, 0 2 )'), 0, 0) AS isinter;

    返回結(jié)果:

    +---------+
    | isinter |
    +---------+
    | true    |
    +---------+

ST_Overlaps

如果兩個Geometry對象在空間上有重疊的部分,但不存在其中一個完全包含另一個的情況,ST_Overlaps函數(shù)則返回true。

語法

  • 判斷對象geomA和對象geomB在空間上是否有重疊的部分

    boolean ST_Overlaps(geometry geomA, geometry geomB)
  • 判斷對象geom和點坐標(x,y)在空間上是否有重疊的部分

    boolean ST_Overlaps(geometry geom, double x, double y)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明

Geometry對象支持Point、LineString、Polygon、MultiPoint、MultiLineString、MultiPolygon和GeometryCollection類型。

示例

  • 示例1

    SELECT ST_Overlaps(ST_GeomFromText('LINESTRING(0 0,0 2)'),ST_GeomFromText('LINESTRING(0 1,0 3)')) as overlaps;

    返回結(jié)果:

    +----------+
    | overlaps |
    +----------+
    | true     |
    +----------+
  • 示例2

    SELECT ST_Overlaps(ST_GeomFromText('LINESTRING(0 0,0 2)'),ST_GeomFromText('POINT(0 1)')) as overlaps;

    返回結(jié)果:

    +----------+
    | overlaps |
    +----------+
    | false    |
    +----------+
  • 示例3

    SELECT ST_Overlaps(ST_GeomFromText('LINESTRING(0 0,0 2)'), 0, 1) as overlaps;

    返回結(jié)果:

    +----------+
    | overlaps |
    +----------+
    | false    |
    +----------+

ST_Within

如果Geometry對象A完全在Geometry對象B內(nèi),ST_Within函數(shù)則返回true。

語法

  • 判斷對象geomA和對象geomB的包含關(guān)系

    boolean ST_Within(geometry geomA, geometry geomB)
  • 判斷對象geom和點坐標(x,y)的包含關(guān)系

    bboolean ST_Within(double x, double y, geometry geom)

參數(shù)說明

參數(shù)

描述

geomA

指定的第一個Geometry對象。

geomB

指定的第二個Geometry對象。

geom

指定的Geometry對象。

x

坐標經(jīng)度x值。

y

坐標緯度y值。

說明
  • Geometry對象支持Point、LineString、Polygon、MultiPoint、MultiLineString、MultiPolygon和GeometryCollection類型。

  • 如果ST_Within(A,B)的返回結(jié)果與ST_Within(B,A)的返回結(jié)果都為true,則認為Geometry對象A和Geometry對象B在空間上相同。

示例

  • 示例1

    SELECT ST_Within(ST_GeomFromText('POINT(5 5)'), ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))')) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+
  • 示例2

    SELECT ST_Within(5, 5, ST_GeomFromText('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))')) AS iswithin;

    返回結(jié)果:

    +----------+
    | iswithin |
    +----------+
    | true     |
    +----------+