本文整理匯總了Python中WRCCUtils.point_in_poly方法的典型用法代碼示例。如果您正苦於以下問題:Python WRCCUtils.point_in_poly方法的具體用法?Python WRCCUtils.point_in_poly怎麽用?Python WRCCUtils.point_in_poly使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WRCCUtils
的用法示例。
在下文中一共展示了WRCCUtils.point_in_poly方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: stn_in_poly
# 需要導入模塊: import WRCCUtils [as 別名]
# 或者: from WRCCUtils import point_in_poly [as 別名]
def stn_in_poly(by_type, shape_type, shape,stn_meta):
#convert to floats
s = [float(s) for s in shape]
if shape_type == 'circle':
poly = s
stn_in = WRCCUtils.point_in_circle(stn_meta['ll'][0], stn_meta['ll'][1], poly)
else:
if shape_type in ['bbox','location']:
poly = [(s[0],s[1]), (s[0],s[3]),(s[2],s[3]),(s[2],s[1])]
else:
poly = [(s[2*idx],s[2*idx+1]) for idx in range(len(s)/2)]
stn_in = WRCCUtils.point_in_poly(stn_meta['ll'][0], stn_meta['ll'][1], poly)
if not stn_in:return False
else:return True