Skip to content

Fork of GEOS library. Refactoring of the kd-tree implementation in modern C++

License

Notifications You must be signed in to change notification settings

Scheggetta/geos-kdtree

Repository files navigation

BUILDING, TESTING, INSTALLING
=============================

Unix
-----

	# ./configure
	# make
	# make check
	# make install

Win32
-----

Win32 Visual Studio Builds:
	source\makefile.vc


CLIENT APPLICATIONS
===================

Using the C interface (recommended)
-----------------------------------

To compile programs against the C lib (recommended):

	CFLAGS += `geos-config --cflags`
	LDFLAGS += `geos-config --ldflags` -lgeos_c
	#include <geos_c.h>

Example usage:

	capi/geostest.c contains basic usage
	examples.

Using the C++ interface (discouraged)
-------------------------------------

To compile programs against the C++ lib:

	CFLAGS += `geos-config --cflags`
	LDFLAGS += `geos-config --ldflags` -lgeos
	#include <geos.h>

Example usage:

	doc/example.cpp contains basic usage
	examples.


DOCUMENTATION
=============

	# cd doc; make doxygen-html

	http://geos.refractions.net

About

Fork of GEOS library. Refactoring of the kd-tree implementation in modern C++

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.8%
  • C 4.7%
  • CMake 0.7%
  • HTML 0.6%
  • Shell 0.2%
  • Batchfile 0.0%