Table of Contents
Geo Point Within Polygon Condition
Table of Contents
The GeoPoint Within Polygon condition checks if the geoinformation inserted in Fotoware Alto is within a defined polygon, e.g., to check if the images shot were created in Baden, or more generally, to check if images were taken (GPS data from extracted metadata) near the headquarters address (polygon) and then assign the headquarters tag to them (action assign tag).
Triggers when the Geo Point value in the provided fieldpath is inside the defined polygon.
Specific definitions
| Property | Value |
|---|---|
| kind | GeoPointWithinPolygonCondition |
| fieldpath |
layerId.fieldId Details on accessing field values, specifically fieldpath starts lowercase Supports JSON path syntax which you can test here: https://jsonpath.com. |
| polygon |
Geo Point
A minimum of three geo points must be defined. |
Is the Image location in the defined area?
{
"kind": "GeoPointWithinPolygonCondition",
"polygon": [
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
},
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
},
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
}],
"fieldPath": "image.location"
}