Как удалить короткие изолированные строки с помощью shapely

#python #shapely

#питон #shapely #python

Вопрос:

Я хочу отфильтровать все короткие изолированные строки (например, длина<2) из a MultiLineString . Вывод также является MultiLineString . Для изолированных линий я имею в виду те, которые не соприкасаются и пересекаются с другими.

 from shapely.geometry import MultiLineString
from pprint import pprint
from matplotlib import pyplot
from figures import SIZE, set_limits, plot_line, plot_bounds, color_issimple
from figures import plot_coords as _plot_coords

def plot_coords(ax, ob):
    for line in ob:
        _plot_coords(ax, line, zorder=1)

def plot_lines(ax, ob):
    color = color_issimple(ob)
    for line in ob:
        plot_line(ax, line, color=color, alpha=0.7, zorder=2)

fig = pyplot.figure(1, figsize=SIZE, dpi=90)

#1: line1 original
ax = fig.add_subplot(121)
mline1 = MultiLineString([((0, 0), (2, 0)), ((1, 0), (1, 1)), ((1, 2), (3, 2)),
                          ((3, 0), (3, 1))])


plot_coords(ax, mline1)
plot_bounds(ax, mline1)
plot_lines(ax, mline1)

ax.set_title('a) original')
set_limits(ax, -1, 4, -1, 3)

#2: line2 goal
ax = fig.add_subplot(122)

mline2 = MultiLineString([((0, 0), (2, 0)), ((1, 0), (1, 1)), ((1, 2), (3, 2))])

plot_coords(ax, mline2)
plot_bounds(ax, mline2)
plot_lines(ax, mline2)

ax.set_title('b) goal')
set_limits(ax, -1, 4, -1, 3)

pyplot.show()
  

введите описание изображения здесь

Таким образом, это можно разделить на два подвопроса:

  1. Как выбрать все изолированные строки?
  2. Как отфильтровать эти изолированные строки по длине?

Второй вопрос, вероятно, можно решить следующим образом:

 filtered = [line for line in list(mline1) if line.length<2]
  

Как решить первый вопрос?

Комментарии:

1. Какой тип объекта вы ожидаете получить после слияния? MultiLineString ?

2. Я неправильно понял функцию слияния, теперь я решил этот вопрос

Ответ №1:

Решение:

 from shapely.geometry import MultiLineString
from pprint import pprint
from matplotlib import pyplot
from figures import SIZE, set_limits, plot_line, plot_bounds, color_issimple
from figures import plot_coords as _plot_coords

def plot_coords(ax, ob):
    for line in ob:
        _plot_coords(ax, line, zorder=1)


def plot_lines(ax, ob):
    color = color_issimple(ob)
    for line in ob:
        plot_line(ax, line, color=color, alpha=0.7, zorder=2)


fig = pyplot.figure(1, figsize=SIZE, dpi=90)

# 3: line3 lines that intersecting each other
mline1 = MultiLineString([((0, 0), (2, 0)), ((1, 0), (1, 1)), ((1, 2), (3, 2)),
                          ((3, 0), (3, 1))])
ax = fig.add_subplot(121)

# append all intersecting lines, this will create duplicates for lines
# intersecting more than one line
intersection = []
for i in range(len(mline1)):
    for j in range(i   1, len(mline1)):
        if mline1[i].intersects(mline1[j]):
            intersection.append(mline1[i])
            intersection.append(mline1[j])

# remove duplicates
uniq_intersection = []
for line in intersection:
    if not any(p.equals(line) for p in uniq_intersection):
        uniq_intersection.append(line)

uniq_intersection = MultiLineString(uniq_intersection)
plot_coords(ax, uniq_intersection)
plot_bounds(ax, uniq_intersection)
plot_lines(ax, uniq_intersection)

ax.set_title('c) intersection')
set_limits(ax, -1, 4, -1, 3)

# 4: line4 filtered lines
ax = fig.add_subplot(122)
isolated = [line for line in mline1 if line not in uniq_intersection]

# filter by length
isolated_short = [line for line in isolated if line.length < 2]
filtered = [line for line in mline1 if line not in isolated_short]

filtered = MultiLineString(filtered)
plot_coords(ax, filtered)
plot_bounds(ax, filtered)
plot_lines(ax, filtered)

ax.set_title('d) filtered')
set_limits(ax, -1, 4, -1, 3)

pyplot.show()
  

введите описание изображения здесь