<div dir="ltr"><div><div><div>Shira,<br></div>That worked using SRID=4269.<br></div>Thanks you very much,<br></div>Pat<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Mar 5, 2013 at 8:07 PM, Shira Bezalel <span dir="ltr"><<a href="mailto:shira@sfei.org" target="_blank">shira@sfei.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Patrick,<br>
<br>
<br>
I ran into this same problem not too long ago. I got it to work with minor changes in the syntax of the 3rd CTE before the final select statement like so:<br>
<br>
<br>
grid AS -- Define CTE to store our grid that uses usext and grid_dim<br>
(SELECT ST_SetSRID(ST_MakeBox2d(ST_Point(xmin + (a - 1)*g_width, ymin + (b-1)*g_height),<br>
ST_Point(xmin + a*g_width, ymin + b*g_height)), 3310) As grid_geom<br>
FROM<br>
(SELECT generate_series(1,x_gridcnt) as a FROM usext) As x CROSS JOIN<br>
(SELECT generate_series(1,y_gridcnt) as b FROM usext) As y CROSS JOIN<br>
grid_dim)<br>
<br>
<br>
Of course, I think Regina/Leo are probably the one to confirm if my changes are OK.<br>
<br>
Shira<br>
<br>
<br>
--<br>
Shira Bezalel<br>
Database & Systems Manager<br>
San Francisco Estuary Institute<br>
4911 Central Ave<br>
Richmond CA 94804<br>
Ph: <a href="tel:510-746-7304" value="+15107467304">510-746-7304</a><br>
Fax: <a href="tel:510-746-7300" value="+15107467300">510-746-7300</a><br>
<br>
<br>
<br>
----- Original Message -----<br>
<br>
From: "Patrick Browne" <<a href="mailto:patrickcbbrowne@gmail.com">patrickcbbrowne@gmail.com</a>><br>
To: <a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
Sent: Tuesday, March 5, 2013 11:52:57 AM<br>
Subject: [postgis-users] CTE example<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
I am trying to run the CTE example on slide 22 from <a href="http://www.postgis.us/downloads/oscon2009_PostGISTips.pdf" target="_blank">http://www.postgis.us/downloads/oscon2009_PostGISTips.pdf</a><br>
<br>
When I paste the example into the SQL-shell I get the following error:<br>
<br>
ERROR: operator does not exist: record - integer LINE 14: ... x, y, ST_SetSRID(ST_MakeBox2d(ST_Point(xmin + (x - 1)*g_wid... HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts<br>

<br>
I am using POSTGIS 1.4.1 with Postgres 8.4 I used the data that accompany the slides.<br>
<br>
<br>
Any advice will be much appreciated.<br>
<br>
<br>
</div></div><div class="HOEnZb"><div class="h5">_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a> </div></div><br>_______________________________________________<br>

postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a><br>
<br></blockquote></div><br></div>