<font>Blair,</font><div><font><br></font></div><div><font>If I understood correctly you dont intend to store geometries in HStore but in the standard geometry PostGIS enabled column.</font><div><font>Storing  key/value pairs in hstore should not bring any issues. You can also index such hstore field for quick searches.</font></div>
<div><font>In order to properly get / set data in Hstore fields, read the documentation. Since 9.1 (i think) hstore  set/get are diffrent from previous versions.</font></div><div><font><br></font></div><div><font>I guess it all comes to how large will your table be, but my first impression is you should be fine if your are just "storing" unstructured data.</font></div>
<div><font><br></font></div><div><font><br></font></div><div><font>Hope this helped.</font></div><div><font><br></font></div><div><font><br></font></div><div><font>Ricardo</font></div><div><font><br></font></div><div><font><br>
</font><br><div class="gmail_quote">2012/10/25 Stephen Frost <span dir="ltr"><<a href="mailto:sfrost@snowman.net" target="_blank">sfrost@snowman.net</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Blair,<br>
<div class="im"><br>
* Blair Deaver (<a href="mailto:blairdeaver@gmail.com">blairdeaver@gmail.com</a>) wrote:<br>
> With that said, I have been looking into the new capabilities available<br>
> with PostgreSQL HStore<br>
<br>
</div>Uhm..  hstore isn't exactly new.  It's been around since something like<br>
8.0..  It is amusing how people are just now coming to see. :)<br>
<br>
>    - Can anyone comment on successful or unsuccessful attempts to implement<br>
<div class="im">>    such a technology approach integrating PostGIS with HStore?<br>
<br>
</div>I've not heard of anyone putting geometries into hstore's.  It'd be<br>
possible, but realize that to put something into an hstore, it has to be<br>
text.  Also, I don't think you'd be able to create a geometry index over<br>
geometries which are inside of an hstore..  Or at least, if you did, it<br>
might be difficult to actually use.<br>
<div class="im"><br>
>    - How would one extract data out in such a manner (I suspect a custom<br>
>    program would need to be run)?<br>
<br>
</div>Not sure what you mean by this, but you'd need to query the hstore using<br>
the key that you want and then pull the geometry out as text and cast it<br>
to an actual geometry column to use it.  If you just want the data out<br>
in a text format, you'd run asewkt() on the geometry after you pull it<br>
out of the hstore.<br>
<br>
        Thanks,<br>
<br>
                Stephen<br>
<br>_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net">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>
<br></blockquote></div><br></div></div>