class LineString extends OGCObject implements Countable (View source)

OGC LineString type.

Properties

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

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.

array
toArray()

Array representation of the instance.

from OGCObject
string
__toString()

String representation of the instance.

string
getType()

Get OGC type.

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

LineString constructor.

static LineString
fromArray(array $points)

A Linestring could be constructed with an array of points-array.

static LineString
fromString(string $points, string $points_separator = ',', string $coords_separator = ' ')

A Linestring could be instantiated using a string where points are divided by a "," and coordinates are divided by " ". Separators must be different.

bool
isCircular()

Check if the LineString is circular, that is the first and the last Point are the same.

int
lenght(string $provider = 'haversine')

Return the lenght of the linestring expressed in meters.

insertPoint(Point $p)

Insert a Point into the LineString.

array
split(Point $split)

Split the LineString object on the given Point, if present, and returns a tuple (array with two object) composed by Points, LineStrings or null.

static array
diff(LineString $l1, LineString $l2)

No description

int
count()

Countable interface implementation.

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 $points, int|null $srid = null)

LineString constructor.

A LineString must be instantiate with a Points array es. [new Point(lon, lat), new Point(lon, lat)]

Parameters

array $points
int|null $srid

Return Value

void

Exceptions

GeoSpatialException

static LineString fromArray(array $points)

A Linestring could be constructed with an array of points-array.

es. [[lon, lat], [lon, lat], [lon, lat], ..]

Parameters

array $points

Return Value

LineString

static LineString fromString(string $points, string $points_separator = ',', string $coords_separator = ' ')

A Linestring could be instantiated using a string where points are divided by a "," and coordinates are divided by " ". Separators must be different.

es. "lon lat, lon lat".

Parameters

string $points
string $points_separator
string $coords_separator

Return Value

LineString

Exceptions

GeoSpatialException

bool isCircular()

Check if the LineString is circular, that is the first and the last Point are the same.

Return Value

bool

int lenght(string $provider = 'haversine')

Return the lenght of the linestring expressed in meters.

Parameters

string $provider (optional) One of "haversine" or "vincenty". Default to "haversine"

Return Value

int

insertPoint(Point $p)

Insert a Point into the LineString.

Parameters

Point $p

array split(Point $split)

Split the LineString object on the given Point, if present, and returns a tuple (array with two object) composed by Points, LineStrings or null.

.

If the given Point is the first of the LineString, it returns the Point as first element of the tuple, and the remaining LineString as second element of the tuple. Same behavior if the Point is the last, but the returned tuple is reversed.

If the LineString is composed by two Points and the given Point is one of those, we get a tuple of two Points.

If the Point is not present, we get a tuple composed by the LineString itself and a null element in the second position of the tuple.

es. given the LineString(Point(1,1), Point(2,2), Point(3,3), Point(4,4), Point(5,5)) split by Point(2,2) we obtain - an array with two LineString 1) LineString(Point(1,1), Point(2,2)) 2) LineString(Point(2,2), Point(3,3), Point(4,4), Point(5,5))

es. given the LineString(Point(1,1), Point(2,2), Point(3,3), Point(4,4), Point(5,5)) split by Point(1,1) we obtain - an array with a Point and a LineString 1) Point(1,1) 2) LineString(Point(1,1), Point(2,2), Point(3,3), Point(4,4), Point(5,5))

es. given the LineString(Point(1,1), Point(2,2), Point(3,3), Point(4,4), Point(5,5)) split by Point(5,5) we obtain - an array with a Point and a LineString 1) LineString(Point(1,1), Point(2,2), Point(3,3), Point(4,4), Point(5,5)) 2) Point(5,5)

es. given the LineString(Point(1,1), Point(2,2)) split by Point(1,1) we obtain - an array with a Point and a LineString 1) Point(1,1) 2) LineString(Point(1,1), Point(2,2))

es. given the LineString(Point(1,1), Point(2,2)) split by Point(5,5) we obtain - an array with a LineString and a null element 1) LineString(Point(1,1), Point(2,2)) 2) null

Parameters

Point $split

Return Value

array

static array diff(LineString $l1, LineString $l2)

Parameters

LineString $l1
LineString $l2

Return Value

array

int count()

Countable interface implementation.

Return Value

int