R - 过滤器坐标 [英] R - filter coordinates

查看:26
本文介绍了R - 过滤器坐标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是 R 的新手,我有一个简单的问题(我认为),但到目前为止我还没有找到解决方案.我有一组(长)2D (x,y) 坐标 - 只是 2D 空间中的点,如下所示:

I am new to R and I have a simple problem (by my opinion) but I haven't found a solution so far. I have a (long) set of 2D (x,y) coordinates - just points in 2D space, like this:

ID  x   y
1   1758.56 1179.26
2    775.67 1197.14
3   296.99  1211.13
4   774.72  1223.66
5   805.41  1235.51
6   440.67  1247.59
7   1302.02 1247.93
8   1450.4  1259.13
9   664.99  1265.9
10  2781.05 1291.12
etc.....

如何过滤特定区域(任何形状!)中的点(表格中的行)?如何过滤指定坐标子集中的点.如何指定需要/不需要的区域子集?以及如何将其放入 R 中?:)提前很多!

How do I filter points (rows in the table) that are in certain area (of any shape!)? How to filter dots that are within a subset of specified coordinates. How do I specify the wanted/unwanted area subsets? And how to put it in R? :) Thx a lot in advance!

推荐答案

要检查点是否在任何类型的形状内,请使用 splancs 包的 inpip 函数.

To check if points are inside a shape of any kind use the inpip function of the splancs package.

library(splancs)

set.seed(123)
my.shape <- matrix(runif(10), 5)
my.points <- data.frame(x=runif(500), y=runif(500))
my.points$in.shape <- 1:500 %in% inpip(my.points, my.shape)

plot(my.points[1:2], col=1 + my.points$in.shape)
polygon(my.shape)

要测试多个形状,将它们放在一个列表中并使用lapply:

To test for multiple shapes, put them in a list and use lapply:

set.seed(127)
multi.shapes <- lapply(1:3, function(...) matrix(runif(6), 3))
my.points$in.multi.shapes <- 1:500 %in%
    unlist(lapply(multi.shapes, function(p) inpip(my.points, p)))
plot(my.points[1:2], col=1 + my.points$in.multi.shapes)
for(p in multi.shapes) polygon(p)

这篇关于R - 过滤器坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆