From 0496f6e3dc80ea476736e194979a2edfacec7e1a Mon Sep 17 00:00:00 2001 From: manoharuss Date: Thu, 1 Jun 2017 12:22:19 +0530 Subject: [PATCH] Decreased threshold to 0.25sq meters --- comparators/large_building.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comparators/large_building.js b/comparators/large_building.js index 1fc6464..81b8855 100644 --- a/comparators/large_building.js +++ b/comparators/large_building.js @@ -13,7 +13,7 @@ function largeBuilding(newVersion, oldVersion) { } var area = turfArea(newVersion); - if (area > 2500000 && newVersion.properties.hasOwnProperty('building')) { + if (area > 500000 && newVersion.properties.hasOwnProperty('building')) { return {'result:large_building': area}; } return false;