Business Logic Libraries

Last Version: 1.7.0

Release Date:

org.datasyslab:geospark_2.3

org.datasyslab : geospark_2.3

Geospatial extension for Apache Spark

Last Version: 1.1.0

Release Date:

stac

com.azavea.geotrellis : geotrellis-server-stac_2.11

GeoTrellis Server is a set of components designed to simplify viewing, processing, and serving raster data from arbitrary sources with an emphasis on doing so in a functional style.

Last Version: 4.2.0

Release Date:

Last Version: 2

Release Date:

ImageOptimization

com.salesforce.perfeng.uiperf : ImageOptimization

Library used to optimize images so that they are smaller in size (less bytes) while maintaining the exact same quality. It can also... 1) convert gif to png 2) convert images to webp Note: It only runs on Linux and requires additional binaries

Last Version: 2.0.1

Release Date:

QuickGeo - Generate

org.quickgeo : quickgeo-generate

The parent POM for the QuickGeo project

Last Version: 0.1.0

Release Date:

QuickGeo - GB

org.quickgeo : quickgeo-gb

The parent POM for the QuickGeo project

Last Version: 0.1.0

Release Date:

Last Version: 3.4.1

Release Date:

Last Version: 0.4.0

Release Date:

Last Version: 2.2.5

Release Date:

GeoMesa Test

org.locationtech.geomesa : geomesa-test_2.11

A distributed spatio-temporal database built on a number of cloud data storage systems

Last Version: 2.1.4

Release Date:

Last Version: 0.1.1

Release Date:

JavaScript Geodesy Library

de.graulichs : JavaScriptGeodesyLibrary

JavaScript Geodesy Library for GPS (Vincenty's Formulae)

Last Version: 1.0.4

Release Date:

GeoWave Integration Tests

org.locationtech.geowave : geowave-test

A module for integration and functional tests of GeoWave

Last Version: 2.0.1

Release Date:

pigeonj

at.yawk.pigeonj : pigeonj-parent

Generalized pubsub API

Last Version: 1.0

Release Date:

Last Version: 1.2.0

Release Date:

GeoMesa Raster Geoserver Extension

org.geomesa.geoserver : geomesa-gs-raster

Software to help integrate GeoMesa and GeoServer

Last Version: 2.4.2

Release Date:

Pigeonhole

com.fmsbeekmans : pigeonhole_2.12

Pigeonhole provides a 2-dimensional grid with refined coordinates.

Last Version: 0.3

Release Date:

QuickGeo - LT

org.quickgeo : quickgeo-lt

The parent POM for the QuickGeo project

Last Version: 0.1.0

Release Date:

GeoMesa Accumulo Native API

org.locationtech.geomesa : geomesa-accumulo-native-api_2.11

A distributed spatio-temporal database built on a number of cloud data storage systems

Last Version: 2.4.2

Release Date:

Last Version: 1.1.0.RELEASE

Release Date:

GeoMesa Redis Distribution

org.locationtech.geomesa : geomesa-redis-dist_2.12

A distributed spatio-temporal database built on a number of cloud data storage systems

Last Version: 3.4.1

Release Date:

QuickGeo - NO

org.quickgeo : quickgeo-no

The parent POM for the QuickGeo project

Last Version: 0.1.0

Release Date:

Last Version: 1.0-beta1

Release Date:

Last Version: 1.7.0

Release Date:

Last Version: 1.0.37

Release Date:

Last Version: 0.14.5

Release Date:

qbit-test-support

io.advantageous.qbit : qbit-test-support

support library for unit and integration tests

Last Version: 2.0.0

Release Date:

GeoDB Java Client

com.wirefreethought.geodb : geodb-java-client

This library provides Java client bindings to the GeoDB Cities service.

Last Version: 1.4.4

Release Date:

Bremersee GeoJSON for Spring Data MongoDB

org.bremersee : bremersee-geojson-spring-data-mongodb

This project contains converters for reading and writing GeoJSON from and into a MongoDB with Spring Data.

Last Version: 2.0.0

Release Date:

GeoMesa Security Geoserver Extension

org.geomesa.geoserver : geomesa-gs-security

Software to help integrate GeoMesa and GeoServer

Last Version: 2.4.2

Release Date:

RS Geopackage

com.revolsys.open : com.revolsys.open.geopackage

The parent module of the Revolution Systems Open Library.

Last Version: 0.20180228.140703-CPF_5_1_0-RELEASE

Release Date:

yak4j-json-yaml-converter-maven-plugin

com.github.ngeor : yak4j-json-yaml-converter-maven-plugin

yak shaving for Java: A Maven plugin which converts between JSON and YAML formats

Last Version: 0.8.1

Release Date:

geokey

io.github.markrileybot : geokey

# geokey K Dimensional Z-Order curve utils. [![Build Status](https://travis-ci.org/markrileybot/geokey.svg?branch=master)](https://travis-ci.org/markrileybot/geokey) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/geokey/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/geokey?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey) ## Building ./gradlew build ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/geokey/ ## Using ### Use built in keys to make geohashes ```java import org.geokey.GeoKey; // Make a geo hash key String key = new GeoKey().setLatitude(48.669).setLongitude(-4.329).toString(); // "gbsuv7ztqzpts82uzfwq5e1bp" // parse a geo hash key GeoKey gk = new GeoKey("gbsuv7ztqzpts82uzfwq5e1bp"); ``` ### Make a special purpose K-Dimensional key ```java public class GeoTimeKey extends KDKey { private static final KDKeySpec spec = new KDKeySpec.Builder() .addDim(-180, 180, 1) .addDim(-90, 90, 1) .addDim(0, 1L << 62, 1) .setAlphabet(Alphabet.GEO_TIME_HASH) .build(); public GeoTimeKey() { super(spec); } public GeoTimeKey(String s) { super(spec, s); } public GeoTimeKey(byte[] s) { super(spec, s); } public GeoTimeKey setLatitude(double latitude) { set(1, latitude); return this; } public double getLatitude() { return super.get(1); } public GeoTimeKey setLongitude(double longitude) { set(0, longitude); return this; } public double getLongitude() { return super.get(0); } public GeoTimeKey setTime(long time) { set(2, time); return this; } public long getTime() { return (long) get(2); } } ```

Last Version: 0.1.0

Release Date:

GeoWave Parent POM

org.locationtech.geowave : geowave-parent

GeoWave adds spatio-temporal indexing to keyvalue stores through geotools and geoserver

Last Version: 2.0.1

Release Date:

QuickGeo - FR

org.quickgeo : quickgeo-fr

The parent POM for the QuickGeo project

Last Version: 0.1.0

Release Date: