Прикладные библиотеки

Последняя версия: 1.7.0

Дата:

org.datasyslab:geospark_2.3

org.datasyslab : geospark_2.3

Geospatial extension for Apache Spark

Последняя версия: 1.1.0

Дата:

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.

Последняя версия: 4.2.0

Дата:

Последняя версия: 2

Дата:

Последняя версия: 1.12.0

Дата:

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

Последняя версия: 2.0.1

Дата:

QuickGeo - Generate

org.quickgeo : quickgeo-generate

The parent POM for the QuickGeo project

Последняя версия: 0.1.0

Дата:

QuickGeo - GB

org.quickgeo : quickgeo-gb

The parent POM for the QuickGeo project

Последняя версия: 0.1.0

Дата:

Последняя версия: 3.4.1

Дата:

Последняя версия: 1.0.0

Дата:

Последняя версия: 0.4.0

Дата:

Последняя версия: 2.2.5

Дата:

GeoMesa Test

org.locationtech.geomesa : geomesa-test_2.11

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

Последняя версия: 2.1.4

Дата:

Последняя версия: 0.1.1

Дата:

JavaScript Geodesy Library

de.graulichs : JavaScriptGeodesyLibrary

JavaScript Geodesy Library for GPS (Vincenty's Formulae)

Последняя версия: 1.0.4

Дата:

GeoWave Integration Tests

org.locationtech.geowave : geowave-test

A module for integration and functional tests of GeoWave

Последняя версия: 2.0.1

Дата:

pigeonj

at.yawk.pigeonj : pigeonj-parent

Generalized pubsub API

Последняя версия: 1.0

Дата:

Последняя версия: 1.2.0

Дата:

GeoMesa Raster Geoserver Extension

org.geomesa.geoserver : geomesa-gs-raster

Software to help integrate GeoMesa and GeoServer

Последняя версия: 2.4.2

Дата:

Pigeonhole

com.fmsbeekmans : pigeonhole_2.12

Pigeonhole provides a 2-dimensional grid with refined coordinates.

Последняя версия: 0.3

Дата:

QuickGeo - LT

org.quickgeo : quickgeo-lt

The parent POM for the QuickGeo project

Последняя версия: 0.1.0

Дата:

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

Последняя версия: 2.4.2

Дата:

Последняя версия: 1.1.0.RELEASE

Дата:

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

Последняя версия: 3.4.1

Дата:

Последняя версия: 2.0.0

Дата:

QuickGeo - NO

org.quickgeo : quickgeo-no

The parent POM for the QuickGeo project

Последняя версия: 0.1.0

Дата:

Последняя версия: 1.0-beta1

Дата:

Последняя версия: 1.7.0

Дата:

Последняя версия: 0.14.5

Дата:

Последняя версия: 1.0.37

Дата:

Последняя версия: 0.14.5

Дата:

Последняя версия: 0.10.0-M1

Дата:

qbit-test-support

io.advantageous.qbit : qbit-test-support

support library for unit and integration tests

Последняя версия: 2.0.0

Дата:

GeoDB Java Client

com.wirefreethought.geodb : geodb-java-client

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

Последняя версия: 1.4.4

Дата:

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.

Последняя версия: 2.0.0

Дата:

GeoMesa Security Geoserver Extension

org.geomesa.geoserver : geomesa-gs-security

Software to help integrate GeoMesa and GeoServer

Последняя версия: 2.4.2

Дата:

RS Geopackage

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

The parent module of the Revolution Systems Open Library.

Последняя версия: 0.20180228.140703-CPF_5_1_0-RELEASE

Дата:

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

Последняя версия: 0.8.1

Дата:

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); } } ```

Последняя версия: 0.1.0

Дата:

GeoWave Parent POM

org.locationtech.geowave : geowave-parent

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

Последняя версия: 2.0.1

Дата:

Последняя версия: 1.0.0-M5

Дата:

QuickGeo - FR

org.quickgeo : quickgeo-fr

The parent POM for the QuickGeo project

Последняя версия: 0.1.0

Дата: