Changes between Version 1 and Version 2 of HexEncodedWkb


Ignore:
Timestamp:
Feb 26, 2010, 8:30:00 PM (14 years ago)
Author:
mloskot
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HexEncodedWkb

    v1 v2  
    55To generate a hex-encoded well-known-binary form of a geometry in PostGIS, use a SQL call like this:
    66
    7  SELECT encode(ST_AsBinary(the_geom),'hex') FROM the_table;
     7{{{
     8#!sql
     9SELECT encode(ST_AsBinary(the_geom),'hex') FROM the_table;
     10}}}