ポイントでラインストリングをカットしますか?


10

ラインストリングをポイントでカットする最良の方法をチェックしていました。

シナリオは次のとおりです。たくさんの道​​路があり、交差点でカットされたセグメントが必要です。

例

わかった

  • 線ストリング(ポイントでカットされていない完全な)テーブル

  • st_intersectionポイントテーブル

交差点テーブルでカットされた独立したラインストリングセグメントを取得する必要があります。

私はPostGIS関数を使用していて、いくつかのアプローチを見つけましたが、それらのすべてが何らかの問題を引き起こしています。

これは私がすでにテストしたものです:

1

ラインテーブル:1行、1200行のst_memunionポイントテーブル:1700行(ポイント)

悪い点:本当に多くの時間とメモリのフラッシュが必要です。同時に複数のテーブルを作成できないため、メモリはそれを処理できません。そしてその結果は汚くて厄介です。私に正しい行番号を与える代わりに、後でそれをクリーンアップする必要があります(ここで説明されている交差点でのラインの分割

CREATE TABLE lines_with_messy_result AS (
SELECT
((ST_DUMP(ST_SPLIT(a.geom,b.ix))).geom) as geom
FROM st_union_lines a
INNER JOIN lots_of_points b
ON ST_INTERSECTS(a.geom, b.ix)
);

--then need to clean this up
create table lines_segments_cleaned as (
SELECT DISTINCT ON (ST_AsBinary(geom)) 
geom 
FROM 
lines_with_messy_result
);

この方法のソース/アプローチ:https : //stackoverflow.com/questions/25753348/how-do-i-divide-city-streets-by-intersection-using-postgis


2

同じ線/点テーブル。まだ厄介な結果であり、これをクリーンアップする必要があります。クエリを完了するにはまだ時間がかかります。

--messy table    
Create table messy_lines_segments as 
Select 
row_number() over() as id,
(st_dump(st_split(input.geom, blade.ix))).geom as geom
from st_union_lines input
inner join lots_of_points blade on st_intersects(input.geom, blade.ix);

--then cleaning the messy table
delete from messy_lines_segments a
where exists 
(
select 1 from messy_lines_segments b where a.id != b.id and st_coveredby(b.geom,a.geom)
);

この方法のソース/アプローチ:交点でラインを分割


私はこの関数も見つけました:https : //github.com/Remi-C/PPPP_utilities/blob/master/postgis/rc_Split_Line_By_Points.sql

これはmessy_resultを残さないので、クリーンアップする必要があります。ただし、両側からst_memunionが必要です(linesテーブルとpointsテーブル)。

それは一種です:

create table osm.calles_cortadas_03segmentos_sanluis as (
SELECT result.geom
FROM 
osm.calles_cortadas_01uniones_sanluis AS line, 
osm.calles_cortadas_00intersecciones_sanluis AS point,
rc_split_line_by_points(
input_line:=line.geom
,input_points:=point.ix
,tolerance:=4
) AS result
);

しかし、結果を得るための時間も非常に長いです。また、長いテーブル(1万行、1万4,000ポイント)を試しましたが、メモリ不足の問題が発生しました。

EsriのArcGISも試しましたが、結果も悪いです...

それで、これをPostGIS geom関数で行う最良の方法は何ですか?

つまり、トポロジーに踏み込むことなく。

それともあなたの一番のおすすめは何ですか?


1
許容値が非常に小さいポイントをバッファリングし、バッファ内のポリラインを消去し、新しいエンドポイントをスナップします。。
Michael Stimson、2015

4
それは質問に答えるので、あなたは、答えとして、最終的な更新を置く必要があります
ラファエル

質問に自己回答しても問題ありません。このサイトの追加機能のロックを解除するという評判を得ることができます。
PolyGeo

回答:


5

これが道です!

さて、私はレミ-Cから素晴らしいフィードバックを得ました、そして今これは魅力のように機能します:

これまでで最高の非トポロジーソリューションです。それは本当に速くて簡単です(私がこれを行う方法をたくさんテストしたと信じています):

--please add this function:
https://github.com/Remi-C/PPPP_utilities/blob/master/postgis/rc_split_multi.sql

-- please create a universal sequence for unique id multipurpose
CREATE SEQUENCE select_id
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1
  CYCLE;



-- lines (non st_unioned linestrings, with gist index) : linetable
-- points (non st_unioned points, with gist index) : pointtable

-- first, lines with cuts (pointtable)
create table segment_lines_00 as (
WITH points_intersecting_lines AS( 
   SELECT lines.id AS lines_id, lines.geom AS line_geom,  ST_Collect(points.ix) AS blade
   FROM 
   linetable as lines, 
   pointtable as points
   WHERE st_dwithin(lines.geom, points.ix, 4) = true
   GROUP BY lines.id, lines.geom
)
SELECT lines_id, rc_Split_multi(line_geom, blade, 4)
FROM points_intersecting_lines
);
CREATE INDEX ON segment_lines_00 USING gist(rc_split_multi);


-- then, segments cutted by points
create table segment_lines_01 as (
select 
(ST_Dump(rc_split_multi)).geom as geom,  nextval('SELECT_id'::regclass) AS gid  from segment_lines_00
);
CREATE INDEX ON segment_lines_01 USING gist(geom);

それでおしまい!。


1

さらに、st_split()を使用せずに、独自のメソッドも追加します。

各線について、交差する点があるかどうかを確認します。

はいの場合、私のtemptableは次のようになります。

[line_id, fraction]
[1      , 0       ]
[1      , 0.3     ]
[1      , 1       ]
[2      , 0       ]
[2      , 0.88    ]
[2      , 1       ]
...

ラインIDと、ポイントがラインと交差するラインの長さの割合を含むテーブル。

次に、分数をペアで組み合わせて、新しい切り取り線を作成します

要求:

  • テーブル「ポイント」には、各線の端点が含まれています。
  • ポイントはラインと完全に交差します。

クエリ:

DROP TABLE IF EXISTS temptable;

CREATE TABLE temptable as 
(
    SELECT ST_LineLocatePoint(a.geom,b.geom) as fraction,a.id, a.geom as shape
    FROM lines a, points b
    WHERE st_intersects(a.geom,b.geom)
    UNION
    SELECT 1 as fraction ,a.id, a.geom as shape -- It avoid to get an incomplete line when the original line is circular
    FROM lines a
    ORDER BY a.id, fraction -- important to keep the same order
);

ALTER TABLE temptable  ADD COLUMN gid SERIAL PRIMARY KEY;

DROP TABLE IF EXISTS LINE_SPLIT;
CREATE TABLE LINE_SPLIT AS
(
SELECT b.fend,a.*, ST_LineSubstring(a.shape,a.fstart,b.fend) as geom
FROM
    (
    SELECT *, fraction as fstart FROM temptable
    LIMIT (SELECT COUNT(*) FROM temptable)-1
    ) a,
    (
    SELECT fraction as fend,gid-1 as gid FROM temptable
    OFFSET 1
    ) b
WHERE a.gid = b.gid
AND a.fstart < b.fend
);

ALTER TABLE LINE_SPLIT DROP COLUMN IF EXISTS shape;
DROP TABLE IF EXISTS temptable;

いいね!txs!これもチェックしてください
vlasvlasvlas
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.