Changes between Version 11 and Version 12 of FAQ
- Timestamp:
- 06/03/10 09:36:32 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v11 v12 62 62 As Background: The official PostGIS documentation [http://postgis.refractions.net/docs/reference.html | states that] most functions have been renamed and "The non ST_ functions not listed in this documentation are deprecated and will be removed in a future release so STOP USING THEM." 63 63 64 == Why don't ST_Interects and ST_Intersection return consistent results? == 64 65 66 Commonly, if you intersect two lines to get a point using ST_Intersection you will find that the point does not ST_Intersect either of the originating lines. This seems very inconsistent! However, you must bear in mind that numbers in a computer are not the "real numbers" of mathematics, but double-precision numbers with 64-bit storage. So the derived point may not fall exactly on the line connecting the vertices of the original line, but slightly to one side or the other, to fix into the grid of real numbers that are representable in double precision. 67 68 Less commonly, you may find two features that return true for ST_Intersects, but return an EMPTY geometry for ST_Intersection. This is because ST_Intersects is slightly more precise than ST_Intersection, so ST_Intersects is detecting an interaction, but ST_Intersection is unable to compute the intersection point. 69