I want to enter a range of 100 meters radius. The following query works, but I want to add a radius to the point.
select *
from rivers
where contains(shape, point(11.698366, 42.235607))
I have the points of a river and I want that although I am beside the river I find that I'm on the river
Is this possible, and if so, how would I accomplish this?