Merge branch 'develop' into fix-moran-query-ordering-problem

This commit is contained in:
Andy Eschbacher 2016-06-22 16:12:44 -04:00
commit 279912c03f

View File

@ -14,9 +14,12 @@ $$
DECLARE
gs geometry[];
vs numeric[];
output numeric;
BEGIN
EXECUTE 'WITH a AS('||query||') SELECT array_agg(the_geom), array_agg(attrib) FROM a' INTO gs, vs;
RETURN QUERY SELECT CDB_SpatialInterpolation(gs, vs, point, method, p1,p2) FROM a;
SELECT CDB_SpatialInterpolation(gs, vs, point, method, p1,p2) INTO output FROM a;
RETURN output;
END;
$$
language plpgsql IMMUTABLE;