I'm trying to calculate the distance between to geographical points, but the calculated distance is bigger than the real one (from Google Maps).
The location column in postgresql is define as geography(Geometry,4326), and the query is:
select ST_Distance(u1.location, u2.location)
For...