Skip to content
Snippets Groups Projects

Resolve "Introduce a new filter for when rules should be run based on the source ID of a building."

Compare and Show latest version
2 files
+ 2
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -119,7 +119,7 @@ class AbstractRule(abc.ABC):
# Geographic filter, passes if the inputs coordinates lie within the boundary geometry.
if (
self.geographic_filter_boundary_geometry is not None
and not self.geographic_filter_boundary_geometry.contains(
and self.geographic_filter_boundary_geometry.disjoint(
shapely.geometry.Point(longitude, latitude)
)
):
Loading