<table class="table">
  <thead>
    <tr>
      <th style="width:25%">Function</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>st_asbinary(geo[, endianness])</td>
      <td>Returns the geospatial value (value of type GEOGRAPHY or GEOMETRY) in WKB format using the specified endianness ('NDR' for little-endian, 'XDR' for big-endian), if provided. Defaults to little-endian encoding.</td>
    </tr>
    <tr>
      <td>st_geogfromwkb(wkb)</td>
      <td>Parses the WKB description of a geography and returns the corresponding GEOGRAPHY value.</td>
    </tr>
    <tr>
      <td>st_geomfromwkb(wkb[, srid])</td>
      <td>Parses the WKB description of a geometry and returns the corresponding GEOMETRY value.</td>
    </tr>
    <tr>
      <td>st_setsrid(geo, srid)</td>
      <td>Returns a new GEOGRAPHY or GEOMETRY value whose SRID is the specified SRID value.</td>
    </tr>
    <tr>
      <td>st_srid(geo)</td>
      <td>Returns the SRID of the input GEOGRAPHY or GEOMETRY value.</td>
    </tr>
  </tbody>
</table>
