I want to subset a SpatialPointsDataframe with coordinates stored in a matrix. What I have tried so far is following:
pts_subset <- pts[pts@coords == mtx, ]
# variable <mtx> holds the coordinates in two columns, <x> and <y>, just like in the SpatialPointsDataframe
# variable <pts> represents my SpatialPointsDataframe I want to subset with the given coordinates
However, this does not work. Any suggestions?
Example: