Thanks for the ::geometry tip.<div><br></div><div>(database geog_test, my data) <b>select count(asEWKB(location::geometry)) from global_points;</b></div><div><br></div><div>count: 1</div><div><br></div><div>(database geog_three, tutorial data) <b>select count(asEWKB(geog::geometry)) from airports;</b></div>
<div><br></div><div>count: 3</div><div><br></div><div><br></div><div>Both of those counts are correct.  global_points contains a single LINESTRING() constructed from two lat/long points (my data), airports contains three POINT() generated using the steps in <a href="http://workshops.opengeo.org/postgis-intro/geography.html#creating-a-geography-table">this tutorial</a>.<br>
<br></div><div>-Sam</div><div><br></div><div><br></div><div><br></div><div><div class="gmail_quote">On Sat, Nov 6, 2010 at 10:22 AM, strk <span dir="ltr"><<a href="mailto:strk@keybit.net">strk@keybit.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On Fri, Nov 05, 2010 at 09:43:14PM -0400, Sam Snellings wrote:<br>
> select count(asEWKB(the_geom)) from global_points;<br>
><br>
> Returns the following error:<br>
><br>
> ERROR: function asewkb(geography) does not exist<br>
<br>
</div>Try asewkb(the_geom::geometry)<br>
<div class="im"><br>
> asEWKB(), ST_isValid() and ST_isValidReason() don't work with geography data types,<br>
> correct?<br>
<br>
</div>You can cast geography to geometry using the ::geometry operator.<br>
<div><div></div><div class="h5"><br>
--strk;<br>
<br>
  ()   Free GIS & Flash consultant/developer<br>
  /\   <a href="http://strk.keybit.net/services.html" target="_blank">http://strk.keybit.net/services.html</a><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>
</div></div></blockquote></div><br></div>