Skip to content
Commit 2d7b7443 authored by Allie Micka's avatar Allie Micka
Browse files

- Build out GeomFromWKB(), GeomFromText() and other functions in the GeoSimple

  class.  This mean that you can instantiate a geo object using WKB or WKT,
  run functions on it, and return it in any desired format.  It also means that
  you can do basic data manipulations without any database interaction at all!

  You can now do stuff like:

  $geo = geo_load();
  $g = $geo->geomFromWKB($wkb);
  $wkt = $g->asText();

- Completely deprecate the geo() function and the remaining sub-fuctions that
  were still in use:
    geo('rss_item')
    geo('wkt_validate')
    geo('wkt_from_point')
parent 1bf1db3d
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment