ST_MPointFromText — Crea una geometria da WKT con il SRID indicato. Se SRID non viene indicato, il valore predefinito è 0.
geometry ST_MPointFromText(
text WKT, integer srid)
;
geometry ST_MPointFromText(
text WKT)
;
Crea una geometria da WKT con il SRID indicato. Se SRID non viene indicato, il valore predefinito è 0.
OGC SPEC 3.2.6.2 - option SRID is from the conformance suite
Restituisce null se il WKT non è un MULTIPOINT
Se si è assolutamente certi che tutte le geometrie WKT siano punti, non utilizzare questa funzione. È più lenta di ST_GeomFromText poiché aggiunge un ulteriore passaggio di convalida. |
Questo metodo implementa le OGC Simple Features Implementation Specification for SQL 1.1. 3.2.6.2
Questo metodo implementa la specifica SQL/MM. SQL-MM 3: 9.2.4
SELECT ST_MPointFromText('MULTIPOINT((1 2),(3 4))'); SELECT ST_MPointFromText('MULTIPOINT((-70.9590 42.1180),(-70.9611 42.1223))', 4326);