abstract class OGCObject (View source)

Abstract class represent Open Geospatial Consortium (OGC) geometry type.

Properties

protected string $type OGC type.
int $srid Spatial Reference System Identifier (SRID).

Methods

mixed
__get(string $key)

Get an object property.

static OGCObject
buildOGCObject(array $parsed)

Create an OGCObject instance from parsed WKB/WKT.

static OGCObject
fromWKT(string $wkt, int|null $srid = null)

Create an OGCObject instance from WKT.

static OGCObject
fromWKB($wkb, int|null $srid = null)

Create an OGCObject instance from WKB.

static string
getGeoJsonType(string $type)

Get GeoJSON geom type.

string
toWKT()

Get WKT representation of the instance.

toWKB()

(not implemented) Get WKB representation of the instance.

array
toValueArray()

Array representation of instance coordinates.

array
toArray()

Array representation of the instance.

string
__toString()

String representation of the instance.

string
getType()

Get OGC type.

Details

mixed __get(string $key)

Get an object property.

Parameters

string $key

Return Value

mixed

static OGCObject buildOGCObject(array $parsed)

Create an OGCObject instance from parsed WKB/WKT.

Parameters

array $parsed

Return Value

OGCObject

static OGCObject fromWKT(string $wkt, int|null $srid = null)

Create an OGCObject instance from WKT.

Parameters

string $wkt
int|null $srid

Return Value

OGCObject

static OGCObject fromWKB($wkb, int|null $srid = null)

Create an OGCObject instance from WKB.

Parameters

$wkb
int|null $srid

Return Value

OGCObject

static string getGeoJsonType(string $type)

Get GeoJSON geom type.

Parameters

string $type

Return Value

string

string toWKT()

Get WKT representation of the instance.

Return Value

string

toWKB()

(not implemented) Get WKB representation of the instance.

Exceptions

Exception

abstract protected array toValueArray()

Array representation of instance coordinates.

Return Value

array

array toArray()

Array representation of the instance.

Return Value

array

string __toString()

String representation of the instance.

Return Value

string

string getType()

Get OGC type.

Return Value

string