本文介绍了Java商业友好的R-tree实现?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要商业友好型(Apache许可证,LGPL,Mozilla公共许可证等),以便将 Web服务替换为时区,如问题。我已 ,但我想知道如果有人在实践中评估或使用过它们。

I need a commercial-friendly (Apache Licence, LGPL, Mozilla Public License etc) R-tree implementation in Java, in order to substitute the geonames Web Service for timezones, as suggested in the question "Determine timezone from latitude/longitude without using web services like Geonames.org". I have found some around, but I was wondering if someone has evaluated or used them in practice.

推荐答案


  • -
    由Russ Weeks实施的R-Tree的LGPL。它看起来非常简单明了,不依赖于外部库。

    • https://github.com/rweeks/util/blob/master/src/com/newbrightidea/util/RTree.java -LGPL implementation of R-Tree by Russ Weeks. It looks very simple and clear and not dependent on external libraries.



      由Chris Jones实施的R-Tree的LGPL。另一个简单明了的解决方案。

      http://www.mischiefblog.com/?p=171http://www.mischiefbox.com/blog/uploads/rtree.jarLGPL implementation of R-Tree by Chris Jones. Another simple and clear solution.


      CPL 1.0实施优先级 R-Tree作者:Robert Olofsson

      http://www.khelekore.org/prtree/CPL 1.0 implementation of Priority R-Tree by Robert Olofsson


      LGPL - 项目旨在维护一个高性能的Java版本的RTree空间索引算法。

      http://jsi.sourceforge.net/LGPL - project aims to maintain a high performance Java version of the RTree spatial indexing algorithm.

      这篇关于Java商业友好的R-tree实现?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 02:31