class MultiLineString extends Polygon (View source)

OGC MultiLineString type.

Properties

protected string $type OGC type.
int $srid Spatial Reference System Identifier (SRID). from OGCObject
LineString[] $linestrings LineString collection. from Polygon

Methods

mixed
__get(string $key)

Get an object property.

from OGCObject
static OGCObject
buildOGCObject(array $parsed)

Create an OGCObject instance from parsed WKB/WKT.

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

Create an OGCObject instance from WKT.

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

Create an OGCObject instance from WKB.

from OGCObject
static string
getGeoJsonType(string $type)

Get GeoJSON geom type.

from OGCObject
string
toWKT()

Get WKT representation of the instance.

from OGCObject
toWKB()

(not implemented) Get WKB representation of the instance.

from OGCObject
array
toValueArray()

Array representation of instance coordinates.

from Polygon
array
toArray()

Array representation of the instance.

from OGCObject
string
__toString()

String representation of the instance.

from Polygon
string
getType()

Get OGC type.

from OGCObject
void
__construct(array $linestrings, int $srid = null)

MultiLineString constructor.

static Polygon
fromArray(array $linestrings)

A Polygon could be instantiated with an array like this:.

from Polygon
static Polygon
fromString(string $linestrings, string $linestrings_separator = ';', string $points_separator = ',', string $coords_separator = ' ')

A Polygon could be instantiated using a string containing linestrings.

from Polygon
int
count()

Countable interface implementation.

from Polygon

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

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

void __construct(array $linestrings, int $srid = null)

MultiLineString constructor.

Parameters

array $linestrings
int $srid

Return Value

void

static Polygon fromArray(array $linestrings)

A Polygon could be instantiated with an array like this:.

[ [[x,y],[x,y],[x,y]], [[x,y],[x,y],[x,y]], ..., [[x,y],[x,y],[x,y]] ]

Parameters

array $linestrings

Return Value

Polygon

static Polygon fromString(string $linestrings, string $linestrings_separator = ';', string $points_separator = ',', string $coords_separator = ' ')

A Polygon could be instantiated using a string containing linestrings.

es. "lat lon, lat lon; lat lon, lat lon; lat lon, lat lon".

Parameters

string $linestrings
string $linestrings_separator
string $points_separator
string $coords_separator

Return Value

Polygon

Exceptions

GeoSpatialException

int count()

Countable interface implementation.

Return Value

int