Skip to main content
Version: Streamsheets 3.0

CLASSIFYPOINT

This function determines whether a given X, Y coordinate is inside or outside or on the border of a given polygon defined by the points given.

Syntax

=CLASSIFYPOINT(X, Y, PolygonPointsRange)

Arguments

NameTypeDescription
XNumberX coordinate of the point to test
YNumberY coordinate of the point to test
PolygonPointsRangeRangeA vertical range with 2 columns and N rows where the first column contains the X and the second column contains the Y coordinates of a (closed) Polygon

Return

TypeDescription
Number-1: Point is outside of polygon 0: Point is on polygon border 1: Point is inside polygon

Examples

FormulaResultComment
=CLASSIFYPOINT(500, 500, A2:B5)
1Where B5 looks as