Polygon
class Polygon extends OGCObject implements Countable (View source)
OGC Polygon type.
Properties
protected string | $type | OGC type. | |
int | $srid | Spatial Reference System Identifier (SRID). | from OGCObject |
LineString[] | $linestrings | LineString collection. |
Methods
Create an OGCObject instance from parsed WKB/WKT.
Create an OGCObject instance from WKT.
Create an OGCObject instance from WKB.
Array representation of instance coordinates.
String representation of the instance.
Polygon constructor. A Polygon must be constructed with at least 1 closed linestring.
A Polygon could be instantiated with an array like this:.
A Polygon could be instantiated using a string containing linestrings.
Countable interface implementation.
Details
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.
at line 96
protected array
toValueArray()
Array representation of instance coordinates.
at line 103
string
__toString()
String representation of the instance.
at line 35
void
__construct(array $linestrings, bool $circular_check = true, int $srid = null)
Polygon constructor. A Polygon must be constructed with at least 1 closed linestring.
at line 57
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]] ]
at line 77
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".
at line 129
int
count()
Countable interface implementation.