中国境内有一条分界线,将地区划分为南北。我已将此边界绘制为折线格式 shapefile下载链接。
我想将下图中的这些点分为“北”和“南”。Python中是否有任何有用的功能可以实现这一点。
fiona具有point.within函数来测试多边形内/外的点,但我还没有搜索到合适的函数来通过折线划分多个点。
任何建议或提示将不胜感激!
更新
根据Prune提出的宝贵建议,我解决了。提供的代码如下:
from shapely.geometry import shape
from shapely.geometry import LineString
# loading the boundary layer
import fiona
fname = './N-S_boundary.shp'
line1 = fiona.open(fname)
line1 = shape(line1.next()['geometry'])
# set a end point which is the southernmost for all stations.
end_point = (dy[dy['lat']==dy['lat'].min()]['lon'].values[0],dy[dy['lat']==dy['lat'].min()]['lat'].values[0])
# loop all monitoring stations for classification
dy['NS']= np.nan
for i in range(0,len(dy),1):
start_point = (dy['lon'].iloc[i],dy['lat'].iloc[i])
line2 = LineString([start_point, end_point])
if line1.intersection(line2).is_empty:
dy["NS"].iloc[i]='S'
else:
dy["NS"].iloc[i]='N'
color_dict= {'N':'steelblue','S':'r'}
dy['site_color']=dy['NS'].map(color_dict)