dr-jts/jts


The JTS Topology Suite is a Java library for creating and manipulating vector geometry.

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.dr-jts:jts:-SNAPSHOT'
	}
	dependencies {
		implementation("com.github.dr-jts:jts:-SNAPSHOT")
	}
	<dependency>
	    <groupId>com.github.dr-jts</groupId>
	    <artifactId>jts</artifactId>
	    <version>-SNAPSHOT</version>
	</dependency>

                            
    libraryDependencies += "com.github.dr-jts" % "jts" % "-SNAPSHOT"
        
        

                            
    :dependencies [[com.github.dr-jts/jts "-SNAPSHOT"]]
        
        

Readme


JTS Topology Suite

The JTS Topology Suite is a Java library for creating and manipulating vector geometry. It also provides a comprehensive set of geometry test cases, and the TestBuilder GUI application for working with and visualizing geometry and JTS functions.

JTS logo

Build Status Join the chat at https://gitter.im/locationtech/jts

JTS is a project in the LocationTech working group of the Eclipse Foundation.

LocationTech

Locations

Code

Websites

Communication

License

JTS is open source software. It is dual-licensed under:

See also:

Documentation

  • Javadoc for the latest version of JTS
  • FAQ - Frequently Asked Questions
  • User Guide - Installing and using JTS (as a library and using included tools)
  • Developing Guide - how to build and develop for JTS
  • Upgrade Guide - How to migrate from previous versions of JTS

History

  • History from the previous JTS SourceForge repo is in the branch _old/history
  • Older versions of JTS can be found on SourceForge and here

Contributing

If you are interested in contributing to JTS please read the Contributing Guide.

Downstream Projects

Derivative (ports to other languages)

Via GEOS