adamconkey / computational_geometry

Playing around with implementing computational geometry algorithms from scratch in Rust.
0 stars 0 forks source link

Create area tests utilizing the interesting polygon archive #2

Open adamconkey opened 1 week ago

adamconkey commented 1 week ago

Came across this quite excellent dataset of polygons: https://github.com/LingDong-/interesting-polygon-archive

Would like to enable loading them and parameterizing the area test with them. There are several different formats offered, I think the JSON looks to me like the easiest to parse (it's ultimately just a list of x-y coordinates). And then there is metadata for each including the area. Some other attributes are provided which may be useful as more functionality is implemented.