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 this question. I have found some around, but I was wondering if someone has evaluated or used them in practice.

Cheers!

link|improve this question

Can you elaborate on what is acceptably "commercial-friendly?" – trashgod Sep 15 '11 at 18:37
I believe the asker means "licensed under a license that allows commercial use without undue restrictions or requirements." For example, if code licensed under the GPL or AGPL is integrated into a program, that program's source code must be released. – Peter O. Sep 15 '11 at 18:42
2  
Java Topology Suite (JTS) from Vivid Solutions with LGPL license contains an R-Tree implementation. I have successfully used JTS in my applications but not the JTS R-Tree implementation. See vividsolutions.com/jts/javadoc/com/vividsolutions/jts/index/… – Simon C Sep 15 '11 at 20:42
1  
Not directly an R-tree implementation, but recent versions of Apache Lucene have support for efficient geospatial searches. See for example ibm.com/developerworks/opensource/library/j-spatial for more details. – Jukka Zitting Nov 30 '11 at 21:36
Please add these comments as answers so they can be voted on and marked as 'answer'. – parasietje Jan 25 at 10:07
feedback

2 Answers

First of all let me point out that if You'll look up the nearest city from the given coordinates, it might not be in the same time zone! What you really need, in my opinion, is an information about it administrative affiliation - minimum would be a country, but in some cases it should be even more than that, i.e. state. That information can be retrieved with Google Maps API and then correlated to some more detailed TZ information.

there is a free alternative to GeoNames - EarthTools. There are some limitations to the service itself (number of requests, etc.), but still it's good, tested and working just fine for me.

Second of all - there is a free alternative to GeoNames - EarthTools. There are some limitations to the service itself (number of requests, etc.), but still it's good, tested and working just fine for me.

Third of all - if You would care about importing the data into DB, most of the current DB implementations provide geo spatial indexes that you can use. If You need that information embedded in Your application, you can use H2Database (embeded Java DB) with H2Spatial addition - although I've tried it and I can not recommend it fully. Neo4j have a great spatial index implementation

Additionally You can use Solr for GeoSpatial searches. It's nice, it's quick and it's easy to implement. I'm actually in the middle of the process of migrating my DB searches to Solr...

Last, but not least, below you'll find some of the ones I've tested a while back:

  • JSI - LGPL
  • GeoTools - LGPL, an overkill, will give You far more than what you need... but it's great!

Possibly few more there, but the ones I've tested so far...

link|improve this answer
Thanks for the answer. I found EarthTools when I was researching, but what deterred me was that "Usage of these services is currently free of charge". This was a show stopper for me, as I needed to know that the solution will remain free indefinitely. – Markos Fragkakis Feb 15 at 20:46
I would go with Solr or GeoTools then - both are just great. – Łukasz Rżanek Feb 15 at 21:21
feedback
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.