[polygons] Eliminating fix_polygon

This commit is contained in:
Al
2015-11-01 03:12:58 -05:00
parent aba2c51e65
commit 477300c061

View File

@@ -104,8 +104,7 @@ class PolygonIndex(object):
'''
if not coords or len(coords) < 3:
return None
poly = Polygon(coords)
return cls.fix_polygon(poly)
return Polygon(coords)
def add_geojson_like_record(self, rec, include_only_properties=None):
if not rec or not rec.get('geometry') or 'type' not in rec['geometry']: