#!/usr/bin/env python3 voronoi_filepath = "voronoi.gpkg" import geopandas as gpd voronoi_cells = gpd.read_file(voronoi_filepath) for each_cell in range(voronoi_cells.shape[0]): print(voronoi_cells.geometry[each_cell])