本文整理汇总了Python中Point.Point.id方法的典型用法代码示例。如果您正苦于以下问题:Python Point.id方法的具体用法?Python Point.id怎么用?Python Point.id使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Point.Point
的用法示例。
在下文中一共展示了Point.id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: read_vertices
# 需要导入模块: from Point import Point [as 别名]
# 或者: from Point.Point import id [as 别名]
def read_vertices(filename, ):
""" spara resultatet av liknande fråga som denna som csv. X;Y;Z ingen header
select x,y, id /*, sdo_geom.validate_geometry_with_context(y.shape, 0.0005), t1.* */ from setfast.fastomry y
, TABLE(sdo_util.getvertices(
sdo_util.extract(y.shape,1,1)
)) t1
where y.objectid = 34486581
"""
points = []
f = open(filename, 'r')
for row in f.readlines():
if( row[0] == '\n' ):
break
cols = row.split(';')
cols = map(lambda x: float(str.replace(x, ',', '.')), cols)
print cols
p = Point(cols[0], cols[1])
p.id = cols[2]
points.append(p)
segments = []
for p1,p2 in zip(points[:-1], points[1:]):
l = Line(p1,p2)
segments.append(l)
return segments