]> granicus.if.org Git - postgis/commitdiff
minor adjustment
authorRegina Obe <lr@pcorp.us>
Tue, 2 Jul 2013 13:56:35 +0000 (13:56 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 2 Jul 2013 13:56:35 +0000 (13:56 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@11605 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_measure.xml

index b147ce023c60a33697af8fcaa5d1bee7a42123e2..660618c5b0e7a158b3a5493c3a227d83cd82072b 100644 (file)
@@ -2150,7 +2150,7 @@ The current implementation supports only vertices as the discrete locations. Thi
   <refsection>
     <title>Examples</title>
        <para>For each building, find the parcel that best covers it. The answer will return at most one record per building
-and will return the parcel that it intersects and parts of building that don't intersect the furthest part of building is closest to this parcel.</para>
+and will return the parcel that it intersects where  parts of building that don't intersect the parcel, the furthest part of building is closest to this parcel.</para>
                <programlisting>SELECT DISTINCT ON(buildings.gid) buildings.gid, parcels.parcel_id 
    FROM buildings INNER JOIN parcels ON ST_Intersects(buildings.geom,parcels.geom) 
      ORDER BY buildings.gid, ST_MaxDistance(buildings.geom, parcels.geom);</programlisting>