├── .gitignore ├── CMakeLists.txt ├── HOWTO-RELEASE.txt ├── LICENSE.txt ├── README.md ├── distrib-C └── 00README.md ├── doc ├── .htaccess ├── CMakeLists.txt ├── FOOTER.html ├── HEADER.html ├── doxyfile.in └── geodesic-c.dox.in ├── proj-example ├── CMakeLists.txt └── proj-example.c ├── src ├── CMakeLists.txt ├── geodesic.c └── geodesic.h ├── tests ├── CMakeLists.txt ├── geodsigntest.c └── geodtest.c └── tools ├── CMakeLists.txt ├── direct.c ├── inverse.c └── planimeter.c /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | BUILD*/ 3 | distrib-C/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HOWTO-RELEASE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/HOWTO-RELEASE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/README.md -------------------------------------------------------------------------------- /distrib-C/00README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/distrib-C/00README.md -------------------------------------------------------------------------------- /doc/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/doc/.htaccess -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/FOOTER.html: -------------------------------------------------------------------------------- 1 | GeographicLib home 2 | 3 | 4 | -------------------------------------------------------------------------------- /doc/HEADER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/doc/HEADER.html -------------------------------------------------------------------------------- /doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/doc/doxyfile.in -------------------------------------------------------------------------------- /doc/geodesic-c.dox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/doc/geodesic-c.dox.in -------------------------------------------------------------------------------- /proj-example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/proj-example/CMakeLists.txt -------------------------------------------------------------------------------- /proj-example/proj-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/proj-example/proj-example.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/geodesic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/src/geodesic.c -------------------------------------------------------------------------------- /src/geodesic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/src/geodesic.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/geodsigntest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tests/geodsigntest.c -------------------------------------------------------------------------------- /tests/geodtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tests/geodtest.c -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tools/direct.c -------------------------------------------------------------------------------- /tools/inverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tools/inverse.c -------------------------------------------------------------------------------- /tools/planimeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geographiclib/geographiclib-c/HEAD/tools/planimeter.c --------------------------------------------------------------------------------