123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- <?php
- /**
- * Geometry abstract class
- */
- abstract class Geometry
- {
- private $geos = NULL;
- protected $srid = NULL;
- protected $geom_type;
- // Abtract: Standard
- // -----------------
- abstract public function area();
- abstract public function boundary();
- abstract public function centroid();
- abstract public function length();
- abstract public function y();
- abstract public function x();
- abstract public function numGeometries();
- abstract public function geometryN($n);
- abstract public function startPoint();
- abstract public function endPoint();
- abstract public function isRing(); // Mssing dependancy
- abstract public function isClosed(); // Missing dependancy
- abstract public function numPoints();
- abstract public function pointN($n);
- abstract public function exteriorRing();
- abstract public function numInteriorRings();
- abstract public function interiorRingN($n);
- abstract public function dimension();
- abstract public function equals($geom);
- abstract public function isEmpty();
- abstract public function isSimple();
- // Abtract: Non-Standard
- // ---------------------
- abstract public function getBBox();
- abstract public function asArray();
- abstract public function getPoints();
- abstract public function explode();
- abstract public function greatCircleLength(); //meters
- abstract public function haversineLength(); //degrees
- // Public: Standard -- Common to all geometries
- // --------------------------------------------
- public function SRID() {
- return $this->srid;
- }
- public function setSRID($srid) {
- if ($this->geos()) {
- $this->geos()->setSRID($srid);
- }
- $this->srid = $srid;
- }
- public function envelope() {
- if ($this->isEmpty()) return new Polygon();
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->envelope());
- }
- $bbox = $this->getBBox();
- $points = array (
- new Point($bbox['maxx'],$bbox['miny']),
- new Point($bbox['maxx'],$bbox['maxy']),
- new Point($bbox['minx'],$bbox['maxy']),
- new Point($bbox['minx'],$bbox['miny']),
- new Point($bbox['maxx'],$bbox['miny']),
- );
- $outer_boundary = new LineString($points);
- return new Polygon(array($outer_boundary));
- }
- public function geometryType() {
- return $this->geom_type;
- }
- // Public: Non-Standard -- Common to all geometries
- // ------------------------------------------------
- // $this->out($format, $other_args);
- public function out() {
- $args = func_get_args();
- $format = array_shift($args);
- $type_map = geoPHP::getAdapterMap();
- $processor_type = $type_map[$format];
- $processor = new $processor_type();
- array_unshift($args, $this);
- $result = call_user_func_array(array($processor, 'write'), $args);
- return $result;
- }
- // Public: Aliases
- // ---------------
- public function getCentroid() {
- return $this->centroid();
- }
- public function getArea() {
- return $this->area();
- }
- public function getX() {
- return $this->x();
- }
- public function getY() {
- return $this->y();
- }
- public function getGeos() {
- return $this->geos();
- }
- public function getGeomType() {
- return $this->geometryType();
- }
- public function getSRID() {
- return $this->SRID();
- }
- public function asText() {
- return $this->out('wkt');
- }
- public function asBinary() {
- return $this->out('wkb');
- }
- // Public: GEOS Only Functions
- // ---------------------------
- public function geos() {
- // If it's already been set, just return it
- if ($this->geos && geoPHP::geosInstalled()) {
- return $this->geos;
- }
- // It hasn't been set yet, generate it
- if (geoPHP::geosInstalled()) {
- $reader = new GEOSWKBReader();
- $this->geos = $reader->readHEX($this->out('wkb',TRUE));
- }
- else {
- $this->geos = FALSE;
- }
- return $this->geos;
- }
- public function setGeos($geos) {
- $this->geos = $geos;
- }
- public function pointOnSurface() {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->pointOnSurface());
- }
- }
- public function equalsExact(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->equalsExact($geometry->geos());
- }
- }
- public function relate(Geometry $geometry, $pattern = NULL) {
- if ($this->geos()) {
- if ($pattern) {
- return $this->geos()->relate($geometry->geos(), $pattern);
- }
- else {
- return $this->geos()->relate($geometry->geos());
- }
- }
- }
- public function checkValidity() {
- if ($this->geos()) {
- return $this->geos()->checkValidity();
- }
- }
- public function buffer($distance) {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->buffer($distance));
- }
- }
- public function intersection(Geometry $geometry) {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->intersection($geometry->geos()));
- }
- }
- public function convexHull() {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->convexHull());
- }
- }
- public function difference(Geometry $geometry) {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->difference($geometry->geos()));
- }
- }
- public function symDifference(Geometry $geometry) {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->symDifference($geometry->geos()));
- }
- }
- // Can pass in a geometry or an array of geometries
- public function union(Geometry $geometry) {
- if ($this->geos()) {
- if (is_array($geometry)) {
- $geom = $this->geos();
- foreach ($geometry as $item) {
- $geom = $geom->union($item->geos());
- }
- return geoPHP::geosToGeometry($geos);
- }
- else {
- return geoPHP::geosToGeometry($this->geos()->union($geometry->geos()));
- }
- }
- }
- public function simplify($tolerance, $preserveTopology = FALSE) {
- if ($this->geos()) {
- return geoPHP::geosToGeometry($this->geos()->simplify($tolerance, $preserveTopology));
- }
- }
- public function disjoint(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->disjoint($geometry->geos());
- }
- }
- public function touches(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->touches($geometry->geos());
- }
- }
- public function intersects(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->intersects($geometry->geos());
- }
- }
- public function crosses(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->crosses($geometry->geos());
- }
- }
- public function within(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->within($geometry->geos());
- }
- }
- public function contains(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->contains($geometry->geos());
- }
- }
- public function overlaps(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->overlaps($geometry->geos());
- }
- }
- public function covers(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->covers($geometry->geos());
- }
- }
- public function coveredBy(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->coveredBy($geometry->geos());
- }
- }
- public function distance(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->distance($geometry->geos());
- }
- }
- public function hausdorffDistance(Geometry $geometry) {
- if ($this->geos()) {
- return $this->geos()->hausdorffDistance($geometry->geos());
- }
- }
- public function project(Geometry $point, $normalized = NULL) {
- if ($this->geos()) {
- return $this->geos()->project($point->geos(), $normalized);
- }
- }
- // Public - Placeholders
- // ---------------------
- public function hasZ() {
- // geoPHP does not support Z values at the moment
- return FALSE;
- }
- public function is3D() {
- // geoPHP does not support 3D geometries at the moment
- return FALSE;
- }
- public function isMeasured() {
- // geoPHP does not yet support M values
- return FALSE;
- }
- public function coordinateDimension() {
- // geoPHP only supports 2-dimentional space
- return 2;
- }
- public function z() {
- // geoPHP only supports 2-dimentional space
- return NULL;
- }
- public function m() {
- // geoPHP only supports 2-dimentional space
- return NULL;
- }
- }
|