本文整理汇总了Python中shapely.geometry.Polygon.srid方法的典型用法代码示例。如果您正苦于以下问题:Python Polygon.srid方法的具体用法?Python Polygon.srid怎么用?Python Polygon.srid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shapely.geometry.Polygon
的用法示例。
在下文中一共展示了Polygon.srid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: replace_lines_to_point
# 需要导入模块: from shapely.geometry import Polygon [as 别名]
# 或者: from shapely.geometry.Polygon import srid [as 别名]
def replace_lines_to_point(line_lyrs, old_point, new_point):
x = old_point[0].coords[0][0]
y = old_point[0].coords[0][1]
buff = Polygon([(x-1, y-1), (x-1, y+1), (x+1, y+1), (x+1, y-1), (x-1, y-1)])
buff.srid = old_point.srid
for line_lyr in line_lyrs:
# get intersection lines
query = line_lyr.feature_query()
#query.intersects(buff)
query.geom()
# replace point in lines
for f in query():
line = f.geom[0]
new_line_points = []
need_reconstruct = False
for vertex in line.coords:
if vertex == old_point[0].coords[0]:
new_line_points.append(new_point[0].coords[0])
need_reconstruct = True
else:
new_line_points.append(vertex)
if need_reconstruct:
new_geom = MultiLineString([new_line_points,])
f.geom = new_geom
line_lyr.feature_put(f)