我有一个文本文件包含如下信息:
Grid Point Index, Latitude, Longitude, Cell
167, 0.000000, 9.432301, 1350
169, 0.000000, 9.544590, 1350
171, 0.000000, 9.656878, 1350
173, 0.000000, 9.769168, 1350
175, 0.000000, 9.881457, 1350
177, 0.000000, 9.993747, 1350
179, 0.000000, 10.106036, 1386
181, 0.000000, 10.218326, 1386
我想找出这个纬度和经度的相应网格点和单元格:0.000000、11.902665。好吧,我可以手动完成,但这需要很多时间。可以肯定的是,没有与我的输入相对应的确切坐标,所以我想要文件中最接近输入的坐标。谁能帮我建立这个功能
insert lat and long
然后会在文件中找到最近的lat-long和对应的网格点索引和单元格
读取文件
das= read.table("C:\\Users\\lonlatnter.txt", sep=",",header=TRUE)