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

Download JAR files tagged by building with all dependencies

Search JAR files by class name

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!

beehive-controls from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-controls
Show all versions Show documentation Show source 
 

4 downloads
Artifact beehive-controls
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 7
Dependencies velocity-dep, commons-discovery, commons-logging, ant, ant-launcher, jsp-api, servlet-api,
There are maybe transitive dependencies!

beehive-jdbc-mapper from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-jdbc-mapper
Show all versions Show documentation Show source 
 

0 downloads
Artifact beehive-jdbc-mapper
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

beehive-netui-tags from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-netui-tags
Show all versions Show documentation Show source 
 

1 downloads
Artifact beehive-netui-tags
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies beehive-netui-core, commons-logging, jsp-api, servlet-api,
There are maybe transitive dependencies!

beehive-netui-bootstrap from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-netui-bootstrap
Show all versions Show documentation Show source 
 

0 downloads
Artifact beehive-netui-bootstrap
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 8
Dependencies jsp-api, servlet-api, commons-logging, commons-collections, xdoclet, xdoclet-web-module, xjavadoc, ant,
There are maybe transitive dependencies!

beehive from group com.moparisthebest.beehive (version 1.0.4)

Beehive's goal is to make J2EE programming easier by building a simple object model on J2EE and Struts. Using the new JSR-175 annotations, Beehive reduces the coding necessary for J2EE. The initial Beehive project has three pieces. NetUI: An annotation-driven web application programming framework that is built atop Struts. NetUI centralizes navigation logic, state, metadata, and exception handling in a single encapsulated and reusable Page Flow Controller class. In addition, NetUI provides a set of JSP tags for rendering HTML / XHTML and higher-level UI constructs such as data grids and trees and has first-class integration with JavaServer Faces and Struts. Controls: A lightweight, metadata-driven component framework for building that reduces the complexity of being a client of enterprise resources. Controls provide a unified client abstraction that can be implemented to access a diverse set of enterprise resources using a single configuration model. In addition, Beehive includes a set of system controls that are abstractions for low-level J2EE resource APIs such as EJB, JMS, JDBC, and web services.

Group: com.moparisthebest.beehive Artifact: beehive
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact beehive
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization moparisthebest.com
URL https://github.com/moparisthebest/beehive
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

beehive-jms-control from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-jms-control
Show all versions Show documentation Show source 
 

0 downloads
Artifact beehive-jms-control
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies beehive-controls, xbean, geronimo-j2ee_1.4_spec,
There are maybe transitive dependencies!

beehive-jdbc-control from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-jdbc-control
Show all versions Show documentation Show source 
 

2 downloads
Artifact beehive-jdbc-control
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies beehive-controls, beehive-jdbc-mapper, xbean,
There are maybe transitive dependencies!

beehive-ejb-control from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-ejb-control
Show all versions Show documentation Show source 
 

0 downloads
Artifact beehive-ejb-control
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies beehive-controls, netui-compiler, geronimo-j2ee_1.4_spec,
There are maybe transitive dependencies!

beehive-netui-core from group com.moparisthebest.beehive (version 1.0.4)

Group: com.moparisthebest.beehive Artifact: beehive-netui-core
Show all versions Show documentation Show source 
 

16 downloads
Artifact beehive-netui-core
Group com.moparisthebest.beehive
Version 1.0.4
Last update 27. August 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 10
Dependencies beehive-controls, commons-discovery, commons-el, commons-logging, struts, log4j, commons-codec, myfaces-jsf-api, jsp-api, servlet-api,
There are maybe transitive dependencies!



Page 399 from 402 (items total 4015)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy