OGCObject
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
Get an object property.
Create an OGCObject instance from parsed WKB/WKT.
Get GeoJSON geom type.
Get WKT representation of the instance.
(not implemented) Get WKB representation of the instance.
Array representation of instance coordinates.
Array representation of the instance.
String representation of the instance.
Get OGC type.
Details
at line 57
mixed
__get(string $key)
Get an object property.
at line 83
static OGCObject
buildOGCObject(array $parsed)
Create an OGCObject instance from parsed WKB/WKT.
at line 112
static OGCObject
fromWKT(string $wkt, int|null $srid = null)
Create an OGCObject instance from WKT.
at line 132
static OGCObject
fromWKB($wkb, int|null $srid = null)
Create an OGCObject instance from WKB.
at line 151
static string
getGeoJsonType(string $type)
Get GeoJSON geom type.
at line 163
string
toWKT()
Get WKT representation of the instance.
at line 174
toWKB()
(not implemented) Get WKB representation of the instance.
at line 184
abstract protected array
toValueArray()
Array representation of instance coordinates.
at line 191
array
toArray()
Array representation of the instance.
at line 204
string
__toString()
String representation of the instance.
at line 214
string
getType()
Get OGC type.