diff --git a/TileStache/Goodies/VecTiles/transform.py b/TileStache/Goodies/VecTiles/transform.py index bb3258cf..aaa9fd92 100644 --- a/TileStache/Goodies/VecTiles/transform.py +++ b/TileStache/Goodies/VecTiles/transform.py @@ -1436,6 +1436,9 @@ def __init__(self, geom, area): self.geom = geom self.area = area self._geom = geom._geom + # STRtree started filtering out empty geoms at some version, so + # we need to proxy the is_empty property. + self.is_empty = geom.is_empty # create an index so that we can efficiently find the # polygons intersecting the 'current' one. Note that