anhdenday / GPSd4Java

GPSd client library written in Java

Home Page:http://gpsd4java.forge.hoegergroup.de/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About GPSd4Java

GPSd4Java is a library to use data from the GPSd daemon in your java applications. It provides a library to connect to GPSd and retrieve data.

Use GPSd4Java

You can use GPSd4Java with a Maven project. Just add the following lines to your pom.xml.

<dependencies>
	<dependency>
		<groupId>de.taimos</groupId>
		<artifactId>gpsd4java</artifactId>
		<version>1.5</version>
	</dependency>
</dependencies>

To get the latest development snapshot add the following lines to your pom.xml.

<repositories>
	<repository>
		<id>sonatype-nexus-snapshots</id>
		<name>Sonatype Nexus Snapshots</name>
		<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
	</repository>
</repositories>

<dependencies>
	<dependency>
		<groupId>de.taimos</groupId>
		<artifactId>gpsd4java</artifactId>
		<version>1.6-SNAPSHOT</version>
	</dependency>
</dependencies>

About

GPSd client library written in Java

http://gpsd4java.forge.hoegergroup.de/

License:Apache License 2.0


Languages

Language:Java 100.0%