diff --git a/turfpy/__version__.py b/turfpy/__version__.py index 29ccc53..4f8ca05 100644 --- a/turfpy/__version__.py +++ b/turfpy/__version__.py @@ -1,3 +1,3 @@ """Project version information.""" -__version__ = "0.0.7" +__version__ = "0.0.8" diff --git a/turfpy/measurement.py b/turfpy/measurement.py index 90746d4..efd801d 100644 --- a/turfpy/measurement.py +++ b/turfpy/measurement.py @@ -452,7 +452,7 @@ def _callback_coord_each( y_sum += coord[1] length += 1 - coord_each(geojson, _callback_coord_each) + coord_each(geojson, _callback_coord_each, True) point = Point((x_sum / length, y_sum / length)) return Feature(geometry=point, properties=properties if properties else {})