All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by geohashes with all dependencies

Search JAR files by class name

geohash from group ch.hsr (version 1.4.0)

An implementation of Geohashes in pure Java.

Group: ch.hsr Artifact: geohash
Show all versions Show documentation Show source 
 

26 downloads
Artifact geohash
Group ch.hsr
Version 1.4.0
Last update 16. December 2019
Organization not specified
URL https://github.com/kungfoo/geohash-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

geogeometry from group com.jillesvangurp (version 2.11)

Misc tools for working with wgs 84 coordinates and geohashes

Group: com.jillesvangurp Artifact: geogeometry
Show documentation Show source 
 

1 downloads
Artifact geogeometry
Group com.jillesvangurp
Version 2.11
Last update 26. February 2014
Organization www.jillesvangurp.com
URL http://www.jillesvangurp.com
License MIT license
Dependencies amount 2
Dependencies commons-lang, guava,
There are maybe transitive dependencies!

cloc from group io.github.adrianulbona (version 0.3.2)

A Java library able to localize GeoHashes within countries

Group: io.github.adrianulbona Artifact: cloc
Show all versions Show documentation Show source 
 

6 downloads
Artifact cloc
Group io.github.adrianulbona
Version 0.3.2
Last update 21. July 2018
Organization not specified
URL http://adrianulbona.github.io/cloc/
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

geohash-poly from group com.xlvecle (version 1.0.4)

A tool written by kotlin for users who want to transform a GeoPolygon to a list of geohashes that cover it.

Group: com.xlvecle Artifact: geohash-poly
Show all versions Show documentation Show source 
 

0 downloads
Artifact geohash-poly
Group com.xlvecle
Version 1.0.4
Last update 24. February 2018
Organization xlvecle.com
URL https://github.com/xlvecle/geohash-poly
License The Apache Software License, Version 2.0
Dependencies amount 3
Dependencies jts, geohash, kotlin-stdlib,
There are maybe transitive dependencies!

geospatial-store from group org.calrissian.accumulorecipes (version 2.0.0)

The Geospatial store allows events to be stored under geohashes so that they can be queried back when given rectangular geo-bounds.

Group: org.calrissian.accumulorecipes Artifact: geospatial-store
Show all versions Show documentation Show source 
 

0 downloads
Artifact geospatial-store
Group org.calrissian.accumulorecipes
Version 2.0.0
Last update 11. October 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 6
Dependencies commons, mango-json, accumulo-core, hadoop-client, junit, joda-time,
There are maybe transitive dependencies!

geokey from group io.github.markrileybot (version 0.1.0)

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

Group: io.github.markrileybot Artifact: geokey
Show all versions Show documentation Show source 
 

0 downloads
Artifact geokey
Group io.github.markrileybot
Version 0.1.0
Last update 20. June 2022
Organization not specified
URL https://github.com/markrileybot/geokey
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 1 from 1 (items total 6)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy