----------------------------------------------------------------------- -- $Id$ -- -- Copyright (c) 2009 Sandro Santilli -- -- This is free software; you can redistribute and/or modify it under -- the terms of the GNU General Public Licence. See the COPYING file. ----------------------------------------------------------------------- ------------------------------------------------------------------- -- st_contain ----------------------------------------------------------------------- SELECT 'st_contain(query(1,1), X)' as op, count(a.y), min(a.x) as xmin, max(a.x) as xmax, min(a.y) as ymin, max(a.y) as ymax, extent(a.tile) FROM rt_gist_grid_test a, rt_gist_query_test b WHERE b.x = 1 and b.y = 1 AND st_contain(b.tile, a.tile); ----------------------------------------------------------------------- -- Test ~ operator (contains) ----------------------------------------------------------------------- SELECT 'query(1,1) ~ X' as op, count(a.y), min(a.x) as xmin, max(a.x) as xmax, min(a.y) as ymin, max(a.y) as ymax, extent(a.tile) FROM rt_gist_grid_test a, rt_gist_query_test b WHERE b.x = 1 and b.y = 1 AND b.tile ~ a.tile;