├── .gitignore ├── README.md ├── alldbpediapoints.py ├── alpha_shape ├── CMakeLists.txt ├── data │ └── fin └── main.cpp ├── batch_country_dataset_generator.py ├── cPlace.py ├── cReport.py ├── cSpinner.py ├── countrylist.py ├── doxygen_conf ├── geom_functions.py ├── results ├── all_points.csv ├── europe.csv └── twente.csv └── vagueplaces.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/README.md -------------------------------------------------------------------------------- /alldbpediapoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/alldbpediapoints.py -------------------------------------------------------------------------------- /alpha_shape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/alpha_shape/CMakeLists.txt -------------------------------------------------------------------------------- /alpha_shape/data/fin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/alpha_shape/data/fin -------------------------------------------------------------------------------- /alpha_shape/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/alpha_shape/main.cpp -------------------------------------------------------------------------------- /batch_country_dataset_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/batch_country_dataset_generator.py -------------------------------------------------------------------------------- /cPlace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/cPlace.py -------------------------------------------------------------------------------- /cReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/cReport.py -------------------------------------------------------------------------------- /cSpinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/cSpinner.py -------------------------------------------------------------------------------- /countrylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/countrylist.py -------------------------------------------------------------------------------- /doxygen_conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/doxygen_conf -------------------------------------------------------------------------------- /geom_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/geom_functions.py -------------------------------------------------------------------------------- /results/all_points.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/results/all_points.csv -------------------------------------------------------------------------------- /results/europe.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/results/europe.csv -------------------------------------------------------------------------------- /results/twente.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/results/twente.csv -------------------------------------------------------------------------------- /vagueplaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtells/vague-places/HEAD/vagueplaces.py --------------------------------------------------------------------------------