Metadata-Version: 2.4
Name: polargrid-mapping
Version: 0.1.0
Summary: Generate structured grids from scattered 2D points using convex hull layering
Author-email: ArmanddeCacqueray <armanddecacqueray@sfr.fr>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: scipy
Dynamic: license-file

\# polargrid



Generate structured square grids from scattered 2D points using convex hull layering.



\## Installation



```bash

pip install polargrid



import numpy as np

from polargrid import polargrid



points = np.random.rand(1000, 2)

grid = polargrid(points)



points are now structured as a perfect grid, such that grid\[i, j] is the point with index i, j


