このトピックでは、ST_RelateMatch関数について説明します。 この関数は、交差行列が交差パターンに適合するかどうかをチェックする。
構文
boolean ST_RelateMatch(text intersectionMatrix , text intersectionMatrixPattern);
パラメーター
パラメーター | 説明 |
intersectionMatrix | 指定する交差行列。The intersection matrix that you want to specify. |
intersectionMatrixPattern | 指定する交差パターン。 |
例
デフォルトのパラメーター設定を使用して、交差行列を確認します。
SELECT ST_RelateMatch('FF1F00102', 'FF*******') ;
st_relatematch
----------------
t
(1 row)