Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.66 KB

README.md

File metadata and controls

51 lines (39 loc) · 1.66 KB

JIS

A Java based Geographic Information System library. This library provides utilities based on Geotools GIS library.

Integration

JIS can be used as a Maven dependency or as a standalone library.

Maven

JIS is available at Maven Central.

To import the library, add the following parts to the maven project:

<!-- You can update the properties section with Jeometry version -->
<properties>
  <jis.version>1.0.0</jis.version> 
</properties>

<!-- The Jeometry API that contains all interfaces -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jis-core</artifactId>
  <version>${jeometry.version}</version>
</dependency>

<!-- (Optional) The JIS module that contains extensions for Swing -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jeometry-swing</artifactId>
  <version>${jeometry.version}</version>
</dependency>

<!-- (Optional) The JIS module that contains extensions for JavaFX -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jeometry-jfx</artifactId>
  <version>${jeometry.version}</version>
</dependency>

Standalone

JIS can be used as standalone library by integrating the jars provided by a release to the classpath. Be carrefull to also integrate the JCommon dependency.

Usage

For a quick overwiew ot the library, please refer to the Getting Started.

For more information, tutorials and advanced uses, please check the Wiki.

Changes:

see changelog for details.