Voronoi is a console program developed as a GEOS library integration exercise to study library functionality. It processes GeoJSON files to generate Voronoi diagrams.
0.01
Voronoi [-hv -f file (stdin)] [file]
-f file: Specify filename to read (can be used with or without-f)-h: Display help information-v: Display version information
- Accepts GeoJSON files containing points
- Accepts multi geometry collections containint points (all other geometry types other than points will be ignored)
- Supports reading from stdin or specified file
- Writes Voronoi Diagram to stdout
cc src/voronoi.c -o ./bin/voronoi -l geos_cThere is a dummy Makefile in the directory not used at all.
- GEOS Library
This project is licensed under the GPLv2.1 License - see the LICENSE file for details
Created solely as an educational exercise for studying GEOS library integration.