ST_NPoints — Retorna o número de pontos (vértices) em uma geometria.
integer ST_NPoints(
geometry g1)
;
Retorna o número de pontos em uma geometria. Funciona para todas as geometrias.
Melhorias: 2.0.0 suporte a superfícies poliédricas foi introduzido.
Anteriores a 1.3.4, essa função falha se usada com geometrias que contêm CURVAS. Isso é consertado em 1.3.4+ |
This function supports 3d and will not drop the z-index.
This method supports Circular Strings and Curves.
This function supports Polyhedral surfaces.
SELECT ST_NPoints(ST_GeomFromText('LINESTRING(77.29 29.07,77.42 29.26,77.27 29.31,77.29 29.07)')); --result 4 --Polygon in 3D space SELECT ST_NPoints(ST_GeomFromEWKT('LINESTRING(77.29 29.07 1,77.42 29.26 0,77.27 29.31 -1,77.29 29.07 3)')) --result 4