├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data └── ne_10m_admin_0_countries.shp ├── images ├── ne_10m_south_france.png ├── ne_10m_south_france_overlaid.png ├── ne_10m_south_france_simplified.png ├── ne_10m_usa.png └── ne_10m_usa_simplified.png └── src ├── geo_types.cpp ├── geo_types.h ├── heap.hpp ├── main.cpp ├── visvalingam_algorithm.cpp └── visvalingam_algorithm.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | .*.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/README.md -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/data/ne_10m_admin_0_countries.shp -------------------------------------------------------------------------------- /images/ne_10m_south_france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/images/ne_10m_south_france.png -------------------------------------------------------------------------------- /images/ne_10m_south_france_overlaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/images/ne_10m_south_france_overlaid.png -------------------------------------------------------------------------------- /images/ne_10m_south_france_simplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/images/ne_10m_south_france_simplified.png -------------------------------------------------------------------------------- /images/ne_10m_usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/images/ne_10m_usa.png -------------------------------------------------------------------------------- /images/ne_10m_usa_simplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/images/ne_10m_usa_simplified.png -------------------------------------------------------------------------------- /src/geo_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/geo_types.cpp -------------------------------------------------------------------------------- /src/geo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/geo_types.h -------------------------------------------------------------------------------- /src/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/heap.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/visvalingam_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/visvalingam_algorithm.cpp -------------------------------------------------------------------------------- /src/visvalingam_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shortsleeves/visvalingam_simplify/HEAD/src/visvalingam_algorithm.h --------------------------------------------------------------------------------