If you mean "insert and query" spatial data, look at algorithms that are "distributed databases compliant" : geohash, z-index, voronoi diagram...
Well, that makes me want to write a blog article about these topics :) On Tue, Sep 24, 2013 at 3:43 PM, Ted Yu <[email protected]> wrote: > There're plenty of examples in unit tests. > e.g. : > > Put put = new Put(Bytes.toBytes("row" + String.format("%1$04d", i))); > put.add(family, null, value); > table.put(put); > > value can be obtained through Bytes.toBytes(). > table is an HTable. > > Cheers > > > On Tue, Sep 24, 2013 at 4:15 AM, cto <[email protected]> wrote: > > > Hi , > > > > I am very new in HBase. Could you please let me know , how to insert > > spatial > > data (Latitude / Longitude) in HBase using Java . > > > > > > > > -- > > View this message in context: > > > http://apache-hbase.679495.n3.nabble.com/Spatial-data-posting-in-HBase-tp4051123.html > > Sent from the HBase User mailing list archive at Nabble.com. > > > -- Adrien Mogenet http://www.borntosegfault.com
