class Point extends OGCObject (View source)

OGC Point type.

Properties

protected string $type OGC type.
int $srid Spatial Reference System Identifier (SRID). from OGCObject
static protected array $greatCircleProviders Great circle distance providers.
float $lon Logitude or X.
float $lat Latitude or Y.
string|null $address Point address.
float $x Longitude.
float $y Latitude.

Methods

mixed
__get(string $key)

Get an object property.

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(string|float $lon, string|float $lat, int|null $srid = null)

Point constructor.

static Point
fromArray(array $points)

A Point could be instantiated from array containing a tuple of string|float lat, lon $point = Point::fromArray(["1.123", "2.345"]) $point = Point::fromArray([1.123, 2.345]).

static Point
fromString(string $points, string $separator = ' ')

A Point could be instantiated from a string with a delimiters, by default " " is used $point = Point::fromString("1.123 2.345") $point = Point::fromString("1.123: 2.345", ":").

static float
distance(Point $p1, Point $p2, string $provider = 'haversine')

Calculate the distance between two points in meter.

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(string|float $lon, string|float $lat, int|null $srid = null)

Point constructor.

By default, a Point object could be instantiated from two elements, string or number are allowed: $point = new Point(1.123, 2.345) $point = new Point("1.1232", "2.345")

Parameters

string|float $lon
string|float $lat
int|null $srid

Return Value

void

static Point fromArray(array $points)

A Point could be instantiated from array containing a tuple of string|float lat, lon $point = Point::fromArray(["1.123", "2.345"]) $point = Point::fromArray([1.123, 2.345]).

Parameters

array $points

Return Value

Point

Exceptions

GeoSpatialException

static Point fromString(string $points, string $separator = ' ')

A Point could be instantiated from a string with a delimiters, by default " " is used $point = Point::fromString("1.123 2.345") $point = Point::fromString("1.123: 2.345", ":").

Parameters

string $points
string $separator

Return Value

Point

Exceptions

GeoSpatialException

static float distance(Point $p1, Point $p2, string $provider = 'haversine')

Calculate the distance between two points in meter.

Parameters

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

Return Value

float

Exceptions

GeoSpatialException