1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
DROP TABLE IF EXISTS raster_pixelaspoints;
CREATE TABLE raster_pixelaspoints (
rast raster
);
CREATE OR REPLACE FUNCTION make_test_raster()
RETURNS void
AS $$
DECLARE
width int := 10;
height int := 10;
x int;
y int;
rast raster;
BEGIN
rast := ST_MakeEmptyRaster(width, height, 0, 0, 1, -1, 0, 0, 0);
rast := ST_AddBand(rast, 1, '32BUI', 0, 0);
FOR x IN 1..width LOOP
FOR y IN 1..height LOOP
IF (x + y) % 2 = 1 THEN
rast := ST_SetValue(rast, 1, x, y, x + y);
END IF;
END LOOP;
END LOOP;
INSERT INTO raster_pixelaspoints VALUES (rast);
RETURN;
END;
$$ LANGUAGE 'plpgsql';
SELECT make_test_raster();
DROP FUNCTION make_test_raster();
SELECT
(pix).x,
(pix).y,
ST_RasterToWorldCoordX(rast, (pix).x, (pix).y),
ST_RasterToWorldCoordY(rast, (pix).x, (pix).y),
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT rast, ST_PixelAsPoints(rast) AS pix FROM raster_pixelaspoints) foo
ORDER BY 1, 2, 3, 4, 6;
SELECT
(pix).x,
(pix).y,
ST_RasterToWorldCoordX(rast, (pix).x, (pix).y),
ST_RasterToWorldCoordY(rast, (pix).x, (pix).y),
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT rast, ST_PixelAsPoints(rast, NULL) AS pix FROM raster_pixelaspoints) foo
ORDER BY 1, 2, 3, 4, 6;
SELECT
(pix).x,
(pix).y,
ST_RasterToWorldCoordX(rast, (pix).x, (pix).y),
ST_RasterToWorldCoordY(rast, (pix).x, (pix).y),
(pix).val,
ST_AsText((pix).geom)
FROM (SELECT rast, ST_PixelAsPoints(rast, 1, FALSE) AS pix FROM raster_pixelaspoints) foo
ORDER BY 1, 2, 3, 4, 6;
SELECT ST_AsText(ST_PixelAsPoint(rast, 1, 1)) FROM raster_pixelaspoints;
SELECT ST_AsText(ST_PixelAsPoint(rast, 1, 2)) FROM raster_pixelaspoints;
SELECT ST_AsText(ST_PixelAsPoint(rast, -1, -1)) FROM raster_pixelaspoints;
DROP TABLE IF EXISTS raster_pixelaspoints;
|