Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 510 Bytes

is_valid.md

File metadata and controls

26 lines (14 loc) · 510 Bytes

Funzione is_valid

Restituisce vero se una geometria è valida; se è ben formato in 2D secondo le regole OGC

Sintassi

is_valid(geom)

Argomenti

  • geom una geometria

Esempi

  • is_valid(geom_from_wkt('LINESTRING(0 0, 1 1, 2 2, 0 0)')) → vero
  • is_valid(geom_from_wkt('LINESTRING(0 0)')) → falso

nota bene

--

osservazioni

screen