<div>Hi Jan,</div><div><br></div>box3d is not a geometry, but it is it's very own type (along with box2d). If you have pgAdminIII, you can browse these types (you may need to enable visibility of "types" in the options), or if you use psql then the command "\dT" will show all types.<div>

<br></div><div>Since it isn't a geometry, you can directly create it, e.g.:</div><div><br></div><div><div>create table foo(</div><div>  id serial primary key,</div><div>  box box3d</div><div>);</div><div><br></div><div>

insert into foo(box) values('BOX3D(0 0 0, 10 10 10)'::box3d);</div><div><br></div><div>-Mike</div><br><div class="gmail_quote">On 18 October 2010 02:34, Jan Saalbach <span dir="ltr"><<a href="mailto:fire@dubmosphere.de">fire@dubmosphere.de</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi all,<br>
what is the geometry type to chose when storing BOX3D type geometries? Of what type does the column need to be? I mean how do I phrase this correctly?<br>
<br>
---<br>
postgisdb=# SELECT AddGeometryColumn('boxes','box3d',31467,'BOX',3);<br>
<br>
FEHLER:  Invalid type name - valid ones are:<br>
        POINT, MULTIPOINT,<br>
        LINESTRING, MULTILINESTRING,<br>
        POLYGON, MULTIPOLYGON,<br>
        CIRCULARSTRING, COMPOUNDCURVE, MULTICURVE,<br>
        CURVEPOLYGON, MULTISURFACE,<br>
        GEOMETRY, GEOMETRYCOLLECTION,<br>
        POINTM, MULTIPOINTM,<br>
        LINESTRINGM, MULTILINESTRINGM,<br>
        POLYGONM, MULTIPOLYGONM,<br>
        CIRCULARSTRINGM, COMPOUNDCURVEM, MULTICURVEM<br>
        CURVEPOLYGONM, MULTISURFACEM,<br>
        or GEOMETRYCOLLECTIONM<br>
---<br>
<br>
The reason I need to do this is I would like to use the &&-operator on 2 boxes. And comparing the boxes from point3d-sets directly gives me a "not enough memory error".<br>
<br>
Regards,<br>
Jan<br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</blockquote></div><br></div>