point in radius

This block is part of the condition group and was last modified in core v10.4.28.

point in radius v10.4.28

Check to see if an given geo-point is in the circle.

In pins 3
  • point required
    geo_point

    Point that should be in center

  • center point required
    geo_point

    Center point of the radiu.

  • Meters required
    number

    The number of meters around the center GEO point in which to search for the GEO point

Out pins 1
  • boolean
    condition

    This boolean is true if the given-geo point is in the circle.

True when the great-circle (haversine) distance in meters between the point and the center point is at most meters, inclusive. Reads geo_point/geo_center_point first, falling back to the deprecated object pins. A missing or malformed point resolves to lat/lon 0,0 instead of failing, so an unwired point silently compares from coordinates 0,0; a missing meters counts as 0.

A typical wiring for point in radius: x feeds the meters pin; the condition out pin feeds OR.

Studio canvas example for the point in radius block: typical wiring for point in radius.

Commonly used with

In production blueprints, this block is most often wired together with:

  • get fields: feeds into this block. Gets the selected fields from the given object.
  • OR: this block feeds into it. operator for a set of operands is true if and only if one or more of its operands is true.
  • x: feeds into this block. Multiplication operator produces the product of the operands.

Version history

Introduced in v10.4.28.


Back to condition Return to the main group to view all sub-groups Back to geo Return to the group to view all blocks within this group