Having a geometry column wkb_geometry
, srid 4326 that is a MULTILINESTRING
I would like to determine which of these records are within a predetermined distance (say 5000m) of a geometry object POINT
while the following method allows to determine if a polygon contains a point
def self.containing_latlon(lat,lon, polygon)
ewkb = EWKB.generate(RGeo::Geographic.simple_mercator_factory.point(lon, lat).projection)
where("ST_Intersects(polygon, ST_GeomFromEWKB(E'\\\\x#{ewkb}'))")
end
ST_Intersects
is clearly not an option, as it applies to "any portion of space then they intersect".
I have not found documentation in order to determine if a line is within X distance of a point. But possibly the question is reversed? Should the question not be is the point within a polygon defined by the MULTILINESTRING and a buffer.
How would the above method need to be modified in order to execute this?
Use
ST_DWithin
instead.For distances using meters cast the parameters to
geography
, e.g. 5km:If you're happy with the unit of measurement of your SRS, just stick to `geometry
The
::
after the WKT literals is a postgres syntax to cast data types. But as it is customary in postgres, there are many ways to do the same thing. The following example casts a WKT literal into ageometry
using different techniques:Further reading: Getting all Buildings in range of 5 miles from specified coordinates